-
-
Notifications
You must be signed in to change notification settings - Fork 128
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
API: Array API support - Part 1 #612
Conversation
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## master #612 +/- ##
==========================================
+ Coverage 90.99% 91.50% +0.51%
==========================================
Files 20 20
Lines 3376 3497 +121
==========================================
+ Hits 3072 3200 +128
+ Misses 304 297 -7 |
064ee90
to
23f997d
Compare
import warnings | ||
|
||
import numpy as np | ||
import numba |
Check notice
Code scanning / CodeQL
Module is imported with 'import' and 'import from' Note
|
||
import numpy as np | ||
import numba | ||
import scipy.sparse |
Check notice
Code scanning / CodeQL
Module is imported with 'import' and 'import from' Note
def asarray( | ||
obj, /, *, dtype=None, format="coo", backend="pydata", device=None, copy=False | ||
): |
Check notice
Code scanning / CodeQL
Explicit returns mixed with implicit (fall through) returns Note
23f997d
to
1d6943c
Compare
Thanks, @mtsokol! |
Hi @hameerabbasi,
This PR adds some improvements for Array API support: new functions and additional imports from the NumPy in the main namespace.