本文简要介绍python语言中 torch.distributed.rpc.RRef.remote
的用法。
用法:
remote(self: torch._C._distributed_rpc.PyRRef, timeout: float = - 1.0) → object
timeout(float,可选的) -
rref.remote()
超时。如果在超时内未成功完成此RRef
的创建,则下次尝试使用 RRef (例如to_here
)时,将引发超时。如果未提供,将使用默认的 RPC 超时。请参阅rpc.remote()
了解RRef
的特定超时语义。创建一个辅助代理以使用 RRef 的所有者作为目标轻松启动
remote
,以便在此 RRef 引用的对象上运行函数。更具体地说,rref.remote().func_name(*args, **kwargs)
与以下内容相同:>>> def run(rref, func_name, args, kwargs): >>> return getattr(rref.local_value(), func_name)(*args, **kwargs) >>> >>> rpc.remote(rref.owner(), run, args=(rref, func_name, args, kwargs))
>>> from torch.distributed import rpc >>> rref = rpc.remote("worker1", torch.add, args=(torch.zeros(2, 2), 1)) >>> rref.remote().size().to_here() # returns torch.Size([2, 2]) >>> rref.remote().view(1, 4).to_here() # returns tensor([[1., 1., 1., 1.]])
例子:
参数:
相关用法
- Python PyTorch RRef.rpc_sync用法及代码示例
- Python PyTorch RRef.rpc_async用法及代码示例
- Python PyTorch RRef.backward用法及代码示例
- Python PyTorch RReLU用法及代码示例
- Python PyTorch RNNTLoss用法及代码示例
- Python PyTorch ReduceLROnPlateau用法及代码示例
- Python PyTorch ReflectionPad1d用法及代码示例
- Python PyTorch RemoteModule用法及代码示例
- Python PyTorch Rows2Columnar用法及代码示例
- Python PyTorch RandomRecDataset用法及代码示例
- Python PyTorch ReplicationPad1d用法及代码示例
- Python PyTorch Resample用法及代码示例
- Python PyTorch ReplicationPad3d用法及代码示例
- Python PyTorch ReflectionPad2d用法及代码示例
- Python PyTorch RandomApply用法及代码示例
- Python PyTorch RarArchiveLoader用法及代码示例
- Python PyTorch RelaxedOneHotCategorical用法及代码示例
- Python PyTorch RandomErasing用法及代码示例
- Python PyTorch RendezvousHandler.shutdown用法及代码示例
- Python PyTorch RNN用法及代码示例
- Python PyTorch RNNCell用法及代码示例
- Python PyTorch ReLU用法及代码示例
- Python PyTorch ReLU6用法及代码示例
- Python PyTorch ReplicationPad2d用法及代码示例
- Python PyTorch ReflectionPad3d用法及代码示例
注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torch.distributed.rpc.RRef.remote。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。