Skip to content

Commit

Permalink
fix fuse-bn-add-relu bug. (#10533)
Browse files Browse the repository at this point in the history
fix NormalizationAddReluPass bug
  • Loading branch information
cccddd77 committed May 29, 2024
1 parent 29f9434 commit 9cf3ee5
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,11 @@ Maybe<void> CudnnFusedNormalizationAddReluPass::Apply(Job* job, JobPassCtx* ctx)
OperatorConf new_op_conf = op_conf;
auto mute_attrs = new_op_conf.mutable_user_conf()->mutable_attr();
auto training_it = mute_attrs->find("training");
if (training_it != mute_attrs->end()) { mute_attrs->erase(training_it); }
if (training_it != mute_attrs->end()) {
const bool training = user_op_conf.attr<bool>("training");
if (!training) { return; }
mute_attrs->erase(training_it);
}
new_op_conf.mutable_user_conf()->set_op_type_name("cudnn_fused_" + op_type_name);
job_builder.MutOpsOnlyOnce({new_op_conf});
});
Expand Down

0 comments on commit 9cf3ee5

Please sign in to comment.