当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python distributed.as_completed.batches用法及代码示例


用法:

batches()

一次产生所有已完成的期货,而不是one-by-one

这将返回期货列表或 (future, result) 元组列表的迭代器,而不是单个期货或单个 (future, result) 元组。它将尽快产生这些,而无需等待。

例子

>>> for batch in as_completed(futures).batches():  
...     results = client.gather(batch)
...     print(results)
[4, 2]
[1, 3, 7]
[5]
[6]

相关用法


注:本文由纯净天空筛选整理自dask.org大神的英文原创作品 distributed.as_completed.batches。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。