transformer.py 105.2 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

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 52 53
            TransformerRule.REMOVE_IDENTITY_OP: self.remove_identity_op,
            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,
100
            TransformerRule.TRANSPOSE_DATA_FORMAT: self.transpose_data_format,
李寅 已提交
101 102
            TransformerRule.CHECK_QUANTIZE_INFO:
                self.check_quantize_info,
L
lichao18 已提交
103 104
            TransformerRule.TRANSPOSE_CAFFE_RESHAPE_AND_FLATTEN:
                self.transform_caffe_reshape_and_flatten,
李寅 已提交
105 106
            TransformerRule.TRANSFORM_CHANNEL_SHUFFLE:
                self.transform_channel_shuffle,
107 108
            TransformerRule.QUANTIZE_SPECIFIC_OPS_ONLY:
                self.quantize_specific_ops_only,
109 110
            TransformerRule.FP16_MATMUL_WEIGHT:
                self.fp16_matmul_weight,
Y
yulianfei 已提交
111 112
            TransformerRule.FP16_GATHER_WEIGHT:
                self.fp16_gather_weight,
B
Bin Li 已提交
113 114
            TransformerRule.QUANTIZE_LARGE_WEIGHTS:
                self.quantize_large_weights,
115
        }
116 117 118

        self._option = option
        self._model = model
119
        self._wino_arg = self._option.winograd
120 121 122 123 124

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

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

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

B
Bin Li 已提交
142 143 144 145 146 147 148 149 150 151 152 153
    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

154 155 156 157
    def filter_format(self):
        filter_format_value = ConverterUtil.get_arg(self._model,
                                                    MaceKeyword.mace_filter_format_str).i  # noqa
        filter_format = None
158 159 160 161 162 163
        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
164 165 166 167 168 169 170 171 172 173 174
        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

175
    def construct_ops_and_consumers(self, key):
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
        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
191 192 193 194 195 196 197 198 199 200 201
        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"
202 203
                    data_type_arg = op.arg.add()
                    data_type_arg.name = MaceKeyword.mace_op_data_type_str
204
                    data_type_arg.i = input_node.data_type
205 206 207
                    op.output.extend([input_node.name])
                    output_shape = op.output_shape.add()
                    output_shape.dims.extend(input_node.shape)
208
                    if input_node.data_format != DataFormat.NONE:
209
                        if input_node.data_format == DataFormat.NCHW:
210 211
                            self.transpose_shape(output_shape.dims,
                                                 [0, 3, 1, 2])
212
                        ConverterUtil.add_data_format_arg(op,
213
                                                          DataFormat.AUTO)
214 215
                    else:
                        ConverterUtil.add_data_format_arg(op,
216
                                                          DataFormat.NONE)
217
                    self._producer[op.output[0]] = op
218 219 220

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

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

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

李寅 已提交
236
    def get_tensor_shape(self, tensor):
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
        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
李寅 已提交
263

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

271 272 273 274 275 276 277 278 279 280 281 282
    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 已提交
283
    def safe_remove_node(self, op, replace_op, remove_input_tensor=False):
