用法:
normalize_collection(collection)
如果存在,则将集合的任务替换为已经存在的期货
这将集合任务图中的任务与调度程序中的已知未来标准化。它返回包含重叠期货的任务图的集合副本。
- collection:暗对象
像 dask.array 或 dataframe 或 dask.value 对象这样的集合
- collection:暗对象
将其任务替换为任何现有期货的集合。
参数:
返回:
例子:
>>> len(x.__dask_graph__()) # x is a dask collection with 100 tasks 100 >>> set(client.futures).intersection(x.__dask_graph__()) # some overlap exists 10
>>> x = client.normalize_collection(x) >>> len(x.__dask_graph__()) # smaller computational graph 20
相关用法
- Python distributed.Client.ncores用法及代码示例
- Python distributed.Client.nthreads用法及代码示例
- Python distributed.Client.nbytes用法及代码示例
- Python distributed.Client.gather用法及代码示例
- Python distributed.Client.retire_workers用法及代码示例
- Python distributed.Client.unregister_worker_plugin用法及代码示例
- Python distributed.Client.set_metadata用法及代码示例
- Python distributed.Client.scheduler_info用法及代码示例
- Python distributed.Client.submit用法及代码示例
- Python distributed.Client.compute用法及代码示例
- Python distributed.Client.unpublish_dataset用法及代码示例
- Python distributed.Client.start_ipython_scheduler用法及代码示例
- Python distributed.Client.get用法及代码示例
- Python distributed.Client.publish_dataset用法及代码示例
- Python distributed.Client.who_has用法及代码示例
- Python distributed.Client.get_versions用法及代码示例
- Python distributed.Client.profile用法及代码示例
- Python distributed.Client.run用法及代码示例
- Python distributed.Client.register_worker_plugin用法及代码示例
- Python distributed.Client.map用法及代码示例
注:本文由纯净天空筛选整理自dask.org大神的英文原创作品 distributed.Client.normalize_collection。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。