-
Notifications
You must be signed in to change notification settings - Fork 5.7k
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
fix the static op generation for einsum #54723
Conversation
你的PR提交成功,感谢你对开源项目的贡献! |
这个标题是不是写错了,应该是 |
对的,已修改~ |
Sorry to inform you that ec26cfb's CIs have passed for more than 7 days. To prevent PR conflicts, you need to re-run all CIs manually. |
需要重新触发下CI |
inputs : | ||
x : Operands | ||
outputs: | ||
{out : Out, inner_cache: InnerCache, xshape : XShape} |
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.
增加:
drop_empty_grad : [x_grad]
extra :
outputs : [inner_cache, xshape]
param : [x, equation] | ||
kernel : | ||
func : einsum | ||
backward : einsum_grad |
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.
增加
intermediate : inner_cache, xshape
func : UnchangedMultiInferMeta | ||
param : [x_shape] | ||
kernel : | ||
func : einsum_grad |
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.
data_type : out_grad
请根据review意见修改PR,谢谢 @longranger2 |
@@ -844,6 +844,15 @@ | |||
attrs : | |||
uplo : UPLO | |||
|
|||
- op : einsum | |||
inputs : |
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.
增加:
backward : einum_grad
很抱歉,经过我们的反复讨论,你的PR暂未达到合入标准,请阅读飞桨原生算子开发规范,你可以重新提交新的PR,我们先将此PR关闭,感谢你的贡献。 |
@heavyrain-lzy 修改好了,辛苦review下~ |
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
Others
PR changes
Others
Description
#53267