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


Python PyTorch HashStore用法及代码示例


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

用法:

class torch.distributed.HashStore

基于底层 hashmap 的线程安全存储实现。此存储可以在同一进程中使用(例如,由其他线程使用),但不能跨进程使用。

例子:

>>> import torch.distributed as dist
>>> store = dist.HashStore()
>>> # store can be used from other threads
>>> # Use any of the store methods after initialization
>>> store.set("first_key", "first_value")

相关用法


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