李寅 已提交
284 285 286 287 288 289 290 291 292 293
        """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"
李寅 已提交
294
                       " and input/output length > 1\n" + str(op))
李寅 已提交
295 296 297 298 299 300 301 302 303 304 305

            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)")

306
            for i in six.moves.range(len(op.output)):
李寅 已提交
307 308 309 310 311 312 313
                for consumer_op in self._consumers.get(op.output[i], []):
                    self.replace(consumer_op.input,
                                 op.output[i],
                                 replace_op.output[i])

            # if the op is output node, change replace_op output name to the op
            # output name
314
            for i in six.moves.range(len(op.output)):
李寅 已提交
315 316 317 318 319 320 321 322
                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]

L
liuqi 已提交
323 324 325 326 327 328
        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)

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

331 332 333 334 335
    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
336
            input_info.data_format = input_node.data_format.value
337
            input_info.dims.extend(input_node.shape)
L
liuqi 已提交
338
            input_info.data_type = input_node.data_type
339

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

        return False

351 352 353 354 355
    def remove_identity_op(self):
        net = self._model
        for op in net.op:
            if op.type == 'Identity':
                print("Remove identity: %s(%s)" % (op.name, op.type))
李寅 已提交
356 357
                self.safe_remove_node(op,
                                      self._producer.get(op.input[0], None))
358
                return True
叶剑武 已提交
359 360 361 362 363 364 365
            if op.type == 'Reshape' and \
                    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
366 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

        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 \
396 397
                    and op.output_shape[0].dims[-1:] == \
                    self._consts[op.input[1]].dims \
398 399 400 401 402
                    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(
403
                        consumer_op, MaceKeyword.mace_element_type_str).i
404 405 406 407 408 409
                        == 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))
410
                    consumer_op.type = MaceOp.BatchNorm.name
李寅 已提交
411 412
                    consumer_op.input[:] = [op.input[0], op.input[1],
                                            consumer_op.input[1]]
413
                    net.op.remove(op)
414 415 416
                    return True
        return False

417 418 419 420
    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 已提交
421
                elt_type = ConverterUtil.get_arg(
422 423
                    op,
                    MaceKeyword.mace_element_type_str).i
L
liutuo 已提交
424
                if elt_type == EltwiseType.SQR_DIFF.value and\
425 426
                        self.consumer_count(op.output[0]) == 1:
                    consumer_op = self._consumers[op.output[0]][0]
L
liutuo 已提交
427 428 429 430 431 432 433 434 435 436
                    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 已提交
437
                        if reduce_type == ReduceType.MEAN.value and\
L
liutuo 已提交
438 439 440 441 442 443 444 445 446
                                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
447 448 449

        return False

李寅 已提交
450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466
    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 已提交
467
                    gather_weights.float_data[:] = [float_data * mul_weight for float_data in gather_weights.float_data]  # noqa
李寅 已提交
468 469 470
                    self.safe_remove_node(consumer_op, None,
                                          remove_input_tensor=True)

Y
yejianwu 已提交
471 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
    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

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

653 654 655 656 657 658 659 660
                    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]])
661

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

668 669 670 671
                    return True

        return False

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

716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731
                    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 已提交
732

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

L
liutuo 已提交
738 739 740 741
                    return True

        return False

742 743 744 745 746 747
    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]
748
                input_len = len(op.input)
749 750 751
                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):
752 753 754 755
                    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]]
756
                    offset = self._consts[consumer_op.input[2]]
757 758 759
                    idx = 0

                    filter_format = self.filter_format()
760
                    if filter_format == DataFormat.HWIO:
761 762 763 764
                        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]):
765
                                    filter.float_data[idx] *= scale.float_data[
766
                                                        i * filter.dims[3] + o]
767
                                    idx += 1
768
                    elif filter_format == DataFormat.OIHW:
769 770 771 772
                        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]):
773 774 775 776 777 778 779
                                    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)

780 781 782 783 784 785 786 787
                    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]])
788

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

795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815
                    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"""
816
        if filter_format == DataFormat.HWIO:
817 818 819 820
            filter_height = filter_shape[0]
            filter_width = filter_shape[1]
            in_channels = filter_shape[2]
            out_channels = filter_shape[3]
821
        elif filter_format == DataFormat.OIHW:
822 823 824 825
            filter_height = filter_shape[2]
            filter_width = filter_shape[3]
            in_channels = filter_shape[1]
            out_channels = filter_shape[0]
826
        elif filter_format == DataFormat.HWOI:
827 828 829 830 831 832 833 834 835 836 837
            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:
李寅 已提交
838 839 840 841 842
            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):
843 844 845 846 847 848
                print("Transform add to biasadd: %s(%s)" % (op.name, op.type))
                op.type = MaceOp.BiasAdd.name
                return True

        return False

李寅 已提交
849 850 851 852
    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 已提交
853 854 855
            for i in range(len(op.quantize_info)):
                self._quantize_activation_info[op.output[i]] = \
                    op.quantize_info[i]
李寅 已提交
856

857 858 859
    def fold_biasadd(self):
        net = self._model
        for op in net.op:
860 861 862 863
            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 已提交
864 865 866 867 868 869 870 871 872 873 874
                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)))) \
875 876 877 878
                    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 已提交
879 880
                    op.name = consumer_op.name
                    op.output[0] = consumer_op.output[0]
881
                    op.input.append(consumer_op.input[1])
李寅 已提交
882
                    self.replace_quantize_info(op, consumer_op)
李寅 已提交
883
                    self.safe_remove_node(consumer_op, op)
884 885 886 887
                    return True

        return False

888
    def flatten_atrous_conv(self):
889 890
        if self._option.device != DeviceType.GPU.value \
               and self._option.device != DeviceType.APU.value:
891 892 893 894 895 896 897 898 899 900 901 902
            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:
903
                        six.print_("Flatten atrous convolution")
904 905 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 944 945 946 947
                        # 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[:]

                        self.safe_remove_node(op, None)
                        self.safe_remove_node(b2s_op, conv_op)
                        return True
        return False

948 949 950 951 952 953 954
    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
955
                or op.type == MaceOp.BatchNorm.name) \
956 957 958 959 960 961 962 963 964 965 966
                    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 已提交
967 968 969
                                or arg.name == \
                                    MaceKeyword.mace_activation_max_limit_str \
                                or arg.name == MaceKeyword.mace_activation_leakyrelu_coefficient_str:  # noqa
970 971
                            op.arg.extend([arg])

李寅 已提交
972
                    self.replace_quantize_info(op, consumer_op)
