You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Client.map is currently creating a low level dask graph for every element in the provided iterable. This low level task graph is then being submitted to the scheduler. This is wasteful on many levels and we should replace this with a more efficient representation.
This is exacerbated by quite severe inefficiencies in our protocol (which is a different subject entirely)
Client.map is currently creating a low level dask graph for every element in the provided iterable. This low level task graph is then being submitted to the scheduler. This is wasteful on many levels and we should replace this with a more efficient representation.
This is exacerbated by quite severe inefficiencies in our protocol (which is a different subject entirely)
The simplest approach currently is to write a HLG Layer that is encoding this information.
The text was updated successfully, but these errors were encountered: