transformer.py 108.3 KB
Newer Older
L
Liangliang He 已提交
1
# Copyright 2018 The MACE Authors. All Rights Reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14 15
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.


Y
yejianwu 已提交
16
import re
17

18 19 20
import numpy as np
import six

L
liyin 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
from py_proto import mace_pb2
from transform import base_converter
from transform.base_converter import ConverterUtil
from transform.base_converter import DataFormat
from transform.base_converter import DeviceType
from transform.base_converter import EltwiseType
from transform.base_converter import FrameworkType
from transform.base_converter import MaceKeyword
from transform.base_converter import MaceOp
from transform.base_converter import MaceFixedDataFormatOps  # noqa
from transform.base_converter import MaceTransposableDataFormatOps  # noqa
from transform.base_converter import PaddingMode
from transform.base_converter import ReduceType
from transform.base_converter import TransformerRule
from quantize import quantize_util
from utils.util import mace_check
37 38 39 40 41 42 43 44 45


class Transformer(base_converter.ConverterInterface):
    """A class for transform naive mace model to optimized model.
    This Transformer should be platform irrelevant. So, do not assume
    tensor name has suffix like ':0".
    """

    def __init__(self, option, model):
46 47
        # Dependencies
        # (TRANSFORM_MATMUL_TO_FC, TRANSFORM_GLOBAL_CONV_TO_FC) -> RESHAPE_FC_WEIGHT  # noqa
48
        self._registered_transformers = {
李寅 已提交
49 50
            TransformerRule.TRANSFORM_FAKE_QUANTIZE:
                self.transform_fake_quantize,
51
            TransformerRule.REMOVE_USELESS_OP: self.remove_useless_op,
52 53
            TransformerRule.TRANSFORM_GLOBAL_POOLING:
                self.transform_global_pooling,
Y
yejianwu 已提交
54 55 56 57
            TransformerRule.TRANSFORM_LSTMCELL_ZEROSTATE:
                self.transform_lstmcell_zerostate,
            TransformerRule.TRANSFORM_BASIC_LSTMCELL:
                self.transform_basic_lstmcell,
李寅 已提交
58 59 60
            TransformerRule.FOLD_RESHAPE: self.fold_reshape,
            TransformerRule.TRANSFORM_MATMUL_TO_FC:
                self.transform_matmul_to_fc,
61
            TransformerRule.FOLD_BATCHNORM: self.fold_batchnorm,
62
            TransformerRule.FOLD_BIASADD: self.fold_biasadd,
63 64
            TransformerRule.FOLD_CONV_AND_BN:
                self.fold_conv_and_bn,  # data_format related
L
liutuo 已提交
65 66
            TransformerRule.FOLD_DECONV_AND_BN:
                self.fold_deconv_and_bn,  # data_format related
67 68 69 70
            TransformerRule.FOLD_DEPTHWISE_CONV_AND_BN:
                self.fold_depthwise_conv_and_bn,  # data_format related
            TransformerRule.TRANSFORM_ADD_TO_BIASADD:
                self.transform_add_to_biasadd,
B
Bin Li 已提交
71 72
            TransformerRule.REARRANGE_BATCH_TO_SPACE:
                self.rearrange_batch_to_space,
73
            TransformerRule.FLATTEN_ATROUS_CONV: self.flatten_atrous_conv,
74
            TransformerRule.FOLD_ACTIVATION: self.fold_activation,
75
            TransformerRule.FOLD_SQRDIFF_MEAN: self.fold_squared_diff_mean,
李寅 已提交
76
            TransformerRule.FOLD_EMBEDDING_LOOKUP: self.fold_embedding_lookup,
77
            TransformerRule.TRANSPOSE_FILTERS: self.transpose_filters,
78 79
            TransformerRule.TRANSPOSE_MATMUL_WEIGHT:
                self.transpose_matmul_weight,
Y
yejianwu 已提交
80 81
            TransformerRule.FOLD_FC_RESHAPE:
                self.fold_fc_reshape,
L
liuqi 已提交
82 83
            TransformerRule.ADD_IN_OUT_TENSOR_INFO:
                self.add_in_out_tensor_info,
84
            TransformerRule.ADD_WINOGRAD_ARG: self.add_winograd_arg,
85 86
            TransformerRule.TRANSFORM_GLOBAL_CONV_TO_FC:
                self.transform_global_conv_to_fc,
L
liuqi 已提交
87
            TransformerRule.RESHAPE_FC_WEIGHT: self.reshape_fc_weight,
李寅 已提交
88 89 90 91 92 93
            TransformerRule.QUANTIZE_NODES:
                self.quantize_nodes,
            TransformerRule.ADD_QUANTIZE_TENSOR_RANGE:
                self.add_quantize_tensor_range,
            TransformerRule.QUANTIZE_WEIGHTS:
                self.quantize_weights,
94 95
            TransformerRule.UPDATE_FLOAT_OP_DATA_TYPE:
                self.update_float_op_data_type,
96 97
            TransformerRule.ADD_OPENCL_INFORMATIONS:
                self.add_opencl_informations,
98
            TransformerRule.SORT_BY_EXECUTION: self.sort_by_execution,
99
            TransformerRule.UPDATE_DATA_FORMAT: self.update_data_format,
L
luxuhui 已提交
100 101
            TransformerRule.TRANSPOSE_RESHAPE_AND_FLATTEN:
                self.transform_reshape_and_flatten,
102 103
            TransformerRule.TRANSPOSE_SHAPE_TENSOR_TO_PARAM:
                self.transform_shape_tensor_to_param,
104
            TransformerRule.TRANSPOSE_DATA_FORMAT: self.transpose_data_format,
李寅 已提交
105 106
            TransformerRule.CHECK_QUANTIZE_INFO:
                self.check_quantize_info,
李寅 已提交
107 108
            TransformerRule.TRANSFORM_CHANNEL_SHUFFLE:
                self.transform_channel_shuffle,
109 110
            TransformerRule.QUANTIZE_SPECIFIC_OPS_ONLY:
                self.quantize_specific_ops_only,
111 112
            TransformerRule.FP16_MATMUL_WEIGHT:
                self.fp16_matmul_weight,
Y
yulianfei 已提交
113 114
            TransformerRule.FP16_GATHER_WEIGHT:
                self.fp16_gather_weight,
B
Bin Li 已提交
115 116
            TransformerRule.QUANTIZE_LARGE_WEIGHTS:
                self.quantize_large_weights,
117
        }
118 119 120

        self._option = option
        self._model = model
121
        self._wino_arg = self._option.winograd
122 123 124 125 126

        self._ops = {}
        self._consts = {}
        self._consumers = {}
        self._producer = {}
李寅 已提交
127 128
        self._quantize_activation_info = {}
        self._quantized_tensor = set()
129

B
Bin Li 已提交
130 131 132 133
        self.input_name_map = {}
        self.output_name_map = {}
        self.initialize_name_map()

134
    def run(self):
李寅 已提交
135 136 137
        for key in self._option.transformer_option:
            transformer = self._registered_transformers[key]
            while True:
138
                self.construct_ops_and_consumers(key)
李寅 已提交
139 140
                changed = transformer()
                if not changed:
141
                    break
B
Bin Li 已提交
142
        return self._model, self._quantize_activation_info
143

B
Bin Li 已提交
144 145 146 147 148 149 150 151 152 153 154 155
    def initialize_name_map(self):
        for input_node in self._option.input_nodes.values():
            new_input_name = MaceKeyword.mace_input_node_name \
                             + '_' + input_node.name
            self.input_name_map[input_node.name] = new_input_name

        output_nodes = self._option.check_nodes.values()
        for output_node in output_nodes:
            new_output_name = MaceKeyword.mace_output_node_name \
                              + '_' + output_node.name
            self.output_name_map[output_node.name] = new_output_name

156 157 158 159
    def filter_format(self):
        filter_format_value = ConverterUtil.get_arg(self._model,
                                                    MaceKeyword.mace_filter_format_str).i  # noqa
        filter_format = None
160 161 162 163 164 165
        if filter_format_value == DataFormat.HWIO.value:
            filter_format = DataFormat.HWIO
        elif filter_format_value == DataFormat.OIHW.value:
            filter_format = DataFormat.OIHW
        elif filter_format_value == DataFormat.HWOI.value:
            filter_format = DataFormat.HWOI
166 167 168 169 170 171 172 173 174 175 176
        else:
            mace_check(False, "filter format %d not supported" %
                       filter_format_value)

        return filter_format

    def set_filter_format(self, filter_format):
        arg = ConverterUtil.get_arg(self._model,
                                    MaceKeyword.mace_filter_format_str)
        arg.i = filter_format.value

177
    def construct_ops_and_consumers(self, key):
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
        self._ops.clear()
        self._consumers.clear()
        self._producer.clear()
        for op in self._model.op:
            self._ops[op.name] = op
        for tensor in self._model.tensors:
            self._consts[tensor.name] = tensor
        for op in self._ops.values():
            for input_tensor in op.input:
                if input_tensor not in self._consumers:
                    self._consumers[input_tensor] = []
                self._consumers[input_tensor].append(op)

            for output_tensor in op.output:
                self._producer[output_tensor] = op
193 194 195 196 197 198 199 200 201 202 203
        if key != TransformerRule.SORT_BY_EXECUTION:
            for input_node in self._option.input_nodes.values():
                input_node_existed = False
                for op in self._model.op:
                    if input_node.name in op.output:
                        input_node_existed = True
                        break
                if not input_node_existed:
                    op = mace_pb2.OperatorDef()
                    op.name = self.normalize_op_name(input_node.name)
                    op.type = "Input"
204 205
                    data_type_arg = op.arg.add()
                    data_type_arg.name = MaceKeyword.mace_op_data_type_str
206
                    data_type_arg.i = input_node.data_type
207 208 209
                    op.output.extend([input_node.name])
                    output_shape = op.output_shape.add()
                    output_shape.dims.extend(input_node.shape)
210
                    if input_node.data_format != DataFormat.NONE:
211
                        if input_node.data_format == DataFormat.NCHW:
212 213
                            self.transpose_shape(output_shape.dims,
                                                 [0, 3, 1, 2])
214
                        ConverterUtil.add_data_format_arg(op,
215
                                                          DataFormat.AUTO)
216 217
                    else:
                        ConverterUtil.add_data_format_arg(op,
218
                                                          DataFormat.NONE)
219
                    self._producer[op.output[0]] = op
220 221 222

    @staticmethod
    def replace(obj_list, source, target):
223
        for i in six.moves.range(len(obj_list)):
224 225 226 227 228 229
            if obj_list[i] == source:
                obj_list[i] = target

    @staticmethod
    def transpose_shape(shape, order):
        transposed_shape = []
230
        for i in six.moves.range(len(order)):
231 232 233 234 235 236 237
            transposed_shape.append(shape[order[i]])
        shape[:] = transposed_shape[:]

    @staticmethod
    def normalize_op_name(name):
        return name.replace(':', '_')

李寅 已提交
238
    def get_tensor_shape(self, tensor):
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
        if tensor in self._consts:
            return list(self._consts[tensor].dims)
        elif tensor in self._producer:
            producer = self._producer[tensor]
            for i in six.moves.range(len(producer.output)):
                if producer.output[i] == tensor:
                    return list(producer.output_shape[i].dims)
        else:
            return None

    def get_tensor_data_type(self, tensor):
        if tensor in self._consts:
            return self._consts[tensor].data_type
        elif tensor in self._producer:
            producer = self._producer[tensor]
            for i in six.moves.range(len(producer.output)):
                if producer.output[i] == tensor:
                    if i < len(producer.output_type):
                        return producer.output_type[i]
                    elif ConverterUtil.get_arg(producer, "T") is not None:
                        return ConverterUtil.get_arg(producer, "T").i
                    else:
                        print("No data type filled: ", producer)
                        return None
        else:
            return None
李寅 已提交
265

266 267 268 269 270
    def get_tensor_data_format(self, tensor):
        if tensor in self._producer:
            producer = self._producer[tensor]
            return ConverterUtil.data_format(producer)
        else:
271
            return DataFormat.NONE
272

273 274 275 276 277 278 279 280 281 282 283 284
    def consumer_count(self, tensor_name):
        return len(self._consumers.get(tensor_name, []))

    def is_op_output_node(self, op):
        output_node_tensor_names = [out for out in
                                    self._option.output_nodes]
        for output in op.output:
            if output in output_node_tensor_names:
                return True

        return False

L
liuqi 已提交
285
    def safe_remove_node(self, op, replace_op, remove_input_tensor=False):
李寅 已提交
286 287 288 289 290 291 292 293 294 295
        """remove op.
        1. change the inputs of its consumers to the outputs of replace_op
        2. if the op is output node, change output node to replace op"""

        if replace_op is None:
            # When no replace op specified, we change the inputs of
            # its consumers to the input of the op. This handles the case
            # that the op is identity op and its input is a tensor.
            mace_check(len(op.output) == 1 and len(op.input) == 1,
                       "cannot remove op that w/o replace op specified"
李寅 已提交
296
                       " and input/output length > 1\n" + str(op))
李寅 已提交
297 298 299 300 301 302 303 304 305 306 307

            for consumer_op in self._consumers.get(op.output[0], []):
                self.replace(consumer_op.input, op.output[0], op.input[0])

            mace_check(op.output[0] not in self._option.output_nodes,
                       "cannot remove op that is output node")
        else:
            mace_check(len(op.output) == len(replace_op.output),
                       "cannot remove op since len(op.output) "
                       "!= len(replace_op.output)")

308
            for i in six.moves.range(len(op.output)):
B
Bin Li 已提交
309 310
                # if the op is output node, change replace_op output name
                # to the op output name
李寅 已提交
311 312 313 314 315 316 317
                if op.output[i] in self._option.output_nodes:
                    for consumer in self._consumers.get(
                            replace_op.output[i], []):
                        self.replace(consumer.input,
                                     replace_op.output[i],
                                     op.output[i])
                    replace_op.output[i] = op.output[i]
B
Bin Li 已提交
318 319 320 321 322
                else:
                    for consumer_op in self._consumers.get(op.output[i], []):
                        self.replace(consumer_op.input,
                                     op.output[i],
                                     replace_op.output[i])
李寅 已提交
323

L
liuqi 已提交
324 325 326 327 328 329
        if remove_input_tensor:
            for input_name in op.input:
                if input_name in self._consts:
                    const_tensor = self._consts[input_name]
                    self._model.tensors.remove(const_tensor)

李寅 已提交
330 331
        self._model.op.remove(op)

332 333 334 335 336
    def add_in_out_tensor_info(self):
        net = self._model
        for input_node in self._option.input_nodes.values():
            input_info = net.input_info.add()
            input_info.name = input_node.name
337
            input_info.data_format = input_node.data_format.value
338
            input_info.dims.extend(input_node.shape)
L
liuqi 已提交
339
            input_info.data_type = input_node.data_type
340

B
Bin Li 已提交
341 342
        output_nodes = self._option.check_nodes.values()
        for output_node in output_nodes:
343 344
            output_info = net.output_info.add()
            output_info.name = output_node.name
345
            output_info.data_format = output_node.data_format.value
346 347
            output_info.dims.extend(
                self._producer[output_node.name].output_shape[0].dims)
L
liuqi 已提交
348
            output_info.data_type = output_node.data_type
349 350 351

        return False

352
    def remove_useless_op(self):
353 354 355
        net = self._model
        for op in net.op:
            if op.type == 'Identity':
356
                print("Remove useless op: %s(%s)" % (op.name, op.type))
李寅 已提交
357 358
                self.safe_remove_node(op,
                                      self._producer.get(op.input[0], None))
359
                return True
360
            elif op.type == 'Reshape' and \
叶剑武 已提交
361 362 363 364 365 366
                    op.output_shape[0].dims == \
                    self.get_tensor_shape(op.input[0]):
                print("Remove useless reshape: %s(%s)" % (op.name, op.type))
                self.safe_remove_node(op,
                                      self._producer.get(op.input[0], None))
                return True
367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396

        return False

    def transform_global_pooling(self):
        net = self._model
        for op in net.op:
            if op.type == MaceOp.Pooling.name and \
                            ConverterUtil.get_arg(op,
                                                  MaceKeyword.mace_global_pooling_str) is not None:  # noqa
                print("Transform global pooling: %s(%s)" % (op.name, op.type))
                input_shape = self._producer[op.input[0]].output_shape[0].dims
                if ConverterUtil.data_format(op) == DataFormat.NHWC:
                    kernel_shape = input_shape[1:3]
                else:
                    kernel_shape = input_shape[2:4]
                ConverterUtil.get_arg(op,
                                      MaceKeyword.mace_kernel_str).ints[:] \
                    = kernel_shape[:]

        return False

    def fold_batchnorm(self):
        net = self._model
        for op in net.op:
            if (op.type == MaceOp.Eltwise.name
                    and ConverterUtil.get_arg(
                        op, MaceKeyword.mace_element_type_str).i
                    == EltwiseType.PROD.value) \
                    and len(op.input) == 2 \
                    and op.input[1] in self._consts \
397 398
                    and op.output_shape[0].dims[-1:] == \
                    self._consts[op.input[1]].dims \
399 400 401 402 403
                    and self.consumer_count(op.output[0]) == 1 \
                    and not self.is_op_output_node(op):
                consumer_op = self._consumers[op.output[0]][0]
                if (consumer_op.type == MaceOp.Eltwise.name
                    and ConverterUtil.get_arg(
404
                        consumer_op, MaceKeyword.mace_element_type_str).i
405 406 407 408 409 410
                        == EltwiseType.SUM.value
                    or consumer_op.type == MaceOp.BiasAdd.name) \
                        and len(consumer_op.input) == 2 \
                        and consumer_op.input[1] in self._consts \
                        and len(self._consts[consumer_op.input[1]].dims) == 1:
                    print("Fold batchnorm: %s(%s)" % (op.name, op.type))
411
                    consumer_op.type = MaceOp.BatchNorm.name
李寅 已提交
412 413
                    consumer_op.input[:] = [op.input[0], op.input[1],
                                            consumer_op.input[1]]
414
                    net.op.remove(op)
415 416 417
                    return True
        return False

418 419 420 421
    def fold_squared_diff_mean(self):
        net = self._model
        for op in net.op:
            if op.type == MaceOp.Eltwise.name and len(op.input) == 2:
L
liutuo 已提交
422
                elt_type = ConverterUtil.get_arg(
423 424
                    op,
                    MaceKeyword.mace_element_type_str).i
L
liutuo 已提交
425
                if elt_type == EltwiseType.SQR_DIFF.value and\
426 427
                        self.consumer_count(op.output[0]) == 1:
                    consumer_op = self._consumers[op.output[0]][0]
L
liutuo 已提交
428 429 430 431 432 433 434 435 436 437
                    if consumer_op.type == MaceOp.Reduce.name:
                        axis = ConverterUtil.get_arg(
                            consumer_op,
                            MaceKeyword.mace_axis_str).ints
                        keep_dims = ConverterUtil.get_arg(
                            consumer_op,
                            MaceKeyword.mace_keepdims_str).i
                        reduce_type = ConverterUtil.get_arg(
                            consumer_op,
                            MaceKeyword.mace_reduce_type_str).i
L
liutuo 已提交
438
                        if reduce_type == ReduceType.MEAN.value and\
L
liutuo 已提交
439 440 441 442 443 444 445 446 447
                                len(consumer_op.input) == 1 and\
                                axis[0] == 1 and axis[1] == 2 and\
                                keep_dims > 0:
                            print("Fold SquaredDiff Reduce: %s" % op.name)
                            op.type = MaceOp.SqrDiffMean.name
                            op.output[0] = consumer_op.output[0]
                            self.replace_quantize_info(op, consumer_op)
                            self.safe_remove_node(consumer_op, op)
                            return True
448 449 450

        return False

李寅 已提交
451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467
    def fold_embedding_lookup(self):
        net = self._model
        for op in net.op:
            # gather -> mul
            if (op.type == MaceOp.Gather.name and
                    self.consumer_count(op.output[0]) == 1):
                consumer_op = self._consumers[op.output[0]][0]
                if (consumer_op.type == MaceOp.Eltwise.name and
                    ConverterUtil.get_arg(consumer_op,
                                          MaceKeyword.mace_element_type_str).i == EltwiseType.PROD.value and  # noqa
                            len(consumer_op.input) == 1 and
                            op.input[0] in self._consts and
                            self.consumer_count(op.input[0]) == 1):
                    print("Fold Gather and Mul: %s" % op.name)
                    gather_weights = self._consts[op.input[0]]
                    mul_weight = ConverterUtil.get_arg(consumer_op,
                                                       MaceKeyword.mace_scalar_input_str).f  # noqa
L
liukai6 已提交
468
                    gather_weights.float_data[:] = [float_data * mul_weight for float_data in gather_weights.float_data]  # noqa
李寅 已提交
469 470 471
                    self.safe_remove_node(consumer_op, None,
                                          remove_input_tensor=True)

Y
yejianwu 已提交
472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619
    def transform_lstmcell_zerostate(self):
        net = self._model

        zero_state_pattern = \
                re.compile(r'^.*BasicLSTMCellZeroState_?[0-9]*/[a-zA-Z]+_?[0-9]*')  # noqa
        for op in net.op:
            if op.type == MaceOp.Fill.name and \
                    zero_state_pattern.match(op.name):
                print("Transform lstm zerostate")
                concat_op = self._producer[op.input[0]]
                consumer_op = self._consumers[op.output[0]][0]

                dims = [self._consts[concat_op.input[0]].int32_data[0],
                        self._consts[concat_op.input[1]].int32_data[0]]
                tensor_def = net.tensors.add()
                tensor_def.name = op.output[0].replace('/zeros', '/init_const')
                tensor_def.dims.extend(dims)
                tensor_def.data_type = self._consts[op.input[1]].data_type
                tensor_def.float_data.extend(
                        [self._consts[op.input[1]].float_data[0]] *
                        (dims[0] * dims[1]))

                for i in range(len(consumer_op.input)):
                    if zero_state_pattern.match(consumer_op.input[i][:-2]):
                        consumer_op.input[i] = tensor_def.name

                net.tensors.remove(self._consts[op.input[1]])
                net.tensors.remove(self._consts[concat_op.input[0]])
                net.tensors.remove(self._consts[concat_op.input[1]])

                net.op.remove(concat_op)
                net.op.remove(op)

                return True

    def transform_basic_lstmcell(self):
        if self._option.device != DeviceType.GPU.value:
            return False

        net = self._model
        basic_lstm_concat_pattern = \
            re.compile(r'^.*basic_lstm_cell_?[0-9]*/concat_?[0-9]*')
        for op in net.op:
            if op.type == MaceOp.Concat.name and \
                    basic_lstm_concat_pattern.match(op.name):
                print("Transform basic lstmcell")
                ops_to_delete = []
                ops_to_delete.extend([op])

                op_def = net.op.add()
                op_def.name = op.name.replace('/concat', '/folded_lstmcell')
                op_def.type = MaceOp.LSTMCell.name
                op_def.arg.extend(op.arg[:-1])

                # Concat pre output and cur input
                # extend concat inputs
                op_def.input.extend([op_input for op_input in op.input])

                # lstm MatMul in FC of [pre_output, cur_input]
                matmul_op = self._consumers[op.output[0]][0]
                ops_to_delete.extend([matmul_op])
                # extend MatMul weight input
                op_def.input.extend([matmul_op.input[1]])

                # lstm BiasAdd in FC of [pre_output, cur_input]
                biasadd_op = self._consumers[matmul_op.output[0]][0]
                ops_to_delete.extend([biasadd_op])
                # extend BiasAdd bias input
                op_def.input.extend([biasadd_op.input[1]])

                # Split FC output into i, j, f, o
                # i = input_gate, j = new_input, f = forget_gate, o = output_gate  # noqa
                split_op = self._consumers[biasadd_op.output[0]][0]
                ops_to_delete.extend([split_op])

                # input gate activation
                input_gate_op = self._consumers[split_op.output[0]][0]
                ops_to_delete.extend([input_gate_op])
                # new input gate
                new_input_tanh_op = self._consumers[split_op.output[1]][0]
                ops_to_delete.extend([new_input_tanh_op])
                # forget gate add
                forget_add_op = self._consumers[split_op.output[2]][0]
                ops_to_delete.extend([forget_add_op])
                # output gate activation
                output_gate_op = self._consumers[split_op.output[3]][0]
                ops_to_delete.extend([output_gate_op])

                # extend forget add
                mace_check(len(forget_add_op.input) == 1,
                           'Wrong LSTM format in forget gate inputs')
                for arg in forget_add_op.arg:
                    if arg.name == MaceKeyword.mace_scalar_input_str:
                        op_def.arg.extend([arg])

                # state remember
                remember_mul_op = self._consumers[input_gate_op.output[0]][0]
                ops_to_delete.extend([remember_mul_op])
                mace_check(remember_mul_op.name == self._consumers[
                               new_input_tanh_op.output[0]][0].name,
                           'Wrong LSTM format in input sig & input tanh mul')

                # forget gate activation
                forget_gate_op = self._consumers[forget_add_op.output[0]][0]
                ops_to_delete.extend([forget_gate_op])

                # Mul `forget` & `pre cell state`
                forget_mul_op = self._consumers[forget_gate_op.output[0]][0]
                ops_to_delete.extend([forget_mul_op])

                # extend pre cell state input
                op_def.input.extend([forget_mul_op.input[0]])

                # get cur cell state
                # Add `forget gate output` & `remember mul output`
                remember_forget_add_op = \
                    self._consumers[remember_mul_op.output[0]][0]
                ops_to_delete.extend([remember_forget_add_op])
                mace_check(remember_forget_add_op.name ==
                           self._consumers[forget_mul_op.output[0]][0].name,
                           'Wrong LSTM format in add forget gate & remember mul')  # noqa
                op_def.output.extend([remember_forget_add_op.output[0]])
                op_def.output_shape.extend(remember_forget_add_op.output_shape)

                # cell state output tanh
                for consumer in \
                        self._consumers[remember_forget_add_op.output[0]]:
                    if consumer.type == MaceOp.Activation.name and \
                            consumer.name.find('basic_lstm_cell') > 0:
                        cell_tanh_op = consumer
                ops_to_delete.extend([cell_tanh_op])

                # final mul, get output
                final_mul_op = self._consumers[cell_tanh_op.output[0]][0]
                ops_to_delete.extend([final_mul_op])
                mace_check(final_mul_op.name ==
                           self._consumers[output_gate_op.output[0]][0].name,
                           'Wrong LSTM format in final mul')
                op_def.output.extend([final_mul_op.output[0]])
                op_def.output_shape.extend(final_mul_op.output_shape)

                for op_to_del in ops_to_delete:
                    net.op.remove(op_to_del)

                return True

        return False

