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


Python PyTorch Store.set_timeout用法及代码示例


本文简要介绍python语言中 torch.distributed.Store.set_timeout 的用法。

用法:

torch.distributed.Store.set_timeout(self: torch._C._distributed_c10d.Store, arg0: datetime.timedelta) → None

参数

timeout(时间增量) -在商店中设置超时。

设置商店的默认超时。此超时在初始化期间以及 wait()get() 中使用。

例子:

>>> 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.set_timeout(timedelta(seconds=10))
>>> # This will throw an exception after 10 seconds
>>> store.wait(["bad_key"])

相关用法


注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torch.distributed.Store.set_timeout。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。