Open jakirkham opened 6 years ago
@jakirkham checking-in here, would you say this issue was addressed with the note added here https://github.com/dask/dask/pull/6040/commits/0793e125a3cc7608a8096bfa1e41093ed7eaf635 or this is still not documented enough?
Not really since that PR is just showing how the name
can be changed. The issue is really ask to document what happens when the name
is unspecified or has a default value.
Edit: Put another way if I have some array-like object that I would like to pass to from_array
so I can use it with Dask, how does Dask decide to construct a name
for that object and how might implementing __dask_tokenize__
or similar influence that process?
Would be good to document
from_array
's use oftokenize
and what that means in terms of calls to__dask_tokenize__
andnormalize_token
. In particular how do these influence thename
used in graph construction.