Searched refs:split_group (Results 1 – 3 of 3) sorted by relevance
/external/pytorch/torch/distributed/ |
D | distributed_c10d.py | 4303 def split_group( function 4418 for split_group in split_ranks: 4419 if len(split_group) == 0: 4421 if len(split_group) > global_world_size: 4425 if len(split_group) != len(set(split_group)): 4427 split_group = sorted(split_group) 4428 if parent_group_rank in split_group: 4429 my_group = split_group 4430 group_rank = split_group.index(parent_group_rank)
|
/external/sdv/vsomeip/third_party/boost/intrusive/include/boost/intrusive/ |
D | hashtable.hpp | 461 BOOST_INTRUSIVE_FORCEINLINE static node_ptr split_group(node_ptr const new_first_in_group) in split_group() function 763 group_functions_t::split_group(nl); in priv_erase_from_single_bucket() 767 node_ptr const group1 = group_functions_t::split_group(nf); in priv_erase_from_single_bucket() 769 node_ptr const group2 = group_functions_t::split_group(ne); in priv_erase_from_single_bucket()
|
/external/pytorch/test/distributed/ |
D | test_c10d_nccl.py | 748 ng1 = c10d.split_group(pg, [[0, 1]]) 764 ng2 = c10d.split_group(pg, [[0, 1]]) 4414 ng1 = c10d.split_group(pg, [[0, 1], [2, 3, 4, 5, 6, 7]]) 4428 ng2 = c10d.split_group(pg, [[5, 6, 7]]) 4452 ng1 = c10d.split_group(pg, [[0, 1, 2, 3], [4, 5, 6, 7]]) 4467 ng2 = c10d.split_group(ng1, [[0, 1], [2, 3]])
|