-
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 API adaptor No.133-135】Migrate paddle.logical_not/logical_or/logical_xor into pir #58781
Conversation
|
这是个已知问题,目前的话建议最好统一采用 paddle.static.Program() 写法,而不是先前 import 的 Program。具体出现问题的原因内部还在排查。这个 pr 的单测里改成 paddle.static.Program() 写法吧,可以让 pr 先合入~ |
好的,感谢^v^ |
请问 test/legacy_test/test_logical_op.py 里的 test_type_error 单测没有切换成 pir 的模式的原因是? |
PR types
Others
PR changes
APIs
Description
新IR Python API适配升级 #58067
No.133 No.134 No.135
PIR API 推全升级
将
paddle.logical_not
迁移升级至 pir,并更新单测,单测覆盖率:2/2将
paddle.logical_or
迁移升级至 pir,并更新单测,单测覆盖率:2/2将
paddle.logical_xor
迁移升级至 pir,并更新单测,单测覆盖率:2/2test_type_error
单测暂不支持,数据类型检查的工作以后会下沉到 c++ 端去执行。