李寅 已提交
973
                    self.safe_remove_node(consumer_op, op)
974 975 976 977
                    return True

        return False

978 979 980 981 982 983 984 985 986
    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:
987 988 989
            if op.type == MaceOp.Conv2D.name \
                    and len(op.input) >= 2 \
                    and op.input[1] in self._consts:
990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025
                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 \
                        and zero_padding:
                    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 已提交
1026
                    print("Reshape fully connected weight shape")
1027 1028 1029 1030
                    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:
1031
                        if filter_format == DataFormat.HWIO:
1032
                            weight.dims[:] = [1, 1] + weight.dims[:]
1033
                        elif filter_format == DataFormat.OIHW:
1034 1035
                            weight.dims[:] = weight.dims[:] + [1, 1]
                        else:
L
liuqi 已提交
1036 1037
                            mace_check(False,
                                       "FC does not support filter format %s" %
1038 1039 1040
                                       filter_format.name)
        return False

1041 1042 1043 1044
    def add_winograd_arg(self):
        if self._wino_arg == 0:
            return False
        net = self._model
李寅 已提交
1045

1046 1047 1048 1049 1050
        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
李寅 已提交
1051

1052 1053
        return False

1054 1055 1056 1057
    def transpose_matmul_weight(self):
        if self._option.device != DeviceType.CPU.value:
            return False
        net = self._model
1058
        transposed_weights = []
1059 1060
        for op in net.op:
            if op.type == MaceOp.MatMul.name:  # noqa
1061 1062 1063
                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 已提交
1064
                    # six.print_("Transpose matmul weight %s" % rhs)
1065 1066 1067 1068 1069 1070
                    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
1071 1072 1073 1074 1075 1076 1077 1078 1079 1080
                        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)
1081

1082 1083 1084
    def transpose_filters(self):
        net = self._model
        filter_format = self.filter_format()
1085
        transposed_filter = set()
L
liutuo 已提交
1086
        transposed_deconv_filter = set()
1087

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

1100
            for op in net.op:
L
liutuo 已提交
1101
                if (op.type == MaceOp.Conv2D.name or
1102 1103 1104
                    op.type == MaceOp.Deconv2D.name or
                    (op.type == MaceOp.DepthwiseConv2d.name and
                     self._option.device == DeviceType.APU.value)) and\
L
liutuo 已提交
1105
                        op.input[1] not in transposed_filter:
1106 1107 1108
                    filter = self._consts[op.input[1]]
                    filter_data = np.array(filter.float_data).reshape(
                        filter.dims)
1109
                    filter_data = filter_data.transpose(transpose_order)
1110 1111
                    filter.float_data[:] = filter_data.flat
                    filter.dims[:] = filter_data.shape
1112
                    transposed_filter.add(op.input[1])
L
liutuo 已提交
1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123
            # 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])
1124

1125
            self.set_filter_format(DataFormat.OHWI)
B
Bin Li 已提交
1126
        elif self._option.quantize and \
B
Bin Li 已提交
1127 1128
                (self._option.device == DeviceType.HEXAGON.value or
                 self._option.device == DeviceType.HTA.value):
B
Bin Li 已提交
1129
            print("Transpose filters to HWIO/HWIM")
1130
            mace_check(filter_format == DataFormat.HWIO,
B
Bin Li 已提交
1131
                       "HEXAGON only support HWIO/HWIM filter format.")
1132 1133
        else:
            # transpose filter to OIHW/MIHW for tensorflow (HWIO/HWIM)
1134
            if filter_format == DataFormat.HWIO:
1135
                for op in net.op:
1136 1137 1138
                    if (op.type == MaceOp.Conv2D.name
                            or op.type == MaceOp.Deconv2D.name
                            or op.type == MaceOp.DepthwiseConv2d.name) \
1139
                            and op.input[1] in self._consts \
1140
                            and op.input[1] not in transposed_filter:
L
liutuo 已提交
1141
                        print("Transpose Conv2D/Deconv2D filters to OIHW/MIHW")
1142 1143 1144 1145 1146 1147
                        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
1148
                        transposed_filter.add(op.input[1])
L
liutuo 已提交
1149 1150 1151 1152 1153
                    if (op.type == MaceOp.MatMul.name and
                            (ConverterUtil.get_arg(
                                op,
                                MaceKeyword.mace_winograd_filter_transformed)
                                 is not None)  # noqa
1154
                            and op.input[1] not in transposed_filter):
L
liutuo 已提交
1155
                        print("Transpose Winograd filters to OIHW/MIHW")
1156 1157 1158 1159 1160 1161
                        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
1162 1163 1164
                        transposed_filter.add(op.input[0])
                    if op.type == MaceOp.FullyConnected.name \
                            and op.input[1] not in transposed_filter:
1165 1166
                        weight = self._consts[op.input[1]]
                        if len(weight.dims) == 4:
