mirror of
https://github.com/hpcaitech/ColossalAI.git
synced 2026-01-05 07:34:30 +00:00
Migrated project
This commit is contained in:
15
colossalai/nn/layer/parallel_sequence/_utils.py
Normal file
15
colossalai/nn/layer/parallel_sequence/_utils.py
Normal file
@@ -0,0 +1,15 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- encoding: utf-8 -*-
|
||||
|
||||
|
||||
def _calc_incoming_device_range(i, rank, world_size, sub_seq_length):
|
||||
device_of_incoming_k = (rank - i - 1) % world_size
|
||||
start_idx = sub_seq_length * device_of_incoming_k
|
||||
end_idx = sub_seq_length * (device_of_incoming_k + 1)
|
||||
return start_idx, end_idx
|
||||
|
||||
|
||||
def _calc_current_device_range(rank, sub_seq_length):
|
||||
start_idx = sub_seq_length * rank
|
||||
end_idx = sub_seq_length * (rank + 1)
|
||||
return start_idx, end_idx
|
||||
Reference in New Issue
Block a user