620 621 622
    def fold_conv_and_bn(self):
        net = self._model
        for op in net.op:
L
liutuo 已提交
623
            if (op.type == MaceOp.Conv2D.name) \
624 625
                    and self.consumer_count(op.output[0]) == 1:
                consumer_op = self._consumers[op.output[0]][0]
626
                input_len = len(op.input)
627 628 629
                if (consumer_op.type == MaceOp.BatchNorm.name
                        and (input_len == 2 or (input_len == 3 and op.input[-1] in self._consts))  # noqa
                        and len(self._consumers[op.input[1]]) == 1):
630 631 632
                    print("Fold conv and bn: %s(%s)" % (op.name, op.type))
                    filter = self._consts[op.input[1]]
                    scale = self._consts[consumer_op.input[1]]
633
                    offset = self._consts[consumer_op.input[2]]
634 635
                    idx = 0
                    filter_format = self.filter_format()
636
                    if filter_format == DataFormat.HWIO:
637 638 639 640
                        for hwi in six.moves.range(filter.dims[0]
                                                   * filter.dims[1]
                                                   * filter.dims[2]):
                            for o in six.moves.range(filter.dims[3]):
641 642
                                filter.float_data[idx] *= scale.float_data[o]
                                idx += 1
643
                    elif filter_format == DataFormat.OIHW:
644 645 646 647
                        for o in six.moves.range(filter.dims[0]):
                            for hwi in six.moves.range(filter.dims[1]
                                                       * filter.dims[2]
                                                       * filter.dims[3]):
648 649 650 651 652 653
                                filter.float_data[idx] *= scale.float_data[o]
                                idx += 1
                    else:
                        mace_check(False, "filter format %s not supported" %
                                   filter_format)

654 655 656 657 658 659 660 661
                    if len(op.input) == 3:
                        conv_bias = self._consts[op.input[2]]
                        for c in six.moves.range(conv_bias.dims[0]):
                            conv_bias.float_data[c] *= scale.float_data[c]
                            conv_bias.float_data[c] += offset.float_data[c]
                        net.tensors.remove(offset)
                    else:
                        op.input.extend([consumer_op.input[2]])
662

663 664
                    # remove bn
                    del consumer_op.input[:]
665
                    net.tensors.remove(scale)
666
                    self.replace_quantize_info(op, consumer_op)
667 668
                    self.safe_remove_node(consumer_op, op)

669 670 671 672
                    return True

        return False

L
liutuo 已提交
673 674 675
    def fold_deconv_and_bn(self):
        net = self._model
        for op in net.op:
L
liutuo 已提交
676
            if (op.type in [MaceOp.Deconv2D.name, MaceOp.DepthwiseDeconv2d]) \
L
liutuo 已提交
677 678
                    and self.consumer_count(op.output[0]) == 1:
                consumer_op = self._consumers[op.output[0]][0]
679 680 681
                framework = ConverterUtil.get_arg(
                        op, MaceKeyword.mace_framework_type_str).i
                input_len = len(op.input)
682
                if (consumer_op.type == MaceOp.BatchNorm.name and (
683
                        (framework == FrameworkType.CAFFE.value and
L
liutuo 已提交
684 685
                         (input_len == 2 or (input_len == 3 and
                                             op.input[-1] in self._consts))) or
686 687
                        (framework == FrameworkType.TENSORFLOW.value and
                         (input_len == 3 or (input_len == 4 and
688 689
                                             op.input[-1] in self._consts))))
                        and len(self._consumers[op.input[1]]) == 1):
L
liutuo 已提交
690 691 692
                    print("Fold deconv and bn: %s(%s)" % (op.name, op.type))
                    filter = self._consts[op.input[1]]
                    scale = self._consts[consumer_op.input[1]]
693
                    offset = self._consts[consumer_op.input[2]]
L
liutuo 已提交
694 695 696
                    idx = 0
                    filter_format = self.filter_format()
                    # in deconv op O and I channel is switched
697
                    if filter_format == DataFormat.HWIO:
L
liutuo 已提交
698 699 700 701 702 703 704
                        for hw in six.moves.range(filter.dims[0]
                                                  * filter.dims[1]):
                            for o in six.moves.range(filter.dims[2]):
                                for i in six.moves.range(filter.dims[3]):
                                    filter.float_data[idx] *=\
                                        scale.float_data[o]
                                    idx += 1
705
                    elif filter_format == DataFormat.OIHW:
L
liutuo 已提交
706 707 708 709 710 711 712 713 714 715 716
                        for i in six.moves.range(filter.dims[0]):
                            for o in six.moves.range(filter.dims[1]):
                                for hw in six.moves.range(filter.dims[2]
                                                          * filter.dims[3]):
                                    filter.float_data[idx] *=\
                                        scale.float_data[o]
                                    idx += 1
                    else:
                        mace_check(False, "filter format %s not supported" %
                                   filter_format)

717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732
                    bias_dim = -1
                    if framework == FrameworkType.CAFFE.value \
                            and len(op.input) == 3:
                        bias_dim = 2
                    if framework == FrameworkType.TENSORFLOW.value \
                            and len(op.input) == 4:
                        bias_dim = 3

                    if bias_dim != -1:
                        conv_bias = self._consts[op.input[bias_dim]]
                        for c in six.moves.range(conv_bias.dims[0]):
                            conv_bias.float_data[c] *= scale.float_data[c]
                            conv_bias.float_data[c] += offset.float_data[c]
                        net.tensors.remove(offset)
                    else:
                        op.input.extend([consumer_op.input[2]])
L
liutuo 已提交
733

734
                    del consumer_op.input[:]
L
liutuo 已提交
735
                    net.tensors.remove(scale)
736
                    self.replace_quantize_info(op, consumer_op)
737 738
                    self.safe_remove_node(consumer_op, op)

L
liutuo 已提交
739 740 741 742
                    return True

        return False

743 744 745 746 747 748
    def fold_depthwise_conv_and_bn(self):
        net = self._model
        for op in net.op:
            if op.type == MaceOp.DepthwiseConv2d.name \
                    and self.consumer_count(op.output[0]) == 1:
                consumer_op = self._consumers[op.output[0]][0]
749
                input_len = len(op.input)
750 751 752
                if (consumer_op.type == MaceOp.BatchNorm.name
                        and (input_len == 2 or (input_len == 3 and op.input[-1] in self._consts))  # noqa
                        and len(self._consumers[op.input[1]]) == 1):
753 754 755 756
                    print("Fold depthwise conv and bn: %s(%s)"
                          % (op.name, op.type))
                    filter = self._consts[op.input[1]]
                    scale = self._consts[consumer_op.input[1]]
757
                    offset = self._consts[consumer_op.input[2]]
758 759 760
                    idx = 0

                    filter_format = self.filter_format()
761
                    if filter_format == DataFormat.HWIO:
762 763 764 765
                        for hw in six.moves.range(filter.dims[0]
                                                  * filter.dims[1]):
                            for i in six.moves.range(filter.dims[2]):
                                for o in six.moves.range(filter.dims[3]):
766
                                    filter.float_data[idx] *= scale.float_data[
767
                                                        i * filter.dims[3] + o]
768
                                    idx += 1
769
                    elif filter_format == DataFormat.OIHW:
770 771 772 773
                        for o in six.moves.range(filter.dims[0]):
                            for i in six.moves.range(filter.dims[1]):
                                for hw in six.moves.range(filter.dims[2]
                                                          * filter.dims[3]):
774 775 776 777 778 779 780
                                    filter.float_data[idx] *= scale.float_data[
                                        i * filter.dims[0] + o]
                                    idx += 1
                    else:
                        mace_check(False, "filter format %s not supported" %
                                   filter_format)

781 782 783 784 785 786 787 788
                    if len(op.input) == 3:
                        conv_bias = self._consts[op.input[2]]
                        for c in six.moves.range(conv_bias.dims[0]):
                            conv_bias.float_data[c] *= scale.float_data[c]
                            conv_bias.float_data[c] += offset.float_data[c]
                        net.tensors.remove(offset)
                    else:
                        op.input.extend([consumer_op.input[2]])
789

790 791
                    # remove bn
                    del consumer_op.input[:]
792
                    net.tensors.remove(scale)
793
                    self.replace_quantize_info(op, consumer_op)
794 795
                    self.safe_remove_node(consumer_op, op)

796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816
                    return True

        return False

    @staticmethod
    def sort_feature_map_shape(shape, data_format):
        """Return shape in NHWC order"""
        batch = shape[0]
        if data_format == DataFormat.NHWC:
            height = shape[1]
            width = shape[2]
            channels = shape[3]
        else:
            height = shape[2]
            width = shape[3]
            channels = shape[1]
        return batch, height, width, channels

    @staticmethod
    def sort_filter_shape(filter_shape, filter_format):
        """Return filter shape in HWIO order"""
817
        if filter_format == DataFormat.HWIO:
818 819 820 821
            filter_height = filter_shape[0]
            filter_width = filter_shape[1]
            in_channels = filter_shape[2]
            out_channels = filter_shape[3]
822
        elif filter_format == DataFormat.OIHW:
823 824 825 826
            filter_height = filter_shape[2]
            filter_width = filter_shape[3]
            in_channels = filter_shape[1]
            out_channels = filter_shape[0]
827
        elif filter_format == DataFormat.HWOI:
828 829 830 831 832 833 834 835 836 837 838
            filter_height = filter_shape[0]
            filter_width = filter_shape[1]
            in_channels = filter_shape[3]
            out_channels = filter_shape[2]
        else:
            mace_check(False, "filter format %s not supported" % filter_format)
        return filter_height, filter_width, in_channels, out_channels

    def transform_add_to_biasadd(self):
        net = self._model
        for op in net.op:
李寅 已提交
839 840 841 842 843
            if (op.type == 'Eltwise'
                    and ConverterUtil.get_arg(op, MaceKeyword.mace_element_type_str).i == EltwiseType.SUM.value  # noqa
                    and len(op.input) == 2
                    and op.input[1] in self._consts
                    and len(self._consts[op.input[1]].dims) == 1):
844 845 846 847 848 849
                print("Transform add to biasadd: %s(%s)" % (op.name, op.type))
                op.type = MaceOp.BiasAdd.name
                return True

        return False

李寅 已提交
850 851 852 853
    def replace_quantize_info(self, op, replace_op):
        if len(replace_op.quantize_info) > 0:
            del op.quantize_info[:]
            op.quantize_info.extend(replace_op.quantize_info)
B
Bin Li 已提交
854 855 856
            for i in range(len(op.quantize_info)):
                self._quantize_activation_info[op.output[i]] = \
                    op.quantize_info[i]
李寅 已提交
857

858 859 860
    def fold_biasadd(self):
        net = self._model
        for op in net.op:
861 862 863 864
            if (((op.type == MaceOp.Conv2D.name
                  or op.type == MaceOp.DepthwiseConv2d.name
                  or op.type == MaceOp.FullyConnected.name)
                 and len(op.input) == 2)
L
liutuo 已提交
865 866 867 868 869 870 871 872 873 874 875
                or (op.type == MaceOp.Deconv2D.name
                    and ((ConverterUtil.get_arg(
                                op,
                                MaceKeyword.mace_framework_type_str).i ==
                          FrameworkType.CAFFE.value
                          and len(op.input) == 2)
                         or (ConverterUtil.get_arg(
                                        op,
                                        MaceKeyword.mace_framework_type_str).i
                             == FrameworkType.TENSORFLOW.value
                             and len(op.input) == 3)))) \
876 877 878 879
                    and len(self._consumers.get(op.output[0], [])) == 1:
                consumer_op = self._consumers[op.output[0]][0]
                if consumer_op.type == MaceOp.BiasAdd.name:
                    print("Fold biasadd: %s(%s)" % (op.name, op.type))
B
Bin Li 已提交
880 881
                    op.name = consumer_op.name
                    op.output[0] = consumer_op.output[0]
882
                    op.input.append(consumer_op.input[1])
李寅 已提交
883
                    self.replace_quantize_info(op, consumer_op)
李寅 已提交
884
                    self.safe_remove_node(consumer_op, op)
885 886 887 888
                    return True

        return False

889
    def flatten_atrous_conv(self):
890
        if self._option.device != DeviceType.GPU.value \
891 892
               and self._option.device != DeviceType.APU.value \
               and self._option.device != DeviceType.HTA.value:
893 894 895 896 897 898 899 900 901 902 903 904
            return

        net = self._model
        for op in net.op:
            if (op.type == MaceOp.SpaceToBatchND.name
                    and len(self._consumers.get(op.output[0], [])) == 1):
                conv_op = self._consumers.get(op.output[0])[0]
                if (conv_op.type == MaceOp.Conv2D.name
                        or conv_op.type == MaceOp.DepthwiseConv2d.name) \
                        and len(self._consumers.get(conv_op.output[0], [])) == 1:  # noqa
                    b2s_op = self._consumers.get(conv_op.output[0])[0]
                    if b2s_op.type == MaceOp.BatchToSpaceND.name:
905
                        six.print_("Flatten atrous convolution")
