Skip to content

Commit

Permalink
Change QuantizeElentwise fluid op names to PHI counterparts
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrekobi committed Nov 23, 2022
1 parent 6b60000 commit 1d80c9b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions paddle/fluid/framework/ir/mkldnn/cpu_quantize_pass.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1262,9 +1262,9 @@ void CPUQuantizePass::ApplyImpl(ir::Graph* graph) const {
QuantizeImmutable(graph, "nearest_interp", "X");
QuantizeImmutable(graph, "nearest_interp_v2", "X");
QuantizeImmutable(graph, "split", "X");
QuantizeElementwise(graph, "elementwise_add");
QuantizeElementwise(graph, "elementwise_mul");
QuantizeElementwise(graph, "elementwise_sub");
QuantizeElementwise(graph, "add");
QuantizeElementwise(graph, "multiply");
QuantizeElementwise(graph, "subtract");
QuantizeFusionGru(graph);
QuantizeMultiGru(graph);
QuantizeFusionLSTM(graph);
Expand Down

0 comments on commit 1d80c9b

Please sign in to comment.