-
Notifications
You must be signed in to change notification settings - Fork 30
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 some array api test cases #1328
Fix some array api test cases #1328
Conversation
View rendered docs @ https://intelpython.github.io/dpctl/pulls/1328/index.html |
Array API standard conformance tests for dpctl=0.14.6dev0=py310h7bf5fec_111 ran successfully. |
a202d13
to
1b5419f
Compare
Array API standard conformance tests for dpctl=0.14.6dev0=py310h7bf5fec_112 ran successfully. |
dpctl/tensor/libtensor/include/kernels/elementwise_functions/logaddexp.hpp
Outdated
Show resolved
Hide resolved
- 'or' conditions can sometimes cause wrong results when using the OS compiler
If both arguments are -inf, the result is also -inf.
Array API standard conformance tests for dpctl=0.14.6dev0=py310h7bf5fec_113 ran successfully. |
I have pushed a change to factor scalar implementation out and fixed it to ensure |
Array API standard conformance tests for dpctl=0.14.6dev0=py310h7bf5fec_114 ran successfully. |
Deleted rendered PR docs from intelpython.github.com/dpctl, latest should be updated shortly. 🤞 |
This PR fixes an array API test case for
logaddexp
that fails for mixed nan and number operands.It also applies a previous fix used for
astype
withorder="K"
tocopy
.