-
Notifications
You must be signed in to change notification settings - Fork 6
introduced DOnion: a dask array within another dask array
#18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Conflicts: dask_grblas/matrix.py dask_grblas/vector.py
many tests in from_grblas2/test_matrix now working with dOnions
|
As an example, the following statement: introduces a problem in
Note that this way of using |
chose DOnion.multi_access() over DOnion.multiple_access()
There are often times when one needs to create a
daskarray whose shape/size is not known at graph-construction time but will be determined later during execution time.As at now,
daskdoes not directly allow the creation of arrays of delayed shape/size.One could of course simply compute the shape/size during graph-construction, but this is often a computationally expensive and inconvenient operation, and one would rather prefer to defer all computations to the very end, when it is convenient.
With
DOnionthis becomes possible.