We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62a70bd commit 8212d04Copy full SHA for 8212d04
cubed_xarray/cubedmanager.py
@@ -155,13 +155,6 @@ def apply_gufunc(
155
allow_rechunk: bool = False,
156
**kwargs,
157
):
158
- if allow_rechunk:
159
- raise NotImplementedError(
160
- "cubed.apply_gufunc doesn't support allow_rechunk"
161
- )
162
- if keepdims:
163
- raise NotImplementedError("cubed.apply_gufunc doesn't support keepdims")
164
-
165
from cubed import apply_gufunc
166
167
return apply_gufunc(
@@ -170,9 +163,11 @@ def apply_gufunc(
170
*args,
171
axes=axes,
172
axis=axis,
+ keepdims=keepdims,
173
output_dtypes=output_dtypes,
174
168
output_sizes=output_sizes,
175
169
vectorize=vectorize,
+ allow_rechunk=allow_rechunk,
176
177
)
178
0 commit comments