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


Python PyTorch Store.get用法及代碼示例


本文簡要介紹python語言中 torch.distributed.Store.get 的用法。

用法:

torch.distributed.Store.get(self: torch._C._distributed_c10d.Store, arg0: str) → bytes

參數

key(str) -該函數將返回與此鍵關聯的值。

返回

如果key 在商店中,則與key 關聯的值。

檢索與商店中給定 key 關聯的值。如果存儲中不存在 key,則該函數將等待在初始化存儲時定義的 timeout ,然後再引發異常。

例子:

>>> import torch.distributed as dist
>>> from datetime import timedelta
>>> store = dist.TCPStore("127.0.0.1", 0, 1, True, timedelta(seconds=30))
>>> store.set("first_key", "first_value")
>>> # Should return "first_value"
>>> store.get("first_key")

相關用法


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