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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。