當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python PyTorch collect_all用法及代碼示例


本文簡要介紹python語言中 torch.futures.collect_all 的用法。

用法:

torch.futures.collect_all(futures)

參數

futures(list) -Future 對象的列表。

返回

Future 對象返回到傳入的 Future 列表中。

將提供的 Future 對象收集到單個組合 Future 中,當所有 sub-futures 完成時,該組合即完成。

例子:

>>> fut0 = torch.futures.Future()
>>> fut1 = torch.futures.Future()
>>> fut = torch.futures.collect_all([fut0, fut1])
>>> fut0.set_result(0)
>>> fut1.set_result(1)
>>> fut_list = fut.wait()
>>> print(f"fut0 result = {fut_list[0].wait()}")
fut0 result = 0
>>> print(f"fut1 result = {fut_list[1].wait()}")
fut1 result = 1

相關用法


注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.futures.collect_all。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。