-
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
[PIR]support reduce_min reduce_pro mod flood_div ops #59650
[PIR]support reduce_min reduce_pro mod flood_div ops #59650
Conversation
… pir_cinn_jit_instruction_support_no_need_buffer
你的PR提交成功,感谢你对开源项目的贡献! |
✅ This PR's description meets the template requirements! |
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
@@ -42,6 +42,10 @@ const std::unordered_map<std::string, std::string> CompatibleInfo::OP_NAMES = { | |||
{"pd_op.add", "elementwise_add"}, | |||
{"pd_op.elementwise_pow", "pow"}, | |||
{"pd_op.multiply", "elementwise_mul"}, | |||
{"pd_op.remainder", "remainder"}, |
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.
{"pd_op.remainder", "remainder"}, | |
{"cinn_op.remainder", "remainder"}, |
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.
应该是删除
@@ -42,6 +42,10 @@ const std::unordered_map<std::string, std::string> CompatibleInfo::OP_NAMES = { | |||
{"pd_op.add", "elementwise_add"}, | |||
{"pd_op.elementwise_pow", "pow"}, | |||
{"pd_op.multiply", "elementwise_mul"}, | |||
{"pd_op.remainder", "remainder"}, | |||
{"pd_op.floor_divide", "floor_divide"}, |
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.
{"pd_op.floor_divide", "floor_divide"}, | |
{"cinn_op.floor_divide", "floor_divide"}, |
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.
这里是不是应该为 cinn_op.xx ?
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.
应该是删除
PR types
New features
PR changes
Others
Description
适配cinn中的 reduce_min, reduce_prod, mod, flood_div算子
Pcard-67164