-
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
[Prim][PIR] support unbind op forward in prim pir #64430
Conversation
你的PR提交成功,感谢你对开源项目的贡献! |
Sorry to inform you that 82c3749's CIs have passed for more than 7 days. To prevent PR conflicts, you need to re-run all CIs manually. |
@@ -195,7 +197,7 @@ def _set_op_type(self): | |||
self.op_type = "unbind" | |||
|
|||
def test_check_output(self): | |||
self.check_output(check_pir=True) | |||
self.check_output(check_pir=True, check_prim_pir=True) | |||
|
|||
def test_check_grad(self): | |||
self.check_grad(['X'], ['out0', 'out1', 'out2'], check_pir=True) |
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.
, check_prim_pir=True
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
* update unbind * fix size_t * update dynamic test * update unbind * add assert * Update test_unbind_op.py * prim test change * fix code
PR Category
Others
PR Types
Others
Description
[Prim][PIR] support unbind op forward in prim pir