Skip to content

Commit b7fdf44

Browse files
committed
code style
1 parent 0c74505 commit b7fdf44

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

paddle/fluid/framework/ir/quant_conv2d_dequant_fuse_pass.cc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -642,8 +642,9 @@ void QuantDequantFusePass::ApplyImpl(ir::Graph* graph) const {
642642
std::unordered_set<std::string> quant_types = {
643643
"fake_quantize_range_abs_max", "fake_quantize_moving_average_abs_max"};
644644
std::unordered_set<std::string> quantized_op_types = {
645-
"conv2d", "mul", "matmul", "matmul_v2", "depthwise_conv2d", "fc",
646-
"conv2d_transpose"};
645+
"conv2d", "mul", "matmul", "depthwise_conv2d",
646+
"conv2d_transpose", "fc", "matmul_v2",
647+
};
647648
auto* scope = param_scope();
648649

649650
for (auto& quant_type : quant_types) {

0 commit comments

Comments
 (0)