mirror of
https://github.com/hpcaitech/ColossalAI.git
synced 2025-09-02 09:38:05 +00:00
Add interface for colo tesnor dp size (#3227)
This commit is contained in:
@@ -138,6 +138,15 @@ class ColoTensor(torch.Tensor):
|
||||
def get_tp_world_size(self) -> int:
|
||||
return self.process_group.tp_world_size()
|
||||
|
||||
def get_dp_world_size(self) -> int:
|
||||
"""get_dp_world_size
|
||||
get the dp world size of the tensor.
|
||||
|
||||
Returns:
|
||||
int: dp world size
|
||||
"""
|
||||
return self.process_group.dp_world_size()
|
||||
|
||||
def set_dist_spec(self, dist_spec: _DistSpec):
|
||||
"""set_dist_spec
|
||||
set dist spec and change the payloads.
|
||||
|
Reference in New Issue
Block a user