906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943
                        # Add args.
                        padding_arg_values = ConverterUtil.get_arg(
                            op,
                            MaceKeyword.mace_paddings_str).ints
                        blocks_arg_values = ConverterUtil.get_arg(
                            b2s_op,
                            MaceKeyword.mace_space_batch_block_shape_str).ints
                        dilation_arg = ConverterUtil.get_arg(
                            conv_op,
                            MaceKeyword.mace_dilations_str)
                        if dilation_arg is None:
                            dilation_arg = conv_op.arg.add()
                        dilation_arg.name = MaceKeyword.mace_dilations_str
                        dilation_arg.ints[:] = blocks_arg_values

                        padding_arg = ConverterUtil.get_arg(
                            conv_op,
                            MaceKeyword.mace_padding_str)
                        if padding_arg is None:
                            padding_arg = conv_op.arg.add()
                        padding_arg.name = MaceKeyword.mace_padding_str
                        if len(padding_arg_values) > 0 \
                                and padding_arg_values[0] > 0:
                            padding_arg.i = PaddingMode.SAME.value
                        else:
                            padding_arg.i = PaddingMode.VALID.value

                        strides_arg = ConverterUtil.get_arg(
                            conv_op,
                            MaceKeyword.mace_strides_str)
                        if strides_arg is None:
                            strides_arg = conv_op.arg.add()
                        strides_arg.name = MaceKeyword.mace_strides_str
                        strides_arg.ints[:] = [1, 1]

                        # update output shape
                        conv_op.output_shape[0].dims[:] = \
                            b2s_op.output_shape[0].dims[:]
B
Bin Li 已提交
944 945
                        conv_op.output[0] = b2s_op.output[0]
                        conv_op.name = b2s_op.name
946 947

                        self.safe_remove_node(op, None)
B
Bin Li 已提交
948
                        self.replace_quantize_info(b2s_op, conv_op)
949 950 951 952
                        self.safe_remove_node(b2s_op, conv_op)
                        return True
        return False

953 954 955 956 957 958 959
    def fold_activation(self):
        net = self._model
        for op in net.op:
            if (op.type == MaceOp.Conv2D.name
                or op.type == MaceOp.Deconv2D.name
                or op.type == MaceOp.DepthwiseConv2d.name
                or op.type == MaceOp.FullyConnected.name
960
                or op.type == MaceOp.BatchNorm.name) \
961 962 963 964 965 966 967 968 969 970 971
                    and len(self._consumers.get(op.output[0], [])) == 1:
                consumer_op = self._consumers[op.output[0]][0]
                if consumer_op.type == MaceOp.Activation.name \
                        and ConverterUtil.get_arg(
                            consumer_op,
                            MaceKeyword.mace_activation_type_str).s != 'PRELU':
                    print("Fold activation: %s(%s)" % (op.name, op.type))
                    op.name = consumer_op.name
                    op.output[0] = consumer_op.output[0]
                    for arg in consumer_op.arg:
                        if arg.name == MaceKeyword.mace_activation_type_str \
Y
yejianwu 已提交
972 973 974
                                or arg.name == \
                                    MaceKeyword.mace_activation_max_limit_str \
                                or arg.name == MaceKeyword.mace_activation_leakyrelu_coefficient_str:  # noqa
975 976
                            op.arg.extend([arg])

李寅 已提交
977
                    self.replace_quantize_info(op, consumer_op)
李寅 已提交
978
                    self.safe_remove_node(consumer_op, op)
979 980 981 982
                    return True

        return False

983 984 985 986 987 988 989 990 991
    def transform_global_conv_to_fc(self):
        """Transform global conv to fc should be placed after transposing
        input/output and filter"""

        if self._option.quantize:
            return

        net = self._model
        for op in net.op:
992 993 994
            if op.type == MaceOp.Conv2D.name \
                    and len(op.input) >= 2 \
                    and op.input[1] in self._consts:
995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016
                producer = self._producer[op.input[0]]
                input_shape = producer.output_shape[0].dims
                batch, height, width, channels = self.sort_feature_map_shape(
                    input_shape, ConverterUtil.data_format(producer))
                filter = self._consts[op.input[1]]
                filter_shape = filter.dims
                filter_height, filter_width, in_channels, out_channels = \
                    self.sort_filter_shape(filter_shape, self.filter_format())
                zero_padding = True
                padding_arg = ConverterUtil.get_arg(op,
                                                    MaceKeyword.mace_padding_str)  # noqa
                if padding_arg is not None:
                    if padding_arg.i != PaddingMode.VALID.value:
                        zero_padding = False
                else:
                    padding_value_arg = ConverterUtil.get_arg(op,
                                                              MaceKeyword.mace_padding_values_str)  # noqa
                    if padding_value_arg is not None:
                        if not all(v == 0 for v in padding_value_arg.ints):
                            zero_padding = False

                if height == filter_height and width == filter_width \
1017 1018
                        and zero_padding \
                        and len(self._consumers[op.input[1]]) == 1:
1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031
                    print("transform global conv to fc %s(%s)"
                          % (op.name, op.type))
                    op.type = MaceOp.FullyConnected.name

        return False

    def reshape_fc_weight(self):
        net = self._model
        filter_format = self.filter_format()
        for op in net.op:
            if op.type == MaceOp.FullyConnected.name:
                weight = self._consts[op.input[1]]
                if len(weight.dims) == 2:
L
liutuo 已提交
1032
                    print("Reshape fully connected weight shape")
1033 1034 1035 1036
                    input_op = self._producer[op.input[0]]
                    input_shape = list(input_op.output_shape[0].dims)
                    weight.dims[:] = [weight.dims[0]] + input_shape[1:]
                    if len(input_shape) == 2:
1037
                        if filter_format == DataFormat.HWIO:
1038
                            weight.dims[:] = [1, 1] + weight.dims[:]
1039
                        elif filter_format == DataFormat.OIHW:
1040 1041
                            weight.dims[:] = weight.dims[:] + [1, 1]
                        else:
L
liuqi 已提交
1042 1043
                            mace_check(False,
                                       "FC does not support filter format %s" %
1044 1045 1046
                                       filter_format.name)
        return False

1047 1048 1049 1050
    def add_winograd_arg(self):
        if self._wino_arg == 0:
            return False
        net = self._model
李寅 已提交
1051

1052 1053 1054 1055 1056
        for op in net.op:
            if op.type == MaceOp.Conv2D.name:
                winograd_arg = op.arg.add()
                winograd_arg.name = MaceKeyword.mace_wino_arg_str
                winograd_arg.i = self._wino_arg
李寅 已提交
1057

1058 1059
        return False

1060 1061 1062 1063
    def transpose_matmul_weight(self):
        if self._option.device != DeviceType.CPU.value:
            return False
        net = self._model
1064
        transposed_weights = []
1065 1066
        for op in net.op:
            if op.type == MaceOp.MatMul.name:  # noqa
1067 1068 1069
                rhs = op.input[1]
                if rhs in self._consts and len(self._consts[rhs].dims) == 2:
                    arg = ConverterUtil.get_arg(op, MaceKeyword.mace_transpose_b_str)  # noqa
L
liutuo 已提交
1070
                    # six.print_("Transpose matmul weight %s" % rhs)
1071 1072 1073 1074 1075 1076
                    if arg is None:
                        arg = op.arg.add()
                        arg.name = MaceKeyword.mace_transpose_b_str
                        arg.i = 0
                    if arg.i == 0:
                        arg.i = 1
1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
                        if rhs not in transposed_weights:
                            filter = self._consts[rhs]
                            filter_data = np.array(filter.float_data).reshape(
                                filter.dims)
                            filter_data = filter_data.transpose(1, 0)
                            filter.float_data[:] = filter_data.flat
                            filter.dims[:] = filter_data.shape
                            transposed_weights.append(rhs)
                            six.print_('Transpose matmul weight to shape:',
                                       filter.dims)
1087

1088 1089 1090
    def transpose_filters(self):
        net = self._model
        filter_format = self.filter_format()
1091
        transposed_filter = set()
L
liutuo 已提交
1092
        transposed_deconv_filter = set()
1093

李寅 已提交
1094
        if self._option.quantize and \
1095 1096
                (self._option.device == DeviceType.CPU.value or
                 self._option.device == DeviceType.APU.value):
1097
            print("Transpose filters to OHWI")
1098
            if filter_format == DataFormat.HWIO:
1099
                transpose_order = [3, 0, 1, 2]
1100
            elif filter_format == DataFormat.OIHW:
1101 1102
                transpose_order = [0, 2, 3, 1]
            else:
L
liuqi 已提交
1103
                mace_check(False, "Quantize model does not support conv "
1104 1105
                           "filter format: %s" % filter_format.name)

1106
            for op in net.op:
L
liutuo 已提交
1107
                if (op.type == MaceOp.Conv2D.name or
1108 1109 1110
                    op.type == MaceOp.Deconv2D.name or
                    (op.type == MaceOp.DepthwiseConv2d.name and
                     self._option.device == DeviceType.APU.value)) and\
L
liutuo 已提交
1111
                        op.input[1] not in transposed_filter:
1112 1113 1114
                    filter = self._consts[op.input[1]]
                    filter_data = np.array(filter.float_data).reshape(
                        filter.dims)
1115
                    filter_data = filter_data.transpose(transpose_order)
1116 1117
                    filter.float_data[:] = filter_data.flat
                    filter.dims[:] = filter_data.shape
1118
                    transposed_filter.add(op.input[1])
L
liutuo 已提交
1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129
            # deconv's filter's output channel and input channel is reversed
            for op in net.op:
                if op.type == MaceOp.Deconv2D.name and \
                        op.input[1] not in transposed_deconv_filter:
                    filter = self._consts[op.input[1]]
                    filter_data = np.array(filter.float_data).reshape(
                        filter.dims)
                    filter_data = filter_data.transpose(3, 1, 2, 0)
                    filter.float_data[:] = filter_data.flat
                    filter.dims[:] = filter_data.shape
                    transposed_deconv_filter.add(op.input[1])
1130

1131
            self.set_filter_format(DataFormat.OHWI)
B
Bin Li 已提交
1132
        elif self._option.quantize and \
B
Bin Li 已提交
1133 1134
                (self._option.device == DeviceType.HEXAGON.value or
                 self._option.device == DeviceType.HTA.value):
1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147
            for op in net.op:
                # from HWOI to OHWI, deconv is unique
                if op.type == MaceOp.Deconv2D.name \
                        and op.input[1] in self._consts \
                        and op.input[1] not in transposed_deconv_filter:
                    filter = self._consts[op.input[1]]
                    filter_data = np.array(filter.float_data).reshape(
                        filter.dims)
                    filter_data = filter_data.transpose(2, 0, 1, 3)
                    filter.float_data[:] = filter_data.flat
                    filter.dims[:] = filter_data.shape
                    transposed_deconv_filter.add(op.input[1])

B
Bin Li 已提交
1148
            print("Transpose filters to HWIO/HWIM")
1149
            mace_check(filter_format == DataFormat.HWIO,
B
Bin Li 已提交
1150
                       "HEXAGON only support HWIO/HWIM filter format.")
1151 1152
        else:
            # transpose filter to OIHW/MIHW for tensorflow (HWIO/HWIM)
1153
            if filter_format == DataFormat.HWIO:
1154
                for op in net.op:
1155 1156 1157
                    if (op.type == MaceOp.Conv2D.name
                            or op.type == MaceOp.Deconv2D.name
                            or op.type == MaceOp.DepthwiseConv2d.name) \
1158
                            and op.input[1] in self._consts \
1159
                            and op.input[1] not in transposed_filter:
L
liutuo 已提交
1160
                        print("Transpose Conv2D/Deconv2D filters to OIHW/MIHW")
1161 1162 1163 1164 1165 1166
                        filter = self._consts[op.input[1]]
                        filter_data = np.array(filter.float_data).reshape(
                            filter.dims)
                        filter_data = filter_data.transpose(3, 2, 0, 1)
                        filter.float_data[:] = filter_data.flat
                        filter.dims[:] = filter_data.shape
1167
                        transposed_filter.add(op.input[1])
L
liutuo 已提交
1168 1169 1170 1171 1172
                    if (op.type == MaceOp.MatMul.name and
                            (ConverterUtil.get_arg(
                                op,
                                MaceKeyword.mace_winograd_filter_transformed)
                                 is not None)  # noqa
1173
                            and op.input[1] not in transposed_filter):
L
liutuo 已提交
1174
                        print("Transpose Winograd filters to OIHW/MIHW")
1175 1176 1177 1178 1179 1180
                        filter = self._consts[op.input[0]]
                        filter_data = np.array(filter.float_data).reshape(
                            filter.dims)
                        filter_data = filter_data.transpose(3, 2, 0, 1)
                        filter.float_data[:] = filter_data.flat
                        filter.dims[:] = filter_data.shape
1181 1182 1183
                        transposed_filter.add(op.input[0])
                    if op.type == MaceOp.FullyConnected.name \
                            and op.input[1] not in transposed_filter:
1184 1185
                        weight = self._consts[op.input[1]]
                        if len(weight.dims) == 4:
L
liutuo 已提交
1186 1187
                            print("Transpose FullyConnected filters to"
                                  " OIHW/MIHW")
1188 1189 1190 1191 1192
                            weight_data = np.array(weight.float_data).reshape(
                                weight.dims)
                            weight_data = weight_data.transpose(3, 2, 0, 1)
                            weight.float_data[:] = weight_data.flat
                            weight.dims[:] = weight_data.shape
1193
                            transposed_filter.add(op.input[1])
1194

1195
                self.set_filter_format(DataFormat.OIHW)
L
liutuo 已提交
1196
            # deconv's filter's output channel and input channel is reversed
1197
            for op in net.op:
L
liutuo 已提交
1198 1199
                if op.type in [MaceOp.Deconv2D.name,
                               MaceOp.DepthwiseDeconv2d] \
