本文简要介绍python语言中 torch.distributed.TCPStore
的用法。
用法:
class torch.distributed.TCPStore
host_name(str) -服务器存储应在其上运行的主机名或 IP 地址。
port(int) -服务器存储应侦听传入请求的端口。
world_size(int,可选的) -商店用户总数(客户端数量 + 服务器 1)。默认值为 -1(负值表示商店用户数量不固定)。
is_master(bool,可选的) -初始化服务器存储时为 True,客户端存储为 False。默认为假。
timeout(时间增量,可选的) -存储在初始化期间以及
get()
和wait()
等方法使用的超时。默认为 timedelta(seconds=300)wait_for_worker(bool,可选的) -是否等待所有工作人员与服务器存储连接。这仅适用于world_size 为固定值时。默认为真。
基于 TCP 的分布式键值存储实现。服务器存储保存数据,而客户端存储可以通过 TCP 连接到服务器存储并执行诸如
set()
插入键值对、get()
检索键值对等操作。应该有始终是一个服务器存储初始化,因为客户端存储将等待服务器建立连接。>>> import torch.distributed as dist >>> from datetime import timedelta >>> # Run on process 1 (server) >>> server_store = dist.TCPStore("127.0.0.1", 1234, 2, True, timedelta(seconds=30)) >>> # Run on process 2 (client) >>> client_store = dist.TCPStore("127.0.0.1", 1234, 2, False) >>> # Use any of the store methods from either the client or server after initialization >>> server_store.set("first_key", "first_value") >>> client_store.get("first_key")
例子:
参数:
相关用法
- Python PyTorch Tensor.unflatten用法及代码示例
- Python PyTorch Tensor.register_hook用法及代码示例
- Python PyTorch TransformerEncoder用法及代码示例
- Python PyTorch TarArchiveLoader用法及代码示例
- Python PyTorch Tensor.storage_offset用法及代码示例
- Python PyTorch Tensor.to用法及代码示例
- Python PyTorch Tensor.sparse_mask用法及代码示例
- Python PyTorch Timer用法及代码示例
- Python PyTorch TimeMasking用法及代码示例
- Python PyTorch TripletMarginLoss用法及代码示例
- Python PyTorch Tacotron2TTSBundle.get_text_processor用法及代码示例
- Python PyTorch Tensor.is_leaf用法及代码示例
- Python PyTorch Tensor.imag用法及代码示例
- Python PyTorch Tensor.unfold用法及代码示例
- Python PyTorch TenCrop用法及代码示例
- Python PyTorch Tensor.real用法及代码示例
- Python PyTorch TwRwSparseFeaturesDist用法及代码示例
- Python PyTorch Tensor.refine_names用法及代码示例
- Python PyTorch Tanh用法及代码示例
- Python PyTorch Tensor.rename用法及代码示例
- Python PyTorch TransformedDistribution用法及代码示例
- Python PyTorch Tensor.view用法及代码示例
- Python PyTorch Tensor.new_empty用法及代码示例
- Python PyTorch Tensor.index_copy_用法及代码示例
- Python PyTorch TripletMarginWithDistanceLoss用法及代码示例
注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torch.distributed.TCPStore。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。