mirror of
https://github.com/hpcaitech/ColossalAI.git
synced 2025-09-06 11:32:10 +00:00
[npu] change device to accelerator api (#5239)
* update accelerator * fix timer * fix amp * update * fix * update bug * add error raise * fix autocast * fix set device * remove doc accelerator * update doc * update doc * update doc * use nullcontext * update cpu * update null context * change time limit for example * udpate * update * update * update * [npu] polish accelerator code --------- Co-authored-by: Xuanlei Zhao <xuanlei.zhao@gmail.com> Co-authored-by: zxl <43881818+oahzxl@users.noreply.github.com>
This commit is contained in:
@@ -7,7 +7,7 @@ from torch import nn
|
||||
from torch._utils import _flatten_dense_tensors, _unflatten_dense_tensors
|
||||
from torch.distributed import ProcessGroup, get_world_size
|
||||
|
||||
from colossalai.utils.device import get_current_device, get_rng_state, manual_seed, set_rng_state
|
||||
from colossalai.accelerator import get_accelerator
|
||||
|
||||
|
||||
class SeqParallelUtils:
|
||||
@@ -110,10 +110,10 @@ class Randomizer:
|
||||
# 1. get the current rng state
|
||||
# 2. set the seed and store the rng state
|
||||
# 3. recover the original rng state
|
||||
device_original_rng_state = get_rng_state()
|
||||
manual_seed(seed)
|
||||
self.device_rng_state = get_rng_state()
|
||||
set_rng_state(device_original_rng_state)
|
||||
device_original_rng_state = get_accelerator().get_rng_state()
|
||||
get_accelerator().manual_seed(seed)
|
||||
self.device_rng_state = get_accelerator().get_rng_state()
|
||||
get_accelerator().set_rng_state(device_original_rng_state)
|
||||
|
||||
# to the same for cpu rng state
|
||||
cpu_original_rng_state = torch.get_rng_state()
|
||||
@@ -122,10 +122,10 @@ class Randomizer:
|
||||
torch.set_rng_state(cpu_original_rng_state)
|
||||
|
||||
def _set_device_rng_state(self, rng_state):
|
||||
set_rng_state(rng_state)
|
||||
get_accelerator().set_rng_state(rng_state)
|
||||
|
||||
def _get_device_rng_state(self):
|
||||
current_state = get_rng_state()
|
||||
current_state = get_accelerator().get_rng_state()
|
||||
return current_state
|
||||
|
||||
def _set_cpu_rng_state(self, rng_state):
|
||||
@@ -210,7 +210,7 @@ class Randomizer:
|
||||
index = Randomizer.index()
|
||||
if dist.is_initialized():
|
||||
# convert the index to tensor
|
||||
index_tensor = torch.tensor(index, dtype=torch.int32, device=get_current_device())
|
||||
index_tensor = torch.tensor(index, dtype=torch.int32, device=get_accelerator().get_current_device())
|
||||
|
||||
# all gather the index
|
||||
gathered_index = [torch.zeros_like(index_tensor) for _ in range(dist.get_world_size(process_group))]
|
||||
@@ -232,7 +232,7 @@ class Randomizer:
|
||||
|
||||
if dist.is_initialized():
|
||||
# convert the index to tensor
|
||||
index_tensor = torch.tensor(index, dtype=torch.int32, device=get_current_device())
|
||||
index_tensor = torch.tensor(index, dtype=torch.int32, device=get_accelerator().get_current_device())
|
||||
|
||||
# all gather the index
|
||||
gathered_index = [torch.zeros_like(index_tensor) for _ in range(dist.get_world_size(process_group))]
|
||||
|
Reference in New Issue
Block a user