Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,7 @@ def _label_skip_quantized_op(self, graph):
is_quantized_op = True
for var_node in op_node.inputs:
for front_op_node in var_node.inputs:
if "fake_quantize_dequantize_" not in front_op_node.name(
):
if "quantize_dequantize" not in front_op_node.name():
is_quantized_op = False
if not is_quantized_op:
op_node.op()._set_attr("skip_quant", True)
Expand Down