coiled / dask-community

Issue tracker for the Dask community team
MIT License
2 stars 0 forks source link

[Stack Overflow] Making Dask use pointers instead of making copies of input? #1402

Open github-actions[bot] opened 2 years ago

github-actions[bot] commented 2 years ago

Lets say I have something like this:

def foo(a):
    return a.sum()
x = np.random.rand(1000000,70)
X = dask.array.from_array(a)

X_list = [dask.delayed(foo)(X) for n in range(600)]

Xsums = dask.compute(*X_list)

This seem to get hung up in exec…


Would you like to know more?

Read the full article on the following website:

https://stackoverflow.com/questions/73738062/making-dask-use-pointers-instead-of-making-copies-of-input