Skip to content
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

Handle xarray DataArray in wrapped ufuncs #67

Merged
merged 4 commits into from
Sep 7, 2020

Conversation

efiring
Copy link
Member

@efiring efiring commented Sep 4, 2020

Closes #66 and #65, unless someone comes up with an example illustrating that there is more we need to do.

This is based on __array_ufunc__; it's not clear whether anything .

Tests include running all the check functions with minimal xarray DataArrays for SA_check_cast, t_check_cast, and p_check_cast. Additional tests include one based on the following example.

import gsw
import xarray as xr
import numpy as np
import dask.array as dsa

# define some input data
shape = (100, 1000)
chunks = (100, 200)
sp = xr.DataArray(dsa.full(shape, 35., chunks=chunks), dims=['time', 'depth'])
p = xr.DataArray(np.arange(shape[1]), dims=['depth'])
lon = 0
lat = 45

sa = gsw.SA_from_SP(sp, p, lon, lat)
sa.compute()

Copy link
Member

@ocefpaf ocefpaf left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you want to add tests or should we merge this for now?

ismasked = np.any([np.ma.isMaskedArray(a) for a in args])
isarray = [hasattr(a, '__iter__') for a in args]
ismasked = [np.ma.isMaskedArray(a) for a in args]
isduck = [hasattr(a, '__array_ufunc__')
Copy link
Member

@ocefpaf ocefpaf Sep 4, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

😄

Maybe isarrayinterface? No strong opinions, I actually like isduck ;-p

@DocOtak
Copy link
Contributor

DocOtak commented Sep 4, 2020

Playing around by hand, everything seemed to magically work as expected, dask array chunks, special xarray broadcasting, even return object types (eg xr.DataSet) and coordinate propagation for xarray things. Basically, this is amazing and I think it what is actually wanted with respect to dask/xarray support.

That said, I've only just gotten started with the chunked/"bigish" data stuff myself, so I'd really want someone like @rabernat to take a look at this.

@efiring
Copy link
Member Author

efiring commented Sep 4, 2020

@ocefpaf, let's hold off on merging for a couple days; I would like to add at least some minimal tests.

@ocefpaf
Copy link
Member

ocefpaf commented Sep 4, 2020

Playing around by hand, everything seemed to magically work as expected, dask array chunks, special xarray broadcasting, even return object types (eg xr.DataSet) and coordinate propagation for xarray things. Basically, this is amazing and I think it what is actually wanted with respect to dask/xarray support.

Same here. All my "basic" tests worked. I guess we had almost everything we needed in the match_args already. Thanks @efiring!

@efiring
Copy link
Member Author

efiring commented Sep 7, 2020

I think this is good enough to merge, so I will proceed. That should facilitate additional testing and recommendations for more work, if needed.

@efiring efiring merged commit 67a903b into TEOS-10:master Sep 7, 2020
@ocefpaf
Copy link
Member

ocefpaf commented Sep 7, 2020

@efiring are you OK if I issue a new release? 3.4.0?

@efiring
Copy link
Member Author

efiring commented Sep 7, 2020

Sure, go ahead. Thank you.

@efiring efiring deleted the array_ufunc branch September 7, 2020 19:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Plans for full xarray compatibility?
3 participants