get_rank_size
Applicability
Product |
Supported |
|---|---|
Atlas 350 Accelerator Card |
√ |
√ |
|
√ |
|
☓ |
|
√ |
|
√ |
For
For the
Function
Obtains the number of ranks (that is, the number of devices) in a group.
Prototype
1 | def get_rank_size(group="hccl_world_group") |
Parameters
Parameter |
Input/Output |
Description |
|---|---|---|
group |
Input |
A string containing a maximum of 128 bytes, including the end character. If this parameter is not set, the default value hccl_world_group is used. |
Returns
Number of ranks in a group, which is of the int type.
Constraints
- This API must be called after the initialization of collective communication is complete.
- The caller rank must be within the range defined by the group argument passed to this API call. Otherwise, the API call fails.
- After the create_group call, call this API to obtain the number of ranks in the current group.
- If hccl_world_group is passed, the number of ranks in hccl_world_group is returned.
Call Example
1 2 3 4 | from hccl.manage.api import create_group from hccl.manage.api import get_rank_size create_group("myGroup", 4, [0, 1, 2, 3]) rankSize = get_rank_size("myGroup") |