Uh oh!
There was an error while loading. Please reload this page.
Fix array API inspection behavior with device keyword - #1979
Conversation
* Fixes a bug where `"complex128"` was present in the list of dtypes on devices without fp64 support * Fixes functionality of device keyword for SyclQueue and strings * Improves error message when device keyword cannot be used to construct a SyclDevice instance * Tweaks docstring for device keywords in inspection utilities
Deleted rendered PR docs from intelpython.github.com/dpctl, latest should be updated shortly. 🤞 |
Array API standard conformance tests for dpctl=0.19.0dev0=py310h93fe807_493 ran successfully. |
Array API standard conformance tests for dpctl=0.19.0dev0=py310h93fe807_494 ran successfully. |
ndgrigorian
commented
Jan 24, 2025
@antonwolfy |
Array API standard conformance tests for dpctl=0.19.0dev0=py310h93fe807_496 ran successfully. |
antonwolfy
left a comment
There was a problem hiding this comment.
I checked with dpnp changes added in dpnp-2275 and it works as expected now.
Thank you @ndgrigorian for a quick fix. LGTM!
Uh oh!
There was an error while loading. Please reload this page.
This PR proposes changing the handling of the
devicekeyword in the array API inspection utilities to:Also fixes the
dtypesutility returningcomplex128in its output when the provided device does not support double precision types.Resolves#1978 , resolves#1977