本文簡要介紹python語言中 torch.futures.Future.set_result
的用法。
用法:
set_result(result)
result(object) -此
Future
的結果對象。設置此
Future
的結果,這會將此Future
標記為已完成並觸發所有附加的回調。請注意,不能將Future
標記為完成兩次。如果結果包含駐留在 GPU 上的張量,即使填充這些張量的異步內核尚未在設備上完成運行,也可以調用此方法,前提是這些內核入隊的流設置為當前調用此方法時的那些。簡而言之,在啟動這些內核後立即調用此方法是安全的,無需任何額外的同步,隻要不更改其間的流即可。此方法將記錄所有相關當前流上的事件,並將使用它們來確保此
Future
的所有使用者的正確調度。>>> import threading >>> import time >>> def slow_set_future(fut, value): ... time.sleep(0.5) ... fut.set_result(value) >>> fut = torch.futures.Future() >>> t = threading.Thread( ... target=slow_set_future, ... args=(fut, torch.ones(2) * 3) ... ) >>> t.start() >>> print(fut.wait()) tensor([3., 3.]) >>> t.join()
例子:
參數:
相關用法
- Python PyTorch Future.set_exception用法及代碼示例
- Python PyTorch Future.then用法及代碼示例
- Python PyTorch Future.add_done_callback用法及代碼示例
- Python PyTorch FunctionCtx.mark_dirty用法及代碼示例
- Python PyTorch Function用法及代碼示例
- Python PyTorch FunctionCtx.set_materialize_grads用法及代碼示例
- Python PyTorch FunctionCtx.save_for_backward用法及代碼示例
- Python PyTorch FunctionCtx.mark_non_differentiable用法及代碼示例
- Python PyTorch FloatFunctional用法及代碼示例
- Python PyTorch Forker用法及代碼示例
- Python PyTorch FMInteractionArch用法及代碼示例
- Python PyTorch FeatureAlphaDropout用法及代碼示例
- Python PyTorch FSSpecFileOpener用法及代碼示例
- Python PyTorch Filter用法及代碼示例
- Python PyTorch FSSpecSaver用法及代碼示例
- Python PyTorch FileLister用法及代碼示例
- Python PyTorch FisherSnedecor用法及代碼示例
- Python PyTorch FeaturePyramidNetwork用法及代碼示例
- Python PyTorch FactorizationMachine用法及代碼示例
- Python PyTorch FileStore用法及代碼示例
- Python PyTorch FractionalMaxPool3d用法及代碼示例
- Python PyTorch FiveCrop用法及代碼示例
- Python PyTorch FileOpener用法及代碼示例
- Python PyTorch FactorizationMachine.forward用法及代碼示例
- Python PyTorch FrequencyMasking用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.futures.Future.set_result。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。