-
Notifications
You must be signed in to change notification settings - Fork 5.9k
[PIR] pir onednn bn act fuse pass #61307
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[PIR] pir onednn bn act fuse pass #61307
Conversation
… pir_onednn_conv_bias_pass
… pir_onednn_conv_bias_pass
…huancoder/Paddle into pir_onednn_conv3d_bias_pass
| namespace { | ||
| class BatchNormActFusePattern : public paddle::drr::DrrPatternBase { | ||
| public: | ||
| BatchNormActFusePattern(std::string bn_name, std::string fused_bn_name) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
const&?
| @@ -0,0 +1,9 @@ | |||
| file( | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这个我删掉了
yuanlehome
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM

PR types
New features
PR changes
Others
Description
Pcard-67164
完成batch_norm_act_fuse_pass的开发和测试。
batch_norm_act_fuse_pass等同于老静态图中的paddle/fluid/framework/ir/mkldnn/batch_norm_act_fuse_pass.cc里的batch_norm_act_fuse_pass。
完成conv3d_bias_fuse_pass的开发和测试。
conv2d_bias_fuse_pass等同于老静态图中的paddle/fluid/framework/ir/mkldnn/conv_bias_mkldnn_fuse_pass.cc里的conv3d_bias_mkldnn_fuse_pass。