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


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


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

用法:

torch.distributed.Store.add(self: torch._C._distributed_c10d.Store, arg0: str, arg1: int) → int

參數

  • key(str) -計數器將遞增的商店中的鍵。

  • amount(int) -計數器將增加的數量。

為給定的 key 添加的第一個調用會在存儲中創建與 key 關聯的計數器,初始化為 amount 。使用相同 key 添加的後續調用將計數器增加指定的 amount 。使用set() 已在存儲中設置的鍵調用add() 將導致異常。

例子:

>>> import torch.distributed as dist
>>> from datetime import timedelta
>>> # Using TCPStore as an example, other store types can also be used
>>> store = dist.TCPStore("127.0.0.1", 0, 1, True, timedelta(seconds=30))
>>> store.add("first_key", 1)
>>> store.add("first_key", 6)
>>> # Should return 7
>>> store.get("first_key")

相關用法


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