L
liutuo 已提交
1200
                        and op.input[1] not in transposed_deconv_filter:
1201
                    filter = self._consts[op.input[1]]
1202 1203
                    filter_data = np.array(filter.float_data).reshape(
                        filter.dims)
1204
                    filter_data = filter_data.transpose(1, 0, 2, 3)
1205 1206
                    filter.float_data[:] = filter_data.flat
                    filter.dims[:] = filter_data.shape
L
liutuo 已提交
1207
                    transposed_deconv_filter.add(op.input[1])
1208 1209 1210

        return False

李寅 已提交
1211
    def fold_reshape(self):
1212 1213
        net = self._model
        for op in net.op:
1214 1215
            if op.type == MaceOp.Softmax.name:
                # see if possible to fold
1216
                # Reshape(xd->2d) + Softmax(2d) [+ Reshape(xd)] to Softmax(xd)
1217 1218 1219 1220
                should_fold = False
                if op.input[0] in self._producer \
                        and self._producer[op.input[0]].type \
                        == MaceOp.Reshape.name \
1221
                        and len(op.output_shape[0].dims) == 2:
L
liutuo 已提交
1222 1223 1224 1225 1226
                    producer = self._producer[op.input[0]]
                    reshape_input_rank = len(self.get_tensor_shape(
                        producer.input[0]))
                    if reshape_input_rank == 4:
                        should_fold = True
1227 1228 1229 1230 1231

                if should_fold:
                    print(
                        "Fold reshape and softmax: %s(%s)"
                        % (op.name, op.type))
1232
                    producer = self._producer[op.input[0]]
1233 1234 1235
                    op.output_shape[0].dims[:] = self.get_tensor_shape(
                        producer.input[0])

1236 1237 1238
                    if op.output[0] in self._consumers:
                        consumer = self._consumers[op.output[0]][0]
                        # if there is a shape op, remove it too
L
liutuo 已提交
1239 1240 1241 1242 1243 1244 1245
                        if len(consumer.input) > 1:
                            if (consumer.input[1] in self._producer
                                and self._producer[consumer.input[1]].type
                                    == 'Shape'):
                                self.safe_remove_node(
                                    self._producer[consumer.input[1]], None,
                                    remove_input_tensor=True)
1246 1247 1248
                        # remove consumer reshape
                        self.safe_remove_node(consumer, op,
                                              remove_input_tensor=True)
1249 1250 1251
                    # remove producer reshape
                    self.safe_remove_node(producer,
                                          self._producer.get(producer.input[0],
L
liuqi 已提交
1252 1253
                                                             None),
                                          remove_input_tensor=True)
1254

1255
                    return True
1256 1257
        return False

Y
yejianwu 已提交
1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269
    def is_after_fc(self, op):
        while op.input[0] in self._producer:
            producer = self._producer[op.input[0]]
            if producer.type in [MaceOp.Activation.name, MaceOp.BiasAdd.name]:
                op = producer
                continue
            elif producer.type == MaceOp.FullyConnected.name:
                return True
            else:
                return False
        return False

李寅 已提交
1270 1271
    def transform_matmul_to_fc(self):
        net = self._model
L
liuqi 已提交
1272
        filter_format = self.filter_format()
李寅 已提交
1273
        for op in net.op:
Y
yejianwu 已提交
1274 1275
            # transform `input(4D) -> reshape(2D) -> matmul` to `fc(2D)`
            # fc output is 2D in transformer, using as 4D in op kernel
L
liuqi 已提交
1276
            # work for TensorFlow
L
liuqi 已提交
1277
            if op.type == MaceOp.Reshape.name and \
L
lichao18 已提交
1278
                    len(op.input) == 2 and \
L
liuqi 已提交
1279 1280
                    op.input[1] in self._consts and \
                    len(op.output_shape[0].dims) == 2 and \
1281
                    filter_format == DataFormat.HWIO and \
李寅 已提交
1282
                    op.input[0] in self._producer:
L
liuqi 已提交
1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299
                input_op = self._producer[op.input[0]]
                input_shape = input_op.output_shape[0].dims
                # check input op
                if len(input_shape) == 4 and \
                        np.prod(input_shape[1:]) == op.output_shape[0].dims[1]:
                    is_fc = True
                    consumers = self._consumers[op.output[0]]
                    # check matmul op
                    for matmul_op in consumers:
                        if matmul_op.type != MaceOp.MatMul.name:
                            is_fc = False
                        else:
                            weight = self._consts[matmul_op.input[1]]
                            if len(weight.dims) != 2 or \
                               weight.dims[0] != op.output_shape[0].dims[1]:
                                is_fc = False
                    if is_fc:
1300
                        print('convert reshape and matmul to fc')
L
liuqi 已提交
1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311
                        self.safe_remove_node(op, input_op,
                                              remove_input_tensor=True)
                        for matmul_op in consumers:
                            weight = self._consts[matmul_op.input[1]]
                            matmul_op.type = MaceOp.FullyConnected.name
                            weight_data = np.array(weight.float_data).reshape(
                                weight.dims)
                            weight.dims[:] = input_shape[1:] + \
                                [weight_data.shape[1]]
                        return True

Y
yejianwu 已提交
1312 1313
            # transform `fc1(2D) -> matmul` to `fc1(2D) -> fc1(2D)`
            if op.type == MaceOp.MatMul.name and \
1314
                    filter_format == DataFormat.HWIO and \
Y
yejianwu 已提交
1315
                    op.input[1] in self._consts:
Y
yejianwu 已提交
1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327
                producer = self._producer[op.input[0]]
                weight = self._consts[op.input[1]]
                if len(weight.dims) == 2 and self.is_after_fc(op) and \
                        len(producer.output_shape[0].dims) == 2 and \
                        weight.dims[0] == producer.output_shape[0].dims[1]:
                    six.print_('convert matmul to fc')
                    op.type = MaceOp.FullyConnected.name
                    weight_data = np.array(weight.float_data).reshape(
                        weight.dims)
                    weight.dims[:] = [1, 1] + list(weight_data.shape)
                    return True

李寅 已提交
1328 1329
        return False

1330 1331 1332
    def update_float_op_data_type(self):
        print("update op with float data type")
        net = self._model
1333
        data_type = self._option.data_type
1334 1335 1336 1337 1338
        net.data_type = data_type

        if self._option.quantize:
            return

1339 1340 1341 1342 1343 1344
        for op in net.op:
            data_type_arg = ConverterUtil.get_arg(
                op, MaceKeyword.mace_op_data_type_str)
            if not data_type_arg:
                data_type_arg = op.arg.add()
                data_type_arg.name = MaceKeyword.mace_op_data_type_str
1345 1346
                data_type_arg.i = data_type
            elif data_type_arg.i != data_type \
L
liuqi 已提交
1347
                    and data_type_arg.i == mace_pb2.DT_FLOAT:
1348
                data_type_arg.i = data_type
1349 1350 1351

        return False

1352
    def sort_dfs(self, op, visited, sorted_nodes):
1353 1354
        if op.name in visited:
            return
1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370
        visited.update([op.name])
        if len(op.input) > 0:
            for input_tensor in op.input:
                producer_op = self._producer.get(input_tensor, None)
                if producer_op is None:
                    pass
                elif producer_op.name not in visited:
                    self.sort_dfs(producer_op, visited, sorted_nodes)
        sorted_nodes.append(op)

    def sort_by_execution(self):
        print("Sort by execution")
        net = self._model
        visited = set()
        sorted_nodes = []

L
luxuhui 已提交
1371
        output_nodes = list(self._option.check_nodes.keys())
B
Bin Li 已提交
1372
        if not self._quantize_activation_info:
B
Bin Li 已提交
1373
            output_nodes.extend(self._option.output_nodes)
B
Bin Li 已提交
1374
        for output_node in output_nodes:
1375 1376 1377
            mace_check(output_node in self._producer,
                       "output_tensor %s not existed in model" % output_node)
            self.sort_dfs(self._producer[output_node], visited, sorted_nodes)
1378 1379 1380

        del net.op[:]
        net.op.extend(sorted_nodes)
李寅 已提交
1381 1382

        print("Final ops:")
B
Bin Li 已提交
1383
        index = 0
李寅 已提交
1384
        for op in net.op:
B
Bin Li 已提交
1385 1386 1387 1388 1389 1390
            if op.type not in [MaceOp.Quantize.name, MaceOp.Dequantize.name]:
                index_str = str(index)
                index += 1
            else:
                index_str = ''
            print("%s (%s, index:%s): %s" % (op.name, op.type, index_str, [
李寅 已提交
1391
                out_shape.dims for out_shape in op.output_shape]))
1392
        return False
李寅 已提交
1393

1394 1395 1396 1397 1398 1399 1400 1401 1402 1403
    def is_transposable_data_format_ops(self, op):
        if op.type == MaceOp.Reshape:
            input_op = self._producer[op.input[0]]
            out_dims_len = len(op.output_shape[0].dims)
            if len(input_op.output_shape[0].dims) != 4 \
                    or (out_dims_len != 4 and out_dims_len != 2):
                print("In this model, reshape is not transposable op.")
                return False
        return op.type in MaceTransposableDataFormatOps

1404
    def update_data_format(self):
1405
        print("update data format")
1406 1407
        net = self._model
        for op in net.op:
1408
            df_arg = ConverterUtil.get_arg(
1409
                op, MaceKeyword.mace_data_format_str)
1410 1411 1412
            if not df_arg:
                df_arg = op.arg.add()
                df_arg.name = MaceKeyword.mace_data_format_str
1413
            if op.type in MaceFixedDataFormatOps:
1414
                df_arg.i = DataFormat.AUTO.value
1415
            elif self.is_transposable_data_format_ops(op):
1416
                input_df = DataFormat.AUTO.value
1417 1418 1419
                for input_tensor in op.input:
                    if input_tensor in self._consts:
                        continue
1420 1421 1422
                    mace_check(
                        input_tensor in self._producer,
                        "Input tensor %s not in producer" % input_tensor)
1423 1424 1425
                    father_op = self._producer[input_tensor]
                    temp_input_df = ConverterUtil.get_arg(
                        father_op, MaceKeyword.mace_data_format_str)
1426
                    if temp_input_df.i != DataFormat.AUTO.value:
1427
                        input_df = temp_input_df.i
1428
                if input_df == DataFormat.AUTO.value:
1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443
                    df_arg.i = input_df
                    # add flag to mark the ops may has data format
                    has_data_format_arg = op.arg.add()
                    has_data_format_arg.name = \
                        MaceKeyword.mace_has_data_format_str
                    has_data_format_arg.i = 1
        return False

    def transpose_data_format(self):
        print("Transpose arguments based on data format")
        net = self._model

        src_data_format = ConverterUtil.data_format(net)
        for op in net.op:
            has_data_format = ConverterUtil.data_format(op) == \
1444
                              DataFormat.AUTO
1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470
            # transpose args
            if op.type == MaceOp.Pad.name:
                for arg in op.arg:
                    if arg.name == MaceKeyword.mace_paddings_str:
                        mace_check(len(arg.ints) == 8,
                                   "pad dim rank should be 8.")
                        if src_data_format == DataFormat.NCHW and \
                                has_data_format:
                            print("Transpose pad args: %s(%s)"
                                  % (op.name, op.type))
                            self.transpose_shape(arg.ints,
                                                 [0, 1, 4, 5, 6, 7, 2, 3])
            elif op.type == MaceOp.Concat.name or op.type == MaceOp.Split.name:
                for arg in op.arg:
                    if arg.name == MaceKeyword.mace_axis_str:
                        if (src_data_format == DataFormat.NCHW
                                and has_data_format
                                and len(op.output_shape[0].dims) == 4):
                            print("Transpose concat/split args: %s(%s)"
                                  % (op.name, op.type))
                            if arg.i == 1:
                                arg.i = 3
                            elif arg.i == 2:
                                arg.i = 1
                            elif arg.i == 3:
                                arg.i = 2
L
liutuo 已提交
1471 1472 1473 1474 1475 1476 1477 1478 1479
                        if op.input[0] in self._producer:
                            producer = self._producer[op.input[0]]
                            input_shape = producer.output_shape[0].dims
                            if (producer.type == MaceOp.FullyConnected.name
                                    and len(input_shape) == 2):
                                axis_arg = ConverterUtil.get_arg(
                                        op, MaceKeyword.mace_axis_str)
                                if axis_arg.i == 1:
                                    axis_arg.i = 3
1480

Y
yejianwu 已提交
1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492
            elif op.type == MaceOp.Squeeze.name:
                for arg in op.arg:
                    if arg.name == MaceKeyword.mace_axis_str:
                        if (src_data_format == DataFormat.NCHW
                                and has_data_format
                                and len(self._producer[op.input[0]].output_shape[0].dims) == 4  # noqa
                                and len(op.output_shape[0].dims) == 2
                                and arg.ints == [2, 3]):
                            print("Transpose squeeze args: %s(%s)"
                                  % (op.name, op.type))
                            arg.ints[:] = [1, 2]

