-
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
[NewIR]Add feed with place op #55343
[NewIR]Add feed with place op #55343
Conversation
… add_feed_with_place_op
你的PR提交成功,感谢你对开源项目的贡献! |
❌ The PR is not created using PR's template. You can refer to this Demo. |
… add_feed_with_place_op
… add_feed_with_place_op
… add_feed_with_place_op
@@ -0,0 +1,30 @@ | |||
// 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
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
#include "paddle/phi/kernels/fetch_kernel.h" |
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.
头文件是不include错了?
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,27 @@ | |||
// 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
… add_feed_with_place_op
* add feed with place op * remove useless unitest * udpate mkldnn * update * add enable_static * remove useless test case * register int and doubel type * fix bug
* add feed with place op * remove useless unitest * udpate mkldnn * update * add enable_static * remove useless test case * register int and doubel type * fix bug
PR types
Bug fixes
PR changes
Others
Description
这是一个前置的pr,是为了给动转静场景的feed op中带入place信息,方便GPU场景的AOT模块的运行
feed with place作为一个临时的内部名称使用,在后续的迭代中会调整op的名称
同时该pr删除了一些废弃的模块,避免过多的维护成本。
Others
Pcard-67164