(x)
| 1217 | data_array = xr.DataArray(array, dims=("x", "y")) |
| 1218 | |
| 1219 | def parallel_identity(x): |
| 1220 | return apply_ufunc(identity, x, dask="parallelized", output_dtypes=[x.dtype]) |
| 1221 | |
| 1222 | actual = parallel_identity(data_array) |
| 1223 | assert isinstance(actual.data, da.Array) |
no test coverage detected
searching dependent graphs…