We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7838058 commit f223c78Copy full SHA for f223c78
paddle/fluid/framework/ir/conv_bn_fuse_pass.cc
@@ -171,7 +171,7 @@ void ConvBNFusePass::ApplyImpl(ir::Graph* graph) const {
171
172
// Create eltwise_y (conv bias) variable
173
VarDesc eltwise_y_in_desc(
174
- patterns::PDNodeName(name_scope_, "eltwise_y_in"));
+ patterns::PDNodeName("fuse_conv_bn", conv_type() + "_eltwise_y_in"));
175
eltwise_y_in_desc.SetShape(framework::vectorize(bn_bias_tensor->dims()));
176
eltwise_y_in_desc.SetDataType(bn_bias_tensor->type());
177
eltwise_y_in_desc.SetLoDLevel(bn_bias->Var()->GetLoDLevel());
0 commit comments