1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523
            elif op.type == MaceOp.Reduce.name:
                for arg in op.arg:
                    if arg.name == MaceKeyword.mace_axis_str:
                        if src_data_format == DataFormat.NCHW and \
                                has_data_format:
                            print("Transpose reduce args: %s(%s)"
                                  % (op.name, op.type))
                            reduce_axises = list(arg.ints)
                            new_axises = []
                            for i in range(len(reduce_axises)):
                                idx = reduce_axises[i]
                                if idx == 2 or idx == 3:
                                    new_axises.append(idx - 1)
                                elif idx == 1:
                                    new_axises.append(3)
                                else:
                                    new_axises.append(idx)
                            new_axises.sort()
                            arg.ints[:] = []
                            arg.ints.extend(new_axises)
            elif op.type == MaceOp.Crop.name:
                offset_arg = ConverterUtil.get_arg(op,
                                                   MaceKeyword.mace_offset_str)
                mace_check(offset_arg and
                           src_data_format == DataFormat.NCHW
                           and has_data_format
                           and len(op.output_shape[0].dims) == 4,
                           "MACE only support crop with NCHW format")
                print("Transpose crop args: %s(%s)"
                      % (op.name, op.type))
                self.transpose_shape(offset_arg.ints, [0, 2, 3, 1])
L
luxuhui 已提交
1524 1525 1526 1527 1528 1529 1530
            elif op.type == MaceOp.Reshape.name:
                for arg in op.arg:
                    if arg.name == MaceKeyword.mace_dim_str and \
                            len(arg.ints) == 4 and \
                            src_data_format == DataFormat.NCHW and \
                            has_data_format:
                        self.transpose_shape(arg.ints, [0, 2, 3, 1])
1531 1532 1533 1534 1535 1536 1537 1538 1539 1540

            # transpose op output shape
            if src_data_format == DataFormat.NCHW and \
                    has_data_format:
                print("Transpose output shapes: %s(%s)" % (op.name, op.type))
                for output_shape in op.output_shape:
                    if len(output_shape.dims) == 4:
                        self.transpose_shape(output_shape.dims,
                                             [0, 2, 3, 1])

1541 1542
        return False

李寅 已提交
1543
    def quantize_nodes(self):
李寅 已提交
1544 1545 1546
        if not self._option.quantize:
            return False

李寅 已提交
1547 1548 1549
        print("Add mace quantize and dequantize nodes")

        for op in self._model.op:
1550
            for i in range(len(op.input)):
B
Bin Li 已提交
1551 1552
                if op.input[i] in self.input_name_map:
                    op.input[i] = self.input_name_map[op.input[i]]
1553
            for i in range(len(op.output)):
B
Bin Li 已提交
1554
                if op.output[i] in self.output_name_map:
B
Bin Li 已提交
1555 1556
                    op.name = MaceKeyword.mace_output_node_name \
                              + '_' + op.name
B
Bin Li 已提交
1557
                    new_output_name = self.output_name_map[op.output[i]]
B
Bin Li 已提交
1558 1559
                    self._quantize_activation_info[new_output_name] = \
                        self._quantize_activation_info[op.output[i]]
1560 1561 1562 1563 1564
                    if op.output[i] in self._consumers:
                        for consumer_op in self._consumers[op.output[i]]:
                            self.replace(consumer_op.input,
                                         op.output[i],
                                         new_output_name)
B
Bin Li 已提交
1565
                    op.output[i] = new_output_name
1566

李寅 已提交
1567 1568 1569 1570 1571 1572
            data_type_arg = ConverterUtil.get_arg(
                op, MaceKeyword.mace_op_data_type_str)
            mace_check(data_type_arg, "Data type does not exist for %s(%s)"
                       % (op.name, op.type))
            if data_type_arg.i == mace_pb2.DT_FLOAT:
                data_type_arg.i = mace_pb2.DT_UINT8
1573 1574 1575 1576 1577
            elif data_type_arg.i == mace_pb2.DT_UINT8:
                mace_check(op.type == MaceOp.Quantize.name
                           or op.type == MaceOp.Dequantize.name,
                           "Only Quantization ops support uint8, "
                           "but got %s(%s)" % (op.name, op.type))
李寅 已提交
1578
            else:
1579
                mace_check(op.type == MaceOp.Quantize.name,
李寅 已提交
1580
                           "Quantization only support float ops, "
B
Bin Li 已提交
1581 1582 1583
                           "but get %s(%s, %s)"
                           % (op.name, op.type,
                              mace_pb2.DataType.Name(data_type_arg.i)))
李寅 已提交
1584

B
Bin Li 已提交
1585
        for i, input_node in enumerate(self._option.input_nodes.values()):
B
Bin Li 已提交
1586
            new_input_name = self.input_name_map[input_node.name]
李寅 已提交
1587
            op_def = self._model.op.add()
B
Bin Li 已提交
1588
            op_def.name = self.normalize_op_name(new_input_name)
李寅 已提交
1589
            op_def.type = MaceOp.Quantize.name
1590
            op_def.input.extend([input_node.name])
B
Bin Li 已提交
1591
            op_def.output.extend([new_input_name])
李寅 已提交
1592 1593
            output_shape = op_def.output_shape.add()
            output_shape.dims.extend(input_node.shape)
B
Bin Li 已提交
1594 1595 1596 1597
            quantize_info = self._quantize_activation_info[new_input_name]
            self.copy_quantize_info(op_def, quantize_info)
            self._model.input_info[i].scale = quantize_info.scale
            self._model.input_info[i].zero_point = quantize_info.zero_point
李寅 已提交
1598 1599

            ConverterUtil.add_data_type_arg(op_def, mace_pb2.DT_UINT8)
1600
            ConverterUtil.add_data_format_arg(op_def, input_node.data_format)
B
Bin Li 已提交
1601 1602 1603 1604 1605
            # use actual ranges for model input quantize
            find_range_every_time_arg = op_def.arg.add()
            find_range_every_time_arg.name = \
                MaceKeyword.mace_find_range_every_time
            find_range_every_time_arg.i = 1
李寅 已提交
1606

B
Bin Li 已提交
1607
        output_nodes = self._option.check_nodes.values()
B
Bin Li 已提交
1608
        for i, output_node in enumerate(output_nodes):
李寅 已提交
1609
            op_def = self._model.op.add()
B
Bin Li 已提交
1610
            op_def.name = self.normalize_op_name(output_node.name)
李寅 已提交
1611
            op_def.type = MaceOp.Dequantize.name
B
Bin Li 已提交
1612
            op_def.input.extend([self.output_name_map[output_node.name]])
1613
            op_def.output.extend([output_node.name])
李寅 已提交
1614
            output_shape = op_def.output_shape.add()
B
Bin Li 已提交
1615 1616
            producer_op = self._producer[output_node.name]
            output_shape.dims.extend(producer_op.output_shape[0].dims)
李寅 已提交
1617
            op_def.output_type.extend([mace_pb2.DT_FLOAT])
B
Bin Li 已提交
1618 1619 1620
            quantize_info = producer_op.quantize_info[0]
            self._model.output_info[i].scale = quantize_info.scale
            self._model.output_info[i].zero_point = quantize_info.zero_point
李寅 已提交
1621 1622

            ConverterUtil.add_data_type_arg(op_def, mace_pb2.DT_UINT8)
1623
            ConverterUtil.add_data_format_arg(op_def, output_node.data_format)
李寅 已提交
1624

1625 1626 1627
        quantize_flag_arg = self._model.arg.add()
        quantize_flag_arg.name = MaceKeyword.mace_quantize_flag_arg_str
        quantize_flag_arg.i = 1
李寅 已提交
1628

李寅 已提交
1629
        return False
李寅 已提交
1630 1631 1632 1633 1634

    def quantize_tensor(self, tensor):
        """Assume biasadd has been already folded with convolution and fc"""
        if tensor.data_type == mace_pb2.DT_FLOAT:
            ops = self._consumers.get(tensor.name, None)
L
liutuo 已提交
1635 1636 1637
            check_conv = False
            check_deconv = False
            if ops is not None and len(ops) == 1:
L
liutuo 已提交
1638 1639 1640 1641 1642 1643
                if len(ops[0].input) >= 3:
                    check_conv =\
                        ops[0].type in [MaceOp.Conv2D.name,
                                        MaceOp.DepthwiseConv2d.name,
                                        MaceOp.FullyConnected.name]\
                        and ops[0].input[2] == tensor.name
L
liutuo 已提交
1644
                # in tensorflow deconv's bias is the forth input
L
liutuo 已提交
1645 1646
                if ops[0].type in [MaceOp.Deconv2D.name,
                                   MaceOp.DepthwiseDeconv2d]:
L
liutuo 已提交
1647 1648 1649 1650
                    from_caffe = ConverterUtil.get_arg(
                        ops[0],
                        MaceKeyword.mace_framework_type_str).i ==\
                                 FrameworkType.CAFFE.value
L
liutuo 已提交
1651 1652
                    if from_caffe and len(ops[0].input) >= 3:
                        check_deconv = ops[0].input[2] == tensor.name
L
liutuo 已提交
1653
                    else:
L
liutuo 已提交
1654 1655
                        if len(ops[0].input) >= 4:
                            check_deconv = ops[0].input[3] == tensor.name
L
liutuo 已提交
1656
            if check_conv or check_deconv:
1657 1658
                if self._option.device == DeviceType.CPU.value \
                       or self._option.device == DeviceType.APU.value:
B
Bin Li 已提交
1659 1660 1661 1662 1663 1664 1665 1666 1667 1668
                    conv_op = ops[0]
                    scale_input = self._quantize_activation_info[
                        conv_op.input[0]].scale
                    if conv_op.input[1] not in self._quantized_tensor:
                        self.quantize_tensor(self._consts[conv_op.input[1]])
                    scale_filter = self._consts[conv_op.input[1]].scale
                    scale = scale_input * scale_filter
                    quantized_tensor = \
                        quantize_util.quantize_with_scale_and_zero(
                            tensor.float_data, scale, 0)
B
Bin Li 已提交
1669 1670
                elif self._option.device == DeviceType.HEXAGON.value or \
                        self._option.device == DeviceType.HTA.value:
B
Bin Li 已提交
1671 1672 1673 1674 1675
                    quantized_tensor = \
                        quantize_util.quantize_bias_for_hexagon(
                            tensor.float_data)
                else:
                    mace_check(False, "wrong device.")
李寅 已提交
1676 1677
                tensor.data_type = mace_pb2.DT_INT32
            else:
1678 1679
                non_zero = self._option.device == DeviceType.CPU.value
                quantized_tensor = quantize_util.quantize(tensor.float_data,
B
Bin Li 已提交
1680
                                                          self._option.device,
1681
                                                          non_zero)
李寅 已提交
1682 1683 1684 1685 1686 1687
                tensor.data_type = mace_pb2.DT_UINT8

            del tensor.float_data[:]
            tensor.int32_data.extend(quantized_tensor.data)
            tensor.scale = quantized_tensor.scale
            tensor.zero_point = quantized_tensor.zero
B
Bin Li 已提交
1688 1689
            tensor.minval = quantized_tensor.minval
            tensor.maxval = quantized_tensor.maxval
李寅 已提交
1690
            tensor.quantized = True
李寅 已提交
1691 1692
            self._quantized_tensor.update([tensor.name])

李寅 已提交
1693 1694
        return False

李寅 已提交
1695 1696 1697 1698 1699
    def quantize_weights(self):
        print("Quantize weights")
        net = self._model
        for tensor in net.tensors:
            self.quantize_tensor(tensor)
李寅 已提交
1700 1701 1702

        return False

B
Bin Li 已提交
1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731
    def quantize_large_tensor(self, tensor):
        if tensor.data_type == mace_pb2.DT_FLOAT:
            ops = self._consumers.get(tensor.name, None)
            if ops is not None and len(ops) == 1:
                if ops[0].type in [MaceOp.Conv2D.name,
                                   MaceOp.FullyConnected.name]:
                    quantized_tensor = \
                        quantize_util.quantize(tensor.float_data,
                                               self._option.device,
                                               False)
                    tensor.data_type = mace_pb2.DT_UINT8

                    del tensor.float_data[:]
                    tensor.int32_data.extend(quantized_tensor.data)
                    tensor.scale = quantized_tensor.scale
                    tensor.zero_point = quantized_tensor.zero
                    tensor.minval = quantized_tensor.minval
                    tensor.maxval = quantized_tensor.maxval
                    tensor.quantized = True
                    self._quantized_tensor.update([tensor.name])

    def quantize_large_weights(self):
        print("Quantize large weights")
        net = self._model
        for tensor in net.tensors:
            self.quantize_large_tensor(tensor)

        return False

李寅 已提交
1732
    def add_quantize_info(self, op, minval, maxval):
B
Bin Li 已提交
1733
        scale, zero, minval, maxval = \
B
Bin Li 已提交
1734 1735
            quantize_util.adjust_range(minval, maxval, self._option.device,
                                       non_zero=False)
李寅 已提交
1736 1737 1738 1739 1740 1741 1742 1743
        quantize_info = op.quantize_info.add()
        quantize_info.minval = minval
        quantize_info.maxval = maxval
        quantize_info.scale = scale
        quantize_info.zero_point = zero

        return quantize_info

1744 1745 1746 1747 1748 1749 1750
    def copy_quantize_info(self, op, info):
        quantize_info = op.quantize_info.add()
        quantize_info.minval = info.minval
        quantize_info.maxval = info.maxval
        quantize_info.scale = info.scale
        quantize_info.zero_point = info.zero_point

李寅 已提交
1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762
    def transform_fake_quantize(self):
        if not self._option.quantize:
            return False

        # Quantize info from fixpoint fine tune
        print("Transform fake quantize")
        range_file = self._option.quantize_range_file
        if range_file:
            return

        net = self._model
        for op in net.op:
