本文简要介绍python语言中 torchrec.distributed.planner.partitioners.greedy_partition
的用法。
用法:
torchrec.distributed.planner.partitioners.greedy_partition(num_partitions: int, sharding_options: List[torchrec.distributed.planner.types.ShardingOption], shard_idxes: Optional[List[Tuple[int, int]]] = None, partition_sums: Optional[List[float]] = None, mem_cap: Optional[List[torchrec.distributed.planner.types.Storage]] = None) → List[List[Tuple[int, int]]]
应该分配给每个分区的 (option_idx, shard_idx) 的索引列表。
列表[列表[元组[int,int]]]
根据与每个 [option_idx, shard_idx] 关联的性能权重,以贪心的方式在
num_partitions
分区之间划分索引。例子:
sharding_options = [ [0,1,2,3] with perfs [10,20,30,40] [0,1] with perfs [200,300] ] # with num_partitions=3 # The final output would be: [ partition_0 = [(1,1)], with a perf of 300 partition_1 = [(1,0)], with a perf of 200 partition_2 = [(0,0),(0,1),(0,2),(0,3)], with a perf of 100 (10+20+30+40) ]
返回:
返回类型:
相关用法
- Python PyTorch gradient用法及代码示例
- Python PyTorch gumbel_softmax用法及代码示例
- Python PyTorch get_tokenizer用法及代码示例
- Python PyTorch gammainc用法及代码示例
- Python PyTorch gammaincc用法及代码示例
- Python PyTorch global_unstructured用法及代码示例
- Python PyTorch gammaln用法及代码示例
- Python PyTorch get_gradients用法及代码示例
- Python PyTorch get_ignored_functions用法及代码示例
- Python PyTorch get_default_dtype用法及代码示例
- Python PyTorch gt用法及代码示例
- Python PyTorch gather用法及代码示例
- Python PyTorch gcd用法及代码示例
- Python PyTorch get_graph_node_names用法及代码示例
- Python PyTorch get_testing_overrides用法及代码示例
- Python PyTorch generate_sp_model用法及代码示例
- Python PyTorch gather_object用法及代码示例
- Python PyTorch ge用法及代码示例
- Python PyTorch frexp用法及代码示例
- Python PyTorch jvp用法及代码示例
- Python PyTorch cholesky用法及代码示例
- Python PyTorch vdot用法及代码示例
- Python PyTorch ELU用法及代码示例
- Python PyTorch ScaledDotProduct.__init__用法及代码示例
- Python PyTorch saved_tensors_hooks用法及代码示例
注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torchrec.distributed.planner.partitioners.greedy_partition。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。