mirror of https://github.com/hpcaitech/ColossalAI
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
3.6 KiB
105 lines
3.6 KiB
3 years ago
|
import torch
|
||
3 years ago
|
from colossalai.gemini.stateful_tensor import StatefulTensor
|
||
3 years ago
|
from typing import Union, Tuple
|
||
|
|
||
|
|
||
|
def colo_tensor_mem_usage(tensor: Union[torch.Tensor, StatefulTensor]) -> Tuple[int, int]:
|
||
3 years ago
|
if isinstance(tensor, StatefulTensor):
|
||
3 years ago
|
t = tensor.payload
|
||
|
elif isinstance(tensor, torch.Tensor):
|
||
|
t = tensor
|
||
|
else:
|
||
|
return 0, 0
|
||
|
|
||
|
cuda_use, cpu_use = 0, 0
|
||
|
|
||
3 years ago
|
mem_use = t.storage().size() * t.element_size()
|
||
3 years ago
|
if t.device.type == 'cuda':
|
||
|
cuda_use += mem_use
|
||
|
elif t.device.type == 'cpu':
|
||
|
cpu_use += mem_use
|
||
|
|
||
|
return cuda_use, cpu_use
|
||
|
|
||
|
|
||
|
def colo_model_data_tensor_move(src_t: Union[StatefulTensor, torch.Tensor], tgt_t: Union[StatefulTensor,
|
||
|
torch.Tensor]) -> None:
|
||
3 years ago
|
"""
|
||
|
A colossal API for model data tensor move.
|
||
3 years ago
|
The src and target tensors could be resident on both CPU and GPU.
|
||
3 years ago
|
|
||
3 years ago
|
NOTE() The source tensor payload will be removed after this function.
|
||
3 years ago
|
|
||
3 years ago
|
The function will record the communication volume between CPU and GPU.
|
||
|
Args:
|
||
3 years ago
|
src_t (Union[StatefulTensor, torch.Tensor]): source tensor
|
||
3 years ago
|
tgt_t (Union[StatefulTensor, torch.Tensor]): target tensor
|
||
|
"""
|
||
3 years ago
|
if isinstance(src_t, StatefulTensor):
|
||
3 years ago
|
src_t_payload = src_t.payload
|
||
|
else:
|
||
|
src_t_payload = src_t.data
|
||
|
src_dev = src_t_payload.device
|
||
3 years ago
|
|
||
|
if isinstance(tgt_t, StatefulTensor):
|
||
3 years ago
|
tgt_t_payload = tgt_t.payload
|
||
|
else:
|
||
|
tgt_t_payload = tgt_t.data
|
||
|
|
||
|
tgt_t_payload.copy_(src_t_payload)
|
||
|
|
||
|
# remove payload of src_t
|
||
3 years ago
|
if isinstance(src_t, StatefulTensor):
|
||
|
src_t.set_null()
|
||
3 years ago
|
else:
|
||
3 years ago
|
src_t.data = torch.empty(0, device=src_dev, dtype=src_t_payload.dtype)
|
||
3 years ago
|
|
||
|
|
||
|
def colo_model_data_tensor_move_inline(t: Union[StatefulTensor, torch.Tensor], target_device: Union[torch.device,
|
||
|
int]) -> None:
|
||
3 years ago
|
"""
|
||
3 years ago
|
move a tensor to the target_device
|
||
|
Args:
|
||
|
t (Union[StatefulTensor, torch.Tensor]): the tensor be moved
|
||
|
target_device: a traget device, if type is int, it the index of cuda card.
|
||
|
"""
|
||
|
if not isinstance(target_device, torch.device):
|
||
|
target_device = torch.device(f'cuda:{target_device}')
|
||
|
|
||
3 years ago
|
if isinstance(t, torch.Tensor):
|
||
|
t.data = t.data.to(target_device)
|
||
|
elif isinstance(t, StatefulTensor):
|
||
|
t.move_to(target_device)
|
||
|
else:
|
||
|
raise TypeError(f'colo_model_data_tensor_move_inline dose not accept type {type(t)}')
|
||
3 years ago
|
|
||
|
|
||
|
def colo_model_data_move_to_cpu(t: Union[StatefulTensor, torch.Tensor]) -> None:
|
||
3 years ago
|
"""colo_model_data_move_to_cpu
|
||
3 years ago
|
move a model data tensor from gpu to cpu
|
||
|
Args:
|
||
|
t (Union[StatefulTensor, torch.Tensor]): _description_
|
||
|
"""
|
||
|
# TODO() optimize the tensor moving with non-blocking
|
||
3 years ago
|
if isinstance(t, torch.Tensor):
|
||
|
t.data = t.data.cpu()
|
||
|
elif isinstance(t, StatefulTensor):
|
||
|
t.move_to(torch.device('cpu'))
|
||
|
else:
|
||
|
raise TypeError(f'colo_model_data_move_to_cpu dose not accept type {type(t)}')
|
||
3 years ago
|
|
||
|
|
||
|
def colo_model_tensor_clone(t: Union[StatefulTensor, torch.Tensor], target_device: torch.device) -> torch.Tensor:
|
||
|
"""
|
||
|
Clone a model data tensor
|
||
|
Args:
|
||
|
t (Union[StatefulTensor, torch.Tensor]): a model data tensor
|
||
|
target_device (torch.device): the target device
|
||
|
Returns:
|
||
|
torch.Tensor: a cloned torch tensor
|
||
|
"""
|
||
3 years ago
|
# TODO() rename this function
|
||
|
colo_model_data_tensor_move_inline(t, target_device)
|
||
|
t_payload = t.payload if isinstance(t, StatefulTensor) else t
|
||
|
return t_payload
|