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


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