-
Notifications
You must be signed in to change notification settings - Fork 33
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 dask #89
Fix dask #89
Conversation
sort functionality (no `sort` or `argsort`), and limited support for the optional `linalg` | ||
and `fft` extensions. | ||
|
||
In particular, the `fft` namespace is not compliant with the array API spec. Any functions |
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.
Out of interest, is the plan to implement array_api_compat.dask.{fft, linalg}
or wait for support from dask
itself? A similar question w.r.t JAX.
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.
I haven't attempted to wrap fft yet - waiting on #78 to do so.
Linalg can only be partially supported by us since there's missing methods in dask.
if is_numpy_array(x): | ||
if is_numpy_array(x) or is_dask_array(x): | ||
# TODO: dask technically can support GPU arrays | ||
# Detecting the array backend isn't easy for dask, though, so just return CPU for now | ||
return "cpu" |
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.
As I noted on the other PR, it would probably be better to use some kind of basic DaskDevice object here instead of the string "cpu", given that CPU isn't necessarily an accurate description of the device dask is running on. See https://github.com/data-apis/array-api-strict/blob/main/array_api_strict/_array_object.py#L43-L49 for example.
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.
I return cpu now only if the type of the array backing the dask array is a ndarray.
The rest of the time, I return a DaskDevice.
Is this something close to what you wanted?
(We might be able to do this for cupy, but it's tricky for e.g. multigpu cases I guess)
@honno we've been getting some interesting errors from hypothesis:
Any idea what is going on here? |
setup.py
Outdated
@@ -8,7 +8,7 @@ | |||
setup( | |||
name='array_api_compat', | |||
version=array_api_compat.__version__, | |||
packages=find_packages(include=['array_api_compat*']), | |||
packages=find_namespace_packages(include=["array_api_compat*"]), |
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.
What is the purpose of this change?
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.
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.
Just add an __init__.py
file. I don't think it's a good idea to mess with namespace packages.
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.
Gotcha, I reverted the change.
Just pushed a merge conflict fix from the recent PR I just merged. A bunch of improvements to the linalg tests were recently merged to array-api-tests and it looks like there are some issues with the dask linalg wrappers. I now most of the linalg tests are skipped, but you may want to have another look at them. For example, there is this test failure
which looks like a bug in the wrapper code. Also, some of the tests fail and are not currently skipped here, so they will need to either be fixed or skipped as well. |
Thanks, can you hold off on merging anything else for now (to avoid more conflicts)? I'll try to get everything passing this evening/tomorrow morning. |
Certainly. Sorry for all the churn here that's been difficult to keep up with. |
CI should be as green as it gets at this point. I ended up skipping most of the failing linalg tests, they at least don't affect what I'm trying with scikit-learn (svd is the important thing there). |
Thanks for the reviews ! |
No description provided.