-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
[3/4] CUDNNv8 ResNet Fusion: Add fused_donv_drelu_dbn OP #58986
Conversation
你的PR提交成功,感谢你对开源项目的贡献! |
@zyfncg Hi, would you please take a look? |
99c2b4a
to
876270d
Compare
876270d
to
6d61be1
Compare
@zyfncg The CI failures will be approved manually and should not block review process. Please take a look. |
2023-11-23 11:07:36 **************** 2023-11-24 11:27:18 [tools/ci_op_benchmark.sh:280] [INFO] Or you can apply for one RD (ZzSean(Recommend), JamesLim-sy, Xreki, luotao1) approval to pass this PR. 2023-11-23 12:51:03 Please find RD for approval first, and then find TPM for approval. |
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 for @unittest.skip or @unittest.skipIf
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 for add API
paddle/phi/infermeta/fusion.cc
Outdated
grad_weight->set_dims(weight.dims()); | ||
grad_bn1_input->set_dims(bn1_input.dims()); | ||
grad_bn1_gamma->set_dims(bn1_gamma.dims()); | ||
grad_bn1_beta->set_dims(bn1_beta.dims()); |
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.
done
@@ -0,0 +1,1162 @@ | |||
/* Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved. |
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.
2022 -> 2023
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.
done
@@ -0,0 +1,478 @@ | |||
# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved. |
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.
2022 ->2023
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.
done
58a38a0
6d61be1
to
58a38a0
Compare
@XiaoguangHu01 @chenwhql @ZzSean @zhangting2020 Would you please approve? |
@qingqing01 Would you please approve for PR-CI-Static-Check? |
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
@tianshuo78520a Would you please help approve |
@qingqing01 @heavengate would you please approve for |
@zyfncg Hi, would you please merge it? |
PR types
New features
PR changes
OPs
Description
This PR adds fused_dconv_drelu_dbn op, which is part of the CUDNNv8 ResNet fusion integration.