-
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
[PIR]Migrate SGD into pir #58391
[PIR]Migrate SGD into pir #58391
Conversation
你的PR提交成功,感谢你对开源项目的贡献! |
out1 = self.run_static() | ||
with paddle.pir_utils.IrGuard(): | ||
out2 = self.run_static() | ||
np.testing.assert_allclose(out1, out2) |
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.
建议将这个单测改为新IR和动态图的结果做比对,这样在旧IR退场后这个单测依然可以使用
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修改吧~
PR types
Others
PR changes
Others
Description
[PIR]Migrate SGD into pir
之前日升对SGD进行过修改,在本PR中尝试打开SGD相关的单测:
Pcard-67164