1763 1764
            if op.type == 'FakeQuantWithMinMaxVars' or \
                   op.type == 'FakeQuantWithMinMaxArgs':
B
Bin Li 已提交
1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776
                if op.input[0] not in self._consts:
                    producer_op = self._producer[op.input[0]]
                    minval = ConverterUtil.get_arg(op, 'min').f
                    maxval = ConverterUtil.get_arg(op, 'max').f
                    quantize_info = \
                        self.add_quantize_info(producer_op, minval, maxval)
                    self._quantize_activation_info[op.input[0]] = quantize_info
                    # for add -> fakequant pattern
                    self._quantize_activation_info[op.output[0]] = \
                        quantize_info

                    print(op.input[0], op.output[0])
李寅 已提交
1777 1778 1779 1780
                op.type = MaceOp.Identity.name

        return False

B
Bin Li 已提交
1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830
    def rearrange_batch_to_space(self):
        if not self._option.quantize:
            return False

        # Put b2s after biasadd and relu
        for conv_op in self._model.op:
            if conv_op.type in [MaceOp.Conv2D.name,
                                MaceOp.DepthwiseConv2d.name] \
                    and self.consumer_count(conv_op.output[0]) == 1:
                b2s_op = self._consumers[conv_op.output[0]][0]
                if b2s_op.type == MaceOp.BatchToSpaceND.name \
                        and self.consumer_count(b2s_op.output[0]) == 1:
                    biasadd_or_act_op = self._consumers[b2s_op.output[0]][0]
                    if biasadd_or_act_op.type == MaceOp.BiasAdd.name:
                        biasadd_op = biasadd_or_act_op
                        if self.consumer_count(biasadd_op.output[0]) == 1 \
                                and self._consumers[biasadd_op.output[0]][0].type == MaceOp.Activation.name:  # noqa
                            act_op = self._consumers[biasadd_op.output[0]][0]
                            biasadd_op.input[0] = conv_op.output[0]
                            b2s_op.input[0] = act_op.output[0]
                            for op in self._consumers[act_op.output[0]]:
                                self.replace(op.input,
                                             act_op.output[0],
                                             b2s_op.output[0])
                        else:
                            biasadd_op.input[0] = conv_op.output[0]
                            b2s_op.input[0] = biasadd_op.output[0]
                            for op in self._consumers[biasadd_op.output[0]]:
                                self.replace(op.input,
                                             biasadd_op.output[0],
                                             b2s_op.output[0])

                        print("Rearrange batch to space: %s(%s)"
                              % (b2s_op.name, b2s_op.type))
                        return True
                    elif biasadd_or_act_op.type == MaceOp.Activation.name:
                        act_op = biasadd_or_act_op
                        act_op.input[0] = conv_op.output[0]
                        b2s_op.input[0] = act_op.output[0]
                        for op in self._consumers[act_op.output[0]]:
                            self.replace(op.input,
                                         act_op.output[0],
                                         b2s_op.output[0])

                        print("Rearrange batch to space: %s(%s)"
                              % (b2s_op.name, b2s_op.type))
                        return True

        return False

李寅 已提交
1831 1832 1833 1834
    def add_quantize_tensor_range(self):
        # Quantize info from range statistics
        range_file = self._option.quantize_range_file
        if range_file:
李寅 已提交
1835
            print("Add quantize tensor range")
李寅 已提交
1836 1837
            with open(range_file) as f:
                for line in f:
1838
                    tensor_name, minmax = line.split("@@")[:2]
李寅 已提交
1839 1840
                    min_val, max_val = [float(i) for i in
                                        minmax.strip().split(",")]
B
Bin Li 已提交
1841
                    scale, zero, min_val, max_val = \
B
Bin Li 已提交
1842 1843 1844
                        quantize_util.adjust_range(min_val, max_val,
                                                   self._option.device,
                                                   non_zero=False)
李寅 已提交
1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858
                    activation_info = mace_pb2.QuantizeActivationInfo()
                    activation_info.minval = min_val
                    activation_info.maxval = max_val
                    activation_info.scale = scale
                    activation_info.zero_point = zero
                    self._quantize_activation_info[tensor_name] = activation_info  # noqa

            for op in self._model.op:
                if op.name.find(MaceKeyword.mace_output_node_name) >= 0:
                    continue
                for output in op.output:
                    mace_check(output in self._quantize_activation_info,
                               "%s does not have quantize activation info"
                               % op)
B
Bin Li 已提交
1859 1860
                    op.quantize_info.extend([
                        self._quantize_activation_info[output]])
李寅 已提交
1861

1862 1863
        if not self._option.quantize:
            return False
B
Bin Li 已提交
1864 1865

        print("Add default quantize info for input")
B
Bin Li 已提交
1866
        for i, input_node in enumerate(self._option.input_nodes.values()):
B
Bin Li 已提交
1867 1868 1869 1870 1871 1872 1873
            if input_node.name not in self._quantize_activation_info:
                print("Input range %s: %s" % (input_node.name,
                                              str(input_node.range)))
                new_input_name = self.input_name_map[input_node.name]
                scale, zero, minval, maxval = \
                    quantize_util.adjust_range(input_node.range[0],
                                               input_node.range[1],
B
Bin Li 已提交
1874
                                               self._option.device,
B
Bin Li 已提交
1875
                                               non_zero=False)
1876 1877
                quantize_info = \
                    mace_pb2.QuantizeActivationInfo()
B
Bin Li 已提交
1878 1879 1880 1881 1882
                quantize_info.minval = minval
                quantize_info.maxval = maxval
                quantize_info.scale = scale
                quantize_info.zero_point = zero
                self._quantize_activation_info[new_input_name] = quantize_info
B
Bin Li 已提交
1883 1884
                input_op = self._producer[input_node.name]
                input_op.quantize_info.extend([quantize_info])
B
Bin Li 已提交
1885

1886
        print("Add default quantize info for ops like Pooling, Softmax")
李寅 已提交
1887 1888
        for op in self._model.op:
            if op.type in [MaceOp.Pooling.name,
B
Bin Li 已提交
1889
                           MaceOp.Reduce.name,
李寅 已提交
1890
                           MaceOp.Squeeze.name,
B
Bin Li 已提交
1891
                           MaceOp.Reshape.name,
李寅 已提交
1892 1893
                           MaceOp.ResizeBilinear.name,
                           MaceOp.BatchToSpaceND.name,
1894 1895 1896
                           MaceOp.SpaceToBatchND.name,
                           MaceOp.SpaceToDepth.name,
                           MaceOp.DepthToSpace.name]:
李寅 已提交
1897 1898
                del op.quantize_info[:]
                producer_op = self._producer[op.input[0]]
B
Bin Li 已提交
1899 1900 1901 1902 1903
                if producer_op.output[0] in self._option.input_nodes:
                    new_input_name = self.input_name_map[producer_op.output[0]]
                    self.copy_quantize_info(
                        op, self._quantize_activation_info[new_input_name])
                else:
1904 1905
                    self.copy_quantize_info(op,
                                            producer_op.quantize_info[0])
1906 1907
                self._quantize_activation_info[op.output[0]] = \
                    op.quantize_info[0]
1908 1909 1910
            elif (op.type == MaceOp.Concat.name
                  and (not op.quantize_info
                       or self._option.change_concat_ranges)):
1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922
                if op.quantize_info:
                    maxval = op.quantize_info[0].maxval
                    minval = op.quantize_info[0].minval
                    del op.quantize_info[:]
                else:
                    maxval = float("-inf")
                    minval = float("inf")
                for i in range(len(op.input)):
                    minval = min(minval, self._producer[op.input[i]].quantize_info[0].minval)  # noqa
                    maxval = max(maxval, self._producer[op.input[i]].quantize_info[0].maxval)  # noqa
                quantize_info = \
                    self.add_quantize_info(op, minval, maxval)
李寅 已提交
1923
                self._quantize_activation_info[op.output[0]] = quantize_info
1924 1925 1926 1927 1928 1929 1930
                if self._option.change_concat_ranges:
                    for i in range(len(op.input)):
                        producer_op = self._producer[op.input[i]]
                        del producer_op.quantize_info[:]
                        self.copy_quantize_info(producer_op, quantize_info)
                        self._quantize_activation_info[producer_op.output[0]] \
                            = producer_op.quantize_info[0]
李寅 已提交
1931 1932 1933 1934 1935
            elif op.type == MaceOp.Softmax.name:
                del op.quantize_info[:]
                quantize_info = \
                    self.add_quantize_info(op, 0.0, 1.0)
                self._quantize_activation_info[op.output[0]] = quantize_info
B
Bin Li 已提交
1936 1937 1938
            elif (op.type == MaceOp.Eltwise.name
                  and not op.quantize_info
                  and len(op.input) == 2
B
Bin Li 已提交
1939 1940
                  and op.input[0] not in self._consts
                  and op.input[1] not in self._consts):
B
Bin Li 已提交
1941 1942
                producer_op0 = self._producer[op.input[0]]
                producer_op1 = self._producer[op.input[1]]
B
Bin Li 已提交
1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958
                if ConverterUtil.get_arg(
                        op, MaceKeyword.mace_element_type_str).i \
                        == EltwiseType.SUM.value:
                    minval = producer_op0.quantize_info[0].minval \
                        + producer_op1.quantize_info[0].minval
                    maxval = producer_op0.quantize_info[0].maxval \
                        + producer_op1.quantize_info[0].maxval
                elif ConverterUtil.get_arg(
                        op, MaceKeyword.mace_element_type_str).i \
                        == EltwiseType.SUB.value:
                    minval = producer_op0.quantize_info[0].minval \
                        - producer_op1.quantize_info[0].maxval
                    maxval = producer_op0.quantize_info[0].maxval \
                        - producer_op1.quantize_info[0].minval
                else:
                    mace_check(False, "Quantized Elementwise only support:"
B
Bin Li 已提交
1959
                                      " SUM and SUB without ranges now.")
1960 1961
                quantize_info = \
                    self.add_quantize_info(op, minval, maxval)
B
Bin Li 已提交
1962
                self._quantize_activation_info[op.output[0]] = quantize_info
李寅 已提交
1963 1964 1965 1966 1967 1968 1969

        return False

    def check_quantize_info(self):
        if not self._option.quantize:
            return False

B
Bin Li 已提交
1970
        print("Check quantize info")
李寅 已提交
1971 1972 1973 1974 1975 1976 1977
        for op in self._model.op:
            if (op.name.find(MaceKeyword.mace_input_node_name) == -1
                and op.name.find(MaceKeyword.mace_output_node_name) == -1
                and op.type != MaceOp.Quantize.name
                and op.type != MaceOp.Dequantize.name):  # noqa
                mace_check(len(op.output) == len(op.quantize_info),
                           "missing quantize info: %s" % op)
1978 1979 1980 1981 1982
            for i in six.moves.range(len(op.quantize_info)):
                print("Op output %s range: [%f, %f]" % (
                    op.output[i],
                    op.quantize_info[i].minval,
                    op.quantize_info[i].maxval))
1983

Y
yulianfei 已提交
1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027
    def fp16_gather_weight(self):
        for op in self._model.op:
            if op.type != MaceOp.Gather.name:
                continue
            if op.input[0] not in self._consts:
                raise KeyError("Not in const tensor: " + str(op.input[0]))

            const_tensor = self._consts[op.input[0]]
            if const_tensor.data_type == mace_pb2.DT_FLOAT16:
                print(str(const_tensor.name) + " is alreay float16")
                continue

            print("FP16 Embedding Lookup Weights: %s" % const_tensor.name)

            op_outputs = [x for x in op.output]
            new_gather_name = op.name + '_fp16'
            new_gather_output_name = new_gather_name + ":0"
            dehalve_name = op.name

            # fp16 weights
            const_tensor.data_type = mace_pb2.DT_FLOAT16

            # change gather
            op.name = new_gather_name
            op.output[:] = [new_gather_output_name]
            # op.output.extend([new_gather_output_name])
            data_type_arg = ConverterUtil.get_arg(op, MaceKeyword.mace_op_data_type_str)  # noqa
            if data_type_arg is None:
                data_type_arg = op.arg.add()
                data_type_arg.name = MaceKeyword.mace_op_data_type_str
            data_type_arg.i = mace_pb2.DT_FLOAT16

            # add dehalve
            dehalve_op = self._model.op.add()
            dehalve_op.name = dehalve_name
            dehalve_op.type = MaceOp.Cast.name
            dehalve_op.input.extend([new_gather_output_name])
            dehalve_op.output.extend(op_outputs)
            dehalve_op.output_shape.extend(op.output_shape)
            dehalve_op.output_type.extend([mace_pb2.DT_FLOAT])
            data_type_arg = dehalve_op.arg.add()
            data_type_arg.name = MaceKeyword.mace_op_data_type_str
            data_type_arg.i = mace_pb2.DT_FLOAT16

2028 2029 2030 2031
    def fp16_matmul_weight(self):
        if self._option.device != DeviceType.CPU.value:
            return

L
liukai6 已提交
2032
        print('Convert matmul weights to fp16 for specific matmul: activation + weights')  # noqa
2033 2034 2035 2036

        for op in self._model.op:
            if op.type != MaceOp.MatMul.name:
                continue
L
liukai6 已提交
2037
            if op.input[0] not in self._consts and op.input[1] not in self._consts:  # noqa
2038
                continue
L
liukai6 已提交
2039
            if op.input[0] in self._consts and op.input[1] in self._consts:
