Skip to content

Commit 95f4142

Browse files
Correction about use of dask.array.apply_gufunc (#205)
* correction that xarray.apply_ufunc uses dask.apply_gufunc not dask.blockwise * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent ae00b1b commit 95f4142

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

advanced/apply_ufunc/dask_apply_ufunc.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@
147147
" choice if your function can handle dask arrays and won't compute the result unless \n",
148148
" explicitly requested.\n",
149149
"2. `dask=\"parallelized\"`. This applies the user function over blocks of the dask\n",
150-
" array using `dask.array.blockwise`. This is useful when your function cannot\n",
150+
" array using `dask.array.apply_gufunc`. This is useful when your function cannot\n",
151151
" handle dask arrays natively (e.g. scipy API)."
152152
]
153153
},

0 commit comments

Comments
 (0)