Created
August 9, 2019 20:25
-
-
Save pentschev/e468896e4e28c78b7e7161fc74460099 to your computer and use it in GitHub Desktop.
Blog Post - Parallelizing Custom CuPy Kernels with Dask - Create Dask CuPy-backed Dask Arrays
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import dask.array as da | |
dx = da.from_array(x, chunks=(1024, 512), asarray=False) | |
dy = da.from_array(y, chunks=(1, 512), asarray=False) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment