本文简要介绍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")
例子:
相关用法
- Python PyTorch HashChecker用法及代码示例
- Python PyTorch Hardsigmoid用法及代码示例
- Python PyTorch HalfCauchy用法及代码示例
- Python PyTorch HalfNormal用法及代码示例
- Python PyTorch Hardtanh用法及代码示例
- Python PyTorch Hardshrink用法及代码示例
- Python PyTorch Hardswish用法及代码示例
- Python PyTorch Header用法及代码示例
- Python PyTorch HttpReader用法及代码示例
- Python PyTorch frexp用法及代码示例
- Python PyTorch jvp用法及代码示例
- Python PyTorch cholesky用法及代码示例
- Python PyTorch vdot用法及代码示例
- Python PyTorch ELU用法及代码示例
- Python PyTorch ScaledDotProduct.__init__用法及代码示例
- Python PyTorch gumbel_softmax用法及代码示例
- Python PyTorch get_tokenizer用法及代码示例
- Python PyTorch saved_tensors_hooks用法及代码示例
- Python PyTorch positive用法及代码示例
- Python PyTorch renorm用法及代码示例
- Python PyTorch AvgPool2d用法及代码示例
- Python PyTorch MaxUnpool3d用法及代码示例
- Python PyTorch Bernoulli用法及代码示例
- Python PyTorch Tensor.unflatten用法及代码示例
- Python PyTorch Sigmoid用法及代码示例
注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torch.distributed.HashStore。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。