2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079
                continue

            # Matmul fp16 Op only support fp32[1,k] x fp16[w,k]T or fp16[w,k] x fp32[k,1] now!  # noqa

            transpose_a_arg = ConverterUtil.get_arg(op, MaceKeyword.mace_transpose_a_str)  # noqa
            transpose_b_arg = ConverterUtil.get_arg(op, MaceKeyword.mace_transpose_b_str)  # noqa
            transpose_a = transpose_a_arg is not None and transpose_a_arg.i == 1  # noqa
            transpose_b = transpose_b_arg is not None and transpose_b_arg.i == 1  # noqa

            left_tensor = op.input[0]
            right_tensor = op.input[1]
            left_shape = self.get_tensor_shape(left_tensor)
            right_shape = self.get_tensor_shape(right_tensor)

            height = left_shape[-1] if transpose_a else left_shape[-2]
            width = right_shape[-2] if transpose_b else right_shape[-1]
            batch = reduce(lambda x, y: x * y, left_shape[: -2], 1)

            if batch != 1:
                continue

            if left_tensor in self._consts:
                if width != 1 or transpose_a:
                    continue
                const_tensor = self._consts[left_tensor]
            else:
                if height != 1 or not transpose_b:
                    continue
                const_tensor = self._consts[right_tensor]

            print('Convert Matmul Weights to fp16: %s' % op.name)

            const_tensor.data_type = mace_pb2.DT_FLOAT16
            data_type_arg = ConverterUtil.get_arg(op, MaceKeyword.mace_op_data_type_str)  # noqa
            if data_type_arg is None:
                data_type_arg = op.arg.add()
                data_type_arg.name = MaceKeyword.mace_op_data_type_str
            data_type_arg.i = mace_pb2.DT_FLOAT16
            op.output_type.extend([mace_pb2.DT_FLOAT])

2080 2081 2082 2083 2084 2085 2086 2087 2088
    def add_opencl_informations(self):
        print("Add OpenCL informations")

        net = self._model

        arg = net.arg.add()
        arg.name = MaceKeyword.mace_opencl_mem_type
        arg.i = mace_pb2.GPU_IMAGE if self._option.cl_mem_type == "image"\
            else mace_pb2.GPU_BUFFER
B
Bin Li 已提交
2089

L
luxuhui 已提交
2090
    def transform_reshape_and_flatten(self):
L
lichao18 已提交
2091 2092
        net = self._model
        for op in net.op:
L
luxuhui 已提交
2093 2094 2095 2096 2097
            if op.type != MaceOp.Reshape.name:
                continue
            dim_arg = ConverterUtil.get_arg(op, MaceKeyword.mace_dim_str)
            shape_tensor = None
            if len(op.input) == 1:
L
lichao18 已提交
2098
                print("Transform Caffe Reshape")
L
lichao18 已提交
2099 2100 2101 2102 2103
                dims = []
                axis_arg = ConverterUtil.get_arg(op, MaceKeyword.mace_axis_str)
                # transform caffe reshape op
                if dim_arg:
                    dims = dim_arg.ints
L
lichao18 已提交
2104 2105 2106 2107
                    shape_tensor = net.tensors.add()
                    shape_tensor.name = op.name + '_shape'
                    shape_tensor.dims.append(len(op.output_shape[0].dims))
                    shape_tensor.data_type = mace_pb2.DT_INT32
L
lichao18 已提交
2108 2109 2110
                # transform caffe flatten op
                elif axis_arg is not None:
                    axis = axis_arg.i
L
lichao18 已提交
2111
                    for i in range(0, axis):
L
lichao18 已提交
2112 2113 2114 2115
                        dims.append(0)
                    dims.append(-1)
                    for i in range(axis + 1, len(op.output_shape[0].dims)):
                        dims.append(0)
L
lichao18 已提交
2116 2117 2118 2119
                    shape_tensor = net.tensors.add()
                    shape_tensor.name = op.name + '_shape'
                    shape_tensor.dims.append(len(dims))
                    shape_tensor.data_type = mace_pb2.DT_INT32
L
lichao18 已提交
2120 2121 2122 2123
                else:
                    mace_check(False, "Only support reshape and flatten")
                shape_tensor.int32_data.extend(dims)
                op.input.append(shape_tensor.name)
2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136

    def transform_shape_tensor_to_param(self):
        kOpTypeInputIdxMap = {
            MaceOp.ResizeNearestNeighbor.name: 1,
            MaceOp.Deconv2D.name: 2,
            MaceOp.Reshape.name: 1,
        }
        net = self._model
        for op in net.op:
            if op.type not in kOpTypeInputIdxMap:
                continue
            shape_idx = kOpTypeInputIdxMap[op.type]
            dim_arg = ConverterUtil.get_arg(op, MaceKeyword.mace_dim_str)
L
luxuhui 已提交
2137 2138
            if len(op.input) > shape_idx and dim_arg is None and \
                    op.input[shape_idx] in self._consts:
2139
                shape_tensor = self._consts[op.input[shape_idx]]
L
luxuhui 已提交
2140 2141 2142
                dim_arg = op.arg.add()
                dim_arg.name = MaceKeyword.mace_dim_str
                dim_arg.ints.extend(shape_tensor.int32_data)
Y
yejianwu 已提交
2143 2144 2145 2146 2147

    def fold_fc_reshape(self):
        net = self._model
        for op in net.op:
            # whether to reshape fc output(default 4D)
L
liutuo 已提交
2148 2149
            if op.type == MaceOp.FullyConnected.name and\
                    op.output[0] in self._consumers:
Y
yejianwu 已提交
2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162
                consumers = self._consumers[op.output[0]]
                op_output_shape = op.output_shape[0].dims[:]
                for consumer in consumers:
                    if consumer.type == MaceOp.Reshape.name and \
                            consumer.input[1] in self._consts and \
                            self._consts[consumer.input[1]].int32_data[:] == \
                            [op_output_shape[0], 1, 1, op_output_shape[1]]:
                        # work for tensorflow
                        net.tensors.remove(self._consts[consumer.input[1]])
                        del consumer.input[1]
                        self.safe_remove_node(consumer, None)
                        return True
        return False
李寅 已提交
2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204

    def transform_channel_shuffle(self):
        net = self._model
        for op in net.op:
            if op.type == MaceOp.Transpose.name and \
                    len(op.output_shape[0].dims) == 5:
                perm = ConverterUtil.get_arg(op,
                                             MaceKeyword.mace_dims_str).ints
                if [0, 1, 2, 4, 3] == list(perm):
                    # Remove the following Reshape op
                    reshape_op = self._consumers.get(op.output[0], None)
                    if (reshape_op and
                            len(reshape_op) == 1 and
                            reshape_op[0].type == MaceOp.Reshape.name and
                            len(reshape_op[0].output_shape[0].dims) == 4):
                        print("Transform channel shuffle")
                        output_shape = reshape_op[0].output_shape[0].dims
                        self.safe_remove_node(reshape_op[0], op,
                                              remove_input_tensor=True)
                    else:
                        return False

                    # Change Transpose op to ChannelShuffle
                    op.type = MaceOp.ChannelShuffle.name
                    del op.arg[:]
                    group_arg = op.arg.add()
                    group_arg.name = MaceKeyword.mace_group_str
                    group_arg.i = op.output_shape[0].dims[4]
                    op.output_shape[0].dims[:] = output_shape

                    # Remove previous Reshape op
                    producer_op = self._producer.get(op.input[0], None)
                    if producer_op:
                        if producer_op.type == MaceOp.Reshape.name:
                            self.safe_remove_node(producer_op, None)
                        elif producer_op.type == MaceOp.Stack.name:
                            print("Change channel shuffle stack to concat")
                            # Change previous Stack op to Concat if any
                            producer_op.type = MaceOp.Concat.name
                            producer_op.output_shape[0].dims[:] = output_shape

                    return True
2205

2206
    def quantize_specific_ops_only(self):
2207 2208 2209 2210
        """
        This transform rule is only used internally, we are not gonna make
        things too complex for users
        """
2211 2212 2213 2214 2215
        to_quantize_ops_output_type = {
            MaceOp.MatMul.name: mace_pb2.DT_INT32,
            MaceOp.Gather.name: mace_pb2.DT_UINT8,
        }

2216
        for op in self._model.op:
2217 2218
            if (op.type not in to_quantize_ops_output_type
                    or len(op.output) > 1
2219 2220 2221 2222 2223 2224
                    or ConverterUtil.get_arg(op,
                                             MaceKeyword.mace_op_data_type_str).i != mace_pb2.DT_FLOAT):  # noqa
                # only support single output
                continue

            quantized_inputs_names = []
L
liyin 已提交
2225

2226
            should_quantize = False
L
liyin 已提交
2227 2228 2229 2230 2231 2232 2233 2234
            has_const = False
            for idx, input_tensor in enumerate(op.input):
                if input_tensor in self._consts:
                    has_const = True
                    break
            if not has_const:
                continue

2235 2236
            for idx, input_tensor in enumerate(op.input):
                if self.get_tensor_data_type(input_tensor) \
2237 2238
                        == mace_pb2.DT_FLOAT:
                    should_quantize = True
2239 2240 2241
                    break
            if not should_quantize:
                continue
2242 2243
            else:
                print("Quantize op %s (%s)" % (op.name, op.type))
2244

L
liyin 已提交
2245 2246
            non_zero = self._option.device == DeviceType.CPU.value \
                and op.type == MaceOp.MatMul.name
2247 2248 2249 2250

            for idx, input_tensor in enumerate(op.input):
                quantized_inputs_names.append(input_tensor)

2251 2252 2253 2254
                if self.get_tensor_data_type(input_tensor) \
                        != mace_pb2.DT_FLOAT:
                    continue

2255 2256 2257
                if input_tensor in self._consts:
                    const_tensor = self._consts[input_tensor]
                    quantized_tensor = quantize_util.quantize(
B
Bin Li 已提交
2258
                        const_tensor.float_data, self._option.device, non_zero)
2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281
                    del const_tensor.float_data[:]
                    const_tensor.int32_data.extend(quantized_tensor.data)
                    const_tensor.data_type = mace_pb2.DT_UINT8
                    const_tensor.scale = quantized_tensor.scale
                    const_tensor.zero_point = quantized_tensor.zero
                    const_tensor.minval = quantized_tensor.minval
                    const_tensor.maxval = quantized_tensor.maxval
                    const_tensor.quantized = True
                else:
                    input_shape = self.get_tensor_shape(input_tensor)
                    quantize_op = self._model.op.add()
                    quantize_op.name = self.normalize_op_name(
                        input_tensor) + "_quant"
                    quantize_op.type = MaceOp.Quantize.name
                    quantize_op.input.extend([input_tensor])
                    quantize_output_name = quantize_op.name + '_0'
                    quantize_op.output.extend([quantize_output_name])
                    output_shape = quantize_op.output_shape.add()
                    output_shape.dims.extend(input_shape)
                    quantize_op.output_type.extend([mace_pb2.DT_UINT8])
                    data_type_arg = quantize_op.arg.add()
                    data_type_arg.name = MaceKeyword.mace_op_data_type_str
                    data_type_arg.i = mace_pb2.DT_UINT8
2282 2283 2284
                    ConverterUtil.add_data_format_arg(
                        quantize_op,
                        self.get_tensor_data_format(input_tensor))
2285 2286 2287

                    data_type_arg = quantize_op.arg.add()
                    data_type_arg.name = MaceKeyword.mace_non_zero
L
liyin 已提交
2288
                    data_type_arg.i = 0
2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299

                    find_range_arg = quantize_op.arg.add()
                    find_range_arg.name = \
                        MaceKeyword.mace_find_range_every_time
                    find_range_arg.i = 1

                    quantized_inputs_names[-1] = quantize_output_name

            del op.input[:]
            op.input.extend(quantized_inputs_names)

2300 2301
            original_output_name = op.output[0]
            op.output[0] = original_output_name + "_quant"
2302
            op.output_type.extend([to_quantize_ops_output_type[op.type]])
2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313
            data_type_arg = ConverterUtil.get_arg(op,
                                                  MaceKeyword.mace_op_data_type_str)  # noqa
            if data_type_arg is None:
                data_type_arg = op.arg.add()
                data_type_arg.name = MaceKeyword.mace_op_data_type_str
            data_type_arg.i = mace_pb2.DT_UINT8

            dequantize_op = self._model.op.add()
            dequantize_op.name = op.name + "_dequant"
            dequantize_op.type = MaceOp.Dequantize.name
            dequantize_op.input.extend([op.output[0]])
2314
            dequantize_op.output.extend([original_output_name])
2315 2316 2317 2318
            dequantize_op.output_shape.extend(op.output_shape)
            dequantize_op.output_type.extend([mace_pb2.DT_FLOAT])
            data_type_arg = dequantize_op.arg.add()
            data_type_arg.name = MaceKeyword.mace_op_data_type_str
2319
            data_type_arg.i = to_quantize_ops_output_type[op.type]
2320 2321 2322
            ConverterUtil.add_data_format_arg(
                dequantize_op,
                self.get_tensor_data_format(original_output_name))
2323 2324 2325 2326 2327 2328 2329 2330 2331 2332
            quantize_flag_arg = ConverterUtil.get_arg(self._model,
                                                      MaceKeyword.mace_quantize_flag_arg_str)  # noqa
            if quantize_flag_arg is None:
                quantize_flag_arg = self._model.arg.add()
                quantize_flag_arg.name = MaceKeyword.mace_quantize_flag_arg_str
                quantize_flag_arg.i = 1

            return True

        return False