27 lines
777 B
Python
27 lines
777 B
Python
# Copyright (C) 2018-2021 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
from extensions.front.tf.FakeQuantWithMinMaxVars import FakeQuantWithMinMaxVarsToQuantize
|
|
from mo.front.common.replacement import FrontReplacementPattern
|
|
from mo.graph.graph import Graph
|
|
|
|
|
|
class DisableQuantizeValuePropagation(FrontReplacementPattern):
|
|
enabled = True
|
|
|
|
def run_after(self):
|
|
return [FakeQuantWithMinMaxVarsToQuantize]
|
|
|
|
@staticmethod
|
|
def pattern():
|
|
return dict(
|
|
nodes=[
|
|
('quantize', dict(op='FakeQuantize', levels=lambda levels: levels != 2)),
|
|
],
|
|
edges=[]
|
|
)
|
|
|
|
@staticmethod
|
|
def replace_pattern(graph: Graph, match: dict):
|
|
match['quantize']['stop_value_propagation'] = True
|