本文简要介绍python语言中 torchrec.distributed.dist_data.PooledEmbeddingsAllToAll
的用法。
用法:
class torchrec.distributed.dist_data.PooledEmbeddingsAllToAll(pg: torch._C._distributed_c10d.ProcessGroup, dim_sum_per_rank: List[int], device: Optional[torch.device] = None, callbacks: Optional[List[Callable[[torch.Tensor], torch.Tensor]]] = None)
pg(dist.ProcessGroup) -ProcessGroup 用于AlltoAll 通信。
dim_sum_per_rank(List[int]) -每个等级中嵌入的特征数(维度总和)。
device(可选的[torch.device]) -将分配缓冲区的设备。
callbacks(可选的[List[可调用[[torch.Tensor],torch.Tensor]]]) -
基础:
torch.nn.modules.module.Module
根据
dim_sum_per_rank
对带有ProcessGroup
的张量键进行分批和收集。实现利用
alltoall_pooled
操作。例子:
dim_sum_per_rank = [2, 1] a2a = PooledEmbeddingsAllToAll(pg, dim_sum_per_rank, device) t0 = torch.rand((6, 2)) t1 = torch.rand((6, 1)) rank0_output = a2a(t0).wait() rank1_output = a2a(t1).wait() print(rank0_output.size()) # torch.Size([3, 3]) print(rank1_output.size()) # torch.Size([3, 3])
参数:
相关用法
- Python PyTorch PooledEmbeddingsReduceScatter用法及代码示例
- Python PyTorch PoissonNLLLoss用法及代码示例
- Python PyTorch Poisson用法及代码示例
- Python PyTorch PackageImporter.id用法及代码示例
- Python PyTorch Proxy用法及代码示例
- Python PyTorch PixelShuffle用法及代码示例
- Python PyTorch Pipe用法及代码示例
- Python PyTorch ParagraphAggregator用法及代码示例
- Python PyTorch PackageExporter.register_extern_hook用法及代码示例
- Python PyTorch Perceptron用法及代码示例
- Python PyTorch ParallelReadConcat用法及代码示例
- Python PyTorch ParameterList用法及代码示例
- Python PyTorch PairwiseDistance用法及代码示例
- Python PyTorch ParquetDataFrameLoader用法及代码示例
- Python PyTorch PackageExporter.register_intern_hook用法及代码示例
- Python PyTorch PixelUnshuffle用法及代码示例
- Python PyTorch ParameterDict用法及代码示例
- Python PyTorch PitchShift用法及代码示例
- Python PyTorch Pareto用法及代码示例
- Python PyTorch PackageExporter.close用法及代码示例
- Python PyTorch PackageExporter.register_mock_hook用法及代码示例
- Python PyTorch PReLU用法及代码示例
- Python PyTorch frexp用法及代码示例
- Python PyTorch jvp用法及代码示例
- Python PyTorch cholesky用法及代码示例
注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torchrec.distributed.dist_data.PooledEmbeddingsAllToAll。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。