L
liutuo 已提交
1167 1168
                            print("Transpose FullyConnected filters to"
                                  " OIHW/MIHW")
1169 1170 1171 1172 1173
                            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
1174
                            transposed_filter.add(op.input[1])
1175

1176
                self.set_filter_format(DataFormat.OIHW)
L
liutuo 已提交
1177
            # deconv's filter's output channel and input channel is reversed
1178
            for op in net.op:
L
liutuo 已提交
1179 1180
                if op.type in [MaceOp.Deconv2D.name,
                               MaceOp.DepthwiseDeconv2d] \
L
liutuo 已提交
1181
                        and op.input[1] not in transposed_deconv_filter:
1182
                    filter = self._consts[op.input[1]]
1183 1184
                    filter_data = np.array(filter.float_data).reshape(
                        filter.dims)
1185
                    filter_data = filter_data.transpose(1, 0, 2, 3)
1186 1187
                    filter.float_data[:] = filter_data.flat
                    filter.dims[:] = filter_data.shape
L
liutuo 已提交
1188
                    transposed_deconv_filter.add(op.input[1])
1189 1190 1191

        return False

李寅 已提交
1192
    def fold_reshape(self):
1193 1194
        net = self._model
        for op in net.op:
1195 1196
            if op.type == MaceOp.Softmax.name:
                # see if possible to fold
1197
                # Reshape(xd->2d) + Softmax(2d) [+ Reshape(xd)] to Softmax(xd)
1198 1199 1200 1201
                should_fold = False
                if op.input[0] in self._producer \
                        and self._producer[op.input[0]].type \
                        == MaceOp.Reshape.name \
1202
                        and len(op.output_shape[0].dims) == 2:
L
liutuo 已提交
1203 1204 1205 1206 1207
                    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
1208 1209 1210 1211 1212

                if should_fold:
                    print(
                        "Fold reshape and softmax: %s(%s)"
                        % (op.name, op.type))
1213
                    producer = self._producer[op.input[0]]
1214 1215 1216
                    op.output_shape[0].dims[:] = self.get_tensor_shape(
                        producer.input[0])

1217 1218 1219
                    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 已提交
1220 1221 1222 1223 1224 1225 1226
                        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)
1227 1228 1229
                        # remove consumer reshape
                        self.safe_remove_node(consumer, op,
                                              remove_input_tensor=True)
1230 1231 1232
                    # remove producer reshape
                    self.safe_remove_node(producer,
                                          self._producer.get(producer.input[0],
L
liuqi 已提交
1233 1234
                                                             None),
                                          remove_input_tensor=True)
1235

1236
                    return True
1237 1238
        return False

Y
yejianwu 已提交
1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250
    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

李寅 已提交
1251 1252
    def transform_matmul_to_fc(self):
        net = self._model
L
liuqi 已提交
1253
        filter_format = self.filter_format()
李寅 已提交
1254
        for op in net.op:
Y
yejianwu 已提交
1255 1256
            # transform `input(4D) -> reshape(2D) -> matmul` to `fc(2D)`
            # fc output is 2D in transformer, using as 4D in op kernel
L
liuqi 已提交
1257
            # work for TensorFlow
L
liuqi 已提交
1258
            if op.type == MaceOp.Reshape.name and \
L
lichao18 已提交
1259
                    len(op.input) == 2 and \
L
liuqi 已提交
1260 1261
                    op.input[1] in self._consts and \
                    len(op.output_shape[0].dims) == 2 and \
1262
                    filter_format == DataFormat.HWIO and \
李寅 已提交
1263
                    op.input[0] in self._producer:
L
liuqi 已提交
1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280
                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:
1281
                        print('convert reshape and matmul to fc')
L
liuqi 已提交
1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292
                        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 已提交
1293 1294
            # transform `fc1(2D) -> matmul` to `fc1(2D) -> fc1(2D)`
            if op.type == MaceOp.MatMul.name and \
1295
                    filter_format == DataFormat.HWIO and \
Y
yejianwu 已提交
1296
                    op.input[1] in self._consts:
Y
yejianwu 已提交
1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308
                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

李寅 已提交
1309 1310
        return False

1311 1312 1313
    def update_float_op_data_type(self):
        print("update op with float data type")
        net = self._model
1314
        data_type = self._option.data_type
1315 1316 1317 1318 1319
        net.data_type = data_type

        if self._option.quantize:
            return

1320 1321 1322 1323 1324 1325
        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
1326 1327
                data_type_arg.i = data_type
            elif data_type_arg.i != data_type \
L
liuqi 已提交
1328
                    and data_type_arg.i == mace_pb2.DT_FLOAT:
1329
                data_type_arg.i = data_type
1330 1331 1332

        return False

1333
    def sort_dfs(self, op, visited, sorted_nodes):
1334 1335
        if op.name in visited:
            return
1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351
        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 = []

