-
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
【PaddlePaddle Hackathon 4】No.63 add fp16 and bf16 support for complex #53116
Conversation
你的PR提交成功,感谢你对开源项目的贡献! |
Sorry to inform you that 0f90fed's CIs have passed for more than 7 days. To prevent PR conflicts, you need to re-run all CIs manually. |
or not core.is_bfloat16_supported(core.CUDAPlace(0)), | ||
"core is not complied with CUDA and not support the bfloat16", | ||
) | ||
class TestComplexBF16(OpTest): |
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.
TestComplexBF16改为TestComplexBF16OP
self.op_type = "complex" | ||
self.python_api = paddle.complex | ||
self.init_spec() | ||
x = np.random.randn(*self.x_shape).astype(self.dtype) |
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.
这个地方要生成FP32的数据
fix bug of input dtype
Sorry to inform you that adc2844's CIs have passed for more than 7 days. To prevent PR conflicts, you need to re-run all CIs manually. |
很抱歉,经过我们的反复讨论,你的PR暂未达到合入标准,请阅读飞桨原生算子开发规范,你可以重新提交新的PR,我们先将此PR关闭,感谢你的贡献。 |
PR types
Others
PR changes
APIs
Description
相关链接:
#51281