-
Notifications
You must be signed in to change notification settings - Fork 29
Resolve gh-2055 #2058
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
base: master
Are you sure you want to change the base?
Resolve gh-2055 #2058
Conversation
a78b4fd
to
763277f
Compare
View rendered docs @ https://intelpython.github.io/dpctl/pulls/2058/index.html |
Array API standard conformance tests for dpctl=0.20.0dev0=py310h93fe807_147 ran successfully. |
1 similar comment
Array API standard conformance tests for dpctl=0.20.0dev0=py310h93fe807_147 ran successfully. |
763277f
to
bfd9dd0
Compare
adds _from_numpy_empty_like_orderK utility function
…ternal functions
bfd9dd0
to
93d288c
Compare
Array API standard conformance tests for dpctl=0.20.0dev0=py310h93fe807_153 ran successfully. |
This PR fixes a bug in
asarray
whereorder="K"
keyword could fail to produce an appropriate array in some edge cases, such as the permutation of a contiguous array.asarray(x)
for some NumPy arrayx
now uses a consistent implementation fororder="K"
as other functions supportingorder
Closes #2055