B
Bin Li 已提交
1352
        output_nodes = self._option.check_nodes.keys()
B
Bin Li 已提交
1353
        if not self._quantize_activation_info:
B
Bin Li 已提交
1354
            output_nodes.extend(self._option.output_nodes)
B
Bin Li 已提交
1355
        for output_node in output_nodes:
1356 1357 1358
            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)
1359 1360 1361

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

        print("Final ops:")
B
Bin Li 已提交
1364
        index = 0
李寅 已提交
1365
        for op in net.op:
B
Bin Li 已提交
1366 1367 1368 1369 1370 1371
            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, [
李寅 已提交
1372
                out_shape.dims for out_shape in op.output_shape]))
1373
        return False
李寅 已提交
1374

1375
    def update_data_format(self):
1376
        print("update data format")
1377 1378
        net = self._model
        for op in net.op:
1379
            df_arg = ConverterUtil.get_arg(
1380
                op, MaceKeyword.mace_data_format_str)
1381 1382 1383
            if not df_arg:
                df_arg = op.arg.add()
                df_arg.name = MaceKeyword.mace_data_format_str
1384
            if op.type in MaceFixedDataFormatOps:
1385
                df_arg.i = DataFormat.AUTO.value
1386
            elif op.type in MaceTransposableDataFormatOps:
1387
                input_df = DataFormat.AUTO.value
1388 1389 1390
                for input_tensor in op.input:
                    if input_tensor in self._consts:
                        continue
1391 1392 1393
                    mace_check(
                        input_tensor in self._producer,
                        "Input tensor %s not in producer" % input_tensor)
1394 1395 1396
                    father_op = self._producer[input_tensor]
                    temp_input_df = ConverterUtil.get_arg(
                        father_op, MaceKeyword.mace_data_format_str)
1397
                    if temp_input_df.i != DataFormat.AUTO.value:
1398
                        input_df = temp_input_df.i
1399
                if input_df == DataFormat.AUTO.value:
1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414
                    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) == \
1415
                              DataFormat.AUTO
1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451
            # 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

                        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

Y
yejianwu 已提交
1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463
            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]

1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504
            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])

            # 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])

1505 1506
        return False

李寅 已提交
1507
    def quantize_nodes(self):
李寅 已提交
1508 1509 1510
        if not self._option.quantize:
            return False

李寅 已提交
1511 1512 1513
        print("Add mace quantize and dequantize nodes")

        for op in self._model.op:
1514
            for i in range(len(op.input)):
B
Bin Li 已提交
1515 1516
                if op.input[i] in self.input_name_map:
                    op.input[i] = self.input_name_map[op.input[i]]
1517
            for i in range(len(op.output)):
B
Bin Li 已提交
1518
                if op.output[i] in self.output_name_map:
B
Bin Li 已提交
1519 1520
                    op.name = MaceKeyword.mace_output_node_name \
                              + '_' + op.name
B
Bin Li 已提交
1521
                    new_output_name = self.output_name_map[op.output[i]]
B
Bin Li 已提交
1522 1523
                    self._quantize_activation_info[new_output_name] = \
                        self._quantize_activation_info[op.output[i]]
1524 1525 1526 1527 1528
                    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 已提交
1529
                    op.output[i] = new_output_name
1530

李寅 已提交
1531 1532 1533 1534 1535 1536
            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
1537 1538 1539 1540 1541
            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))
李寅 已提交
1542
            else:
1543
                mace_check(op.type == MaceOp.Quantize.name,
李寅 已提交
1544
                           "Quantization only support float ops, "
B
Bin Li 已提交
1545 1546 1547
                           "but get %s(%s, %s)"
                           % (op.name, op.type,
                              mace_pb2.DataType.Name(data_type_arg.i)))
李寅 已提交
1548

B
Bin Li 已提交
1549
        for i, input_node in enumerate(self._option.input_nodes.values()):
B
Bin Li 已提交
1550
            new_input_name = self.input_name_map[input_node.name]
李寅 已提交
1551
            op_def = self._model.op.add()
B
Bin Li 已提交
1552
            op_def.name = self.normalize_op_name(new_input_name)
李寅 已提交
1553
            op_def.type = MaceOp.Quantize.name
1554
            op_def.input.extend([input_node.name])
B
Bin Li 已提交
1555
            op_def.output.extend([new_input_name])
李寅 已提交
1556 1557
            output_shape = op_def.output_shape.add()
            output_shape.dims.extend(input_node.shape)
B
Bin Li 已提交
1558 1559 1560 1561
            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
李寅 已提交
1562 1563

            ConverterUtil.add_data_type_arg(op_def, mace_pb2.DT_UINT8)
1564
            ConverterUtil.add_data_format_arg(op_def, input_node.data_format)
B
Bin Li 已提交
1565 1566 1567 1568 1569
            # 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
李寅 已提交
1570

B
Bin Li 已提交
1571
        output_nodes = self._option.check_nodes.values()
B
Bin Li 已提交
1572
        for i, output_node in enumerate(output_nodes):
李寅 已提交
1573
            op_def = self._model.op.add()
B
Bin Li 已提交
1574
            op_def.name = self.normalize_op_name(output_node.name)
李寅 已提交
1575
            op_def.type = MaceOp.Dequantize.name
B
Bin Li 已提交
1576
            op_def.input.extend([self.output_name_map[output_node.name]])
1577
            op_def.output.extend([output_node.name])
李寅 已提交
1578
            output_shape = op_def.output_shape.add()
B
Bin Li 已提交
1579 1580
            producer_op = self._producer[output_node.name]
            output_shape.dims.extend(producer_op.output_shape[0].dims)
李寅 已提交
1581
            op_def.output_type.extend([mace_pb2.DT_FLOAT])
B
Bin Li 已提交
1582 1583 1584
            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
李寅 已提交
1585 1586

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

1589 1590 1591
        quantize_flag_arg = self._model.arg.add()
        quantize_flag_arg.name = MaceKeyword.mace_quantize_flag_arg_str
        quantize_flag_arg.i = 1
李寅 已提交
1592

李寅 已提交
1593
        return False
李寅 已提交
1594 1595 1596 1597 1598

    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 已提交
1599 1600 1601
            check_conv = False
            check_deconv = False
            if ops is not None and len(ops) == 1:
L
liutuo 已提交
1602 1603 1604 1605 1606 1607
                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 已提交
1608
                # in tensorflow deconv's bias is the forth input
L
liutuo 已提交
1609 1610
                if ops[0].type in [MaceOp.Deconv2D.name,
                                   MaceOp.DepthwiseDeconv2d]:
L
liutuo 已提交
1611 1612 1613 1614
                    from_caffe = ConverterUtil.get_arg(
                        ops[0],
                        MaceKeyword.mace_framework_type_str).i ==\
                                 FrameworkType.CAFFE.value
L
liutuo 已提交
1615 1616
                    if from_caffe and len(ops[0].input) >= 3:
                        check_deconv = ops[0].input[2] == tensor.name
L
liutuo 已提交
1617
                    else:
L
liutuo 已提交
1618 1619
                        if len(ops[0].input) >= 4:
                            check_deconv = ops[0].input[3] == tensor.name
L
liutuo 已提交
1620
            if check_conv or check_deconv:
1621 1622
                if self._option.device == DeviceType.CPU.value \
                       or self._option.device == DeviceType.APU.value:
B
Bin Li 已提交
1623 1624 1625 1626 1627 1628 1629 1630 1631 1632
                    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 已提交
1633 1634
                elif self._option.device == DeviceType.HEXAGON.value or \
                        self._option.device == DeviceType.HTA.value:
B
Bin Li 已提交
1635 1636 1637 1638 1639
                    quantized_tensor = \
                        quantize_util.quantize_bias_for_hexagon(
                            tensor.float_data)
                else:
                    mace_check(False, "wrong device.")
李寅 已提交
1640 1641
                tensor.data_type = mace_pb2.DT_INT32
            else:
1642 1643
                non_zero = self._option.device == DeviceType.CPU.value
                quantized_tensor = quantize_util.quantize(tensor.float_data,
B
Bin Li 已提交
1644
                                                          self._option.device,
1645
                                                          non_zero)
李寅 已提交
1646 1647 1648 1649 1650 1651
                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 已提交
1652 1653
            tensor.minval = quantized_tensor.minval
            tensor.maxval = quantized_tensor.maxval
李寅 已提交
1654
            tensor.quantized = True
李寅 已提交
1655 1656
            self._quantized_tensor.update([tensor.name])

李寅 已提交
1657 1658
        return False

李寅 已提交
1659 1660 1661 1662 1663
    def quantize_weights(self):
        print("Quantize weights")
        net = self._model
        for tensor in net.tensors:
            self.quantize_tensor(tensor)
李寅 已提交
1664 1665 1666

        return False

B
Bin Li 已提交
1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695
    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

李寅 已提交
1696
    def add_quantize_info(self, op, minval, maxval):
B
Bin Li 已提交
1697
        scale, zero, minval, maxval = \
B
Bin Li 已提交
1698 1699
            quantize_util.adjust_range(minval, maxval, self._option.device,
                                       non_zero=False)
李寅 已提交
1700 1701 1702 1703 1704 1705 1706 1707
        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

1708 1709 1710 1711 1712 1713 1714
    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

李寅 已提交
1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726
    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:
1727 1728
            if op.type == 'FakeQuantWithMinMaxVars' or \
                   op.type == 'FakeQuantWithMinMaxArgs':
李寅 已提交
1729 1730 1731 1732 1733 1734
                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
1735 1736
                # for add -> fakequant pattern
                self._quantize_activation_info[op.output[0]] = quantize_info
1737 1738

                print(op.input[0], op.output[0])
李寅 已提交
1739 1740 1741 1742
                op.type = MaceOp.Identity.name

        return False

B
Bin Li 已提交
1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792
    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

李寅 已提交
1793 1794 1795 1796
    def add_quantize_tensor_range(self):
        # Quantize info from range statistics
        range_file = self._option.quantize_range_file
        if range_file:
李寅 已提交
1797
            print("Add quantize tensor range")
李寅 已提交
1798 1799
            with open(range_file) as f:
                for line in f:
1800
                    tensor_name, minmax = line.split("@@")[:2]
李寅 已提交
1801 1802
                    min_val, max_val = [float(i) for i in
                                        minmax.strip().split(",")]
B
Bin Li 已提交
1803
                    scale, zero, min_val, max_val = \
B
Bin Li 已提交
1804 1805 1806
                        quantize_util.adjust_range(min_val, max_val,
                                                   self._option.device,
                                                   non_zero=False)
李寅 已提交
1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820
                    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 已提交
1821 1822
                    op.quantize_info.extend([
                        self._quantize_activation_info[output]])
李寅 已提交
1823

1824 1825
        if not self._option.quantize:
            return False
B
Bin Li 已提交
1826 1827

        print("Add default quantize info for input")
B
Bin Li 已提交
1828
        for i, input_node in enumerate(self._option.input_nodes.values()):
B
Bin Li 已提交
1829 1830 1831 1832 1833 1834 1835
            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 已提交
1836
                                               self._option.device,
B
Bin Li 已提交
1837
                                               non_zero=False)
1838 1839
                quantize_info = \
                    mace_pb2.QuantizeActivationInfo()
B
Bin Li 已提交
1840 1841 1842 1843 1844 1845
                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

1846
        print("Add default quantize info for ops like Pooling, Softmax")
李寅 已提交
1847 1848
        for op in self._model.op:
            if op.type in [MaceOp.Pooling.name,
B
Bin Li 已提交
1849
                           MaceOp.Reduce.name,
李寅 已提交
1850
                           MaceOp.Squeeze.name,
B
Bin Li 已提交
1851
                           MaceOp.Reshape.name,
李寅 已提交
1852 1853
                           MaceOp.ResizeBilinear.name,
                           MaceOp.BatchToSpaceND.name,
1854 1855 1856
                           MaceOp.SpaceToBatchND.name,
                           MaceOp.SpaceToDepth.name,
                           MaceOp.DepthToSpace.name]:
李寅 已提交
1857 1858
                del op.quantize_info[:]
                producer_op = self._producer[op.input[0]]
B
Bin Li 已提交
1859 1860 1861 1862 1863
                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:
1864 1865
                    self.copy_quantize_info(op,
                                            producer_op.quantize_info[0])
1866 1867
                self._quantize_activation_info[op.output[0]] = \
                    op.quantize_info[0]
1868 1869 1870
            elif (op.type == MaceOp.Concat.name
                  and (not op.quantize_info
                       or self._option.change_concat_ranges)):
1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882
                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)
李寅 已提交
1883
                self._quantize_activation_info[op.output[0]] = quantize_info
1884 1885 1886 1887 1888 1889 1890
                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]
李寅 已提交
1891 1892 1893 1894 1895
            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 已提交
1896 1897 1898 1899 1900 1901 1902
            elif (op.type == MaceOp.Eltwise.name
                  and not op.quantize_info
                  and len(op.input) == 2
                  and len(op.input[0]) not in self._consts
                  and len(op.input[1]) not in self._consts):
                producer_op0 = self._producer[op.input[0]]
                producer_op1 = self._producer[op.input[1]]
B
Bin Li 已提交
1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918
                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 已提交
1919
                                      " SUM and SUB without ranges now.")
1920 1921
                quantize_info = \
                    self.add_quantize_info(op, minval, maxval)
B
Bin Li 已提交
1922
                self._quantize_activation_info[op.output[0]] = quantize_info
李寅 已提交
1923 1924 1925 1926 1927 1928 1929

        return False

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

B
Bin Li 已提交
1930
        print("Check quantize info")
李寅 已提交
1931 1932 1933 1934 1935 1936 1937
        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)
1938 1939 1940 1941 1942
            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))
1943

Y
yulianfei 已提交
1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987
    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

1988 1989 1990 1991
    def fp16_matmul_weight(self):
        if self._option.device != DeviceType.CPU.value:
            return

L
liukai6 已提交
1992
        print('Convert matmul weights to fp16 for specific matmul: activation + weights')  # noqa
1993 1994 1995 1996

        for op in self._model.op:
            if op.type != MaceOp.MatMul.name:
                continue
L
liukai6 已提交
1997
            if op.input[0] not in self._consts and op.input[1] not in self._consts:  # noqa
1998
                continue
L
liukai6 已提交
1999
            if op.input[0] in self._consts and op.input[1] in self._consts:
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 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039
                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])

2040 2041 2042 2043 2044 2045 2046 2047 2048
    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 已提交
2049

L
lichao18 已提交
2050 2051 2052 2053 2054 2055
    def transform_caffe_reshape_and_flatten(self):
        net = self._model
        for op in net.op:
            if op.type == MaceOp.Reshape.name and \
                    len(op.input) == 1:
                print("Transform Caffe Reshape")
L
lichao18 已提交
2056 2057 2058 2059 2060 2061
                dims = []
                dim_arg = ConverterUtil.get_arg(op, MaceKeyword.mace_dim_str)
                axis_arg = ConverterUtil.get_arg(op, MaceKeyword.mace_axis_str)
                # transform caffe reshape op
                if dim_arg:
                    dims = dim_arg.ints
L
lichao18 已提交
2062 2063 2064 2065
                    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 已提交
2066 2067 2068
                # transform caffe flatten op
                elif axis_arg is not None:
                    axis = axis_arg.i
L
lichao18 已提交
2069
                    for i in range(0, axis):
L
lichao18 已提交
2070 2071 2072 2073
                        dims.append(0)
                    dims.append(-1)
                    for i in range(axis + 1, len(op.output_shape[0].dims)):
                        dims.append(0)
L
lichao18 已提交
2074 2075 2076 2077
                    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 已提交
2078 2079 2080 2081
                else:
                    mace_check(False, "Only support reshape and flatten")
                shape_tensor.int32_data.extend(dims)
                op.input.append(shape_tensor.name)
Y
yejianwu 已提交
2082 2083 2084 2085 2086

    def fold_fc_reshape(self):
        net = self._model
        for op in net.op:
            # whether to reshape fc output(default 4D)
L
liutuo 已提交
2087 2088
            if op.type == MaceOp.FullyConnected.name and\
                    op.output[0] in self._consumers:
Y
yejianwu 已提交
2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101
                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
李寅 已提交
2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143

    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
2144

2145
    def quantize_specific_ops_only(self):
2146 2147 2148 2149
        """
        This transform rule is only used internally, we are not gonna make
        things too complex for users
        """
2150 2151 2152 2153 2154
        to_quantize_ops_output_type = {
            MaceOp.MatMul.name: mace_pb2.DT_INT32,
            MaceOp.Gather.name: mace_pb2.DT_UINT8,
        }

2155
        for op in self._model.op:
2156 2157
            if (op.type not in to_quantize_ops_output_type
                    or len(op.output) > 1
2158 2159 2160 2161 2162 2163
                    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 已提交
2164

2165
            should_quantize = False
L
liyin 已提交
2166 2167 2168 2169 2170 2171 2172 2173
            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

2174 2175
            for idx, input_tensor in enumerate(op.input):
                if self.get_tensor_data_type(input_tensor) \
2176 2177
                        == mace_pb2.DT_FLOAT:
                    should_quantize = True
2178 2179 2180
                    break
            if not should_quantize:
                continue
2181 2182
            else:
                print("Quantize op %s (%s)" % (op.name, op.type))
2183

L
liyin 已提交
2184 2185
            non_zero = self._option.device == DeviceType.CPU.value \
                and op.type == MaceOp.MatMul.name
2186 2187 2188 2189

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

2190 2191 2192 2193
                if self.get_tensor_data_type(input_tensor) \
                        != mace_pb2.DT_FLOAT:
                    continue

2194 2195 2196
                if input_tensor in self._consts:
                    const_tensor = self._consts[input_tensor]
                    quantized_tensor = quantize_util.quantize(
B
Bin Li 已提交
2197
                        const_tensor.float_data, self._option.device, non_zero)
2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220
                    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
2221 2222 2223
                    ConverterUtil.add_data_format_arg(
                        quantize_op,
                        self.get_tensor_data_format(input_tensor))
2224 2225 2226

                    data_type_arg = quantize_op.arg.add()
                    data_type_arg.name = MaceKeyword.mace_non_zero
L
liyin 已提交
2227
                    data_type_arg.i = 0
2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238

                    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)

2239 2240
            original_output_name = op.output[0]
            op.output[0] = original_output_name + "_quant"
2241
            op.output_type.extend([to_quantize_ops_output_type[op.type]])
2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252
            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]])
2253
            dequantize_op.output.extend([original_output_name])
2254 2255 2256 2257
            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
2258
            data_type_arg.i = to_quantize_ops_output_type[op.type]
2259 2260 2261
            ConverterUtil.add_data_format_arg(
                dequantize_op,
                self.get_tensor_data_format(original_output_name))
2262 2263 2264 2265 2266 2267 2268 2269 2270 2271
            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