mirror of
https://github.com/hpcaitech/ColossalAI.git
synced 2025-09-09 04:50:17 +00:00
[shardformer] Add layernorm (#4072)
* add layernorm to bert * add layernorm test * add layernorm test with load state dict * add use_mixedfusedLN in shard config * refactor policy to support fused_layernorm
This commit is contained in:
45
tests/test_shardformer/test_layer/test_layernorm.py
Normal file
45
tests/test_shardformer/test_layer/test_layernorm.py
Normal file
@@ -0,0 +1,45 @@
|
||||
import torch
|
||||
import torch.distributed as dist
|
||||
import torch.nn as nn
|
||||
from torch.testing import assert_close
|
||||
|
||||
import colossalai
|
||||
from colossalai.shardformer.layer import LayerNorm1D
|
||||
from colossalai.testing import rerun_if_address_is_in_use, spawn
|
||||
|
||||
|
||||
def check_layernorm_1d():
|
||||
norm = nn.LayerNorm(128, 0.00001).cuda()
|
||||
norm1d = LayerNorm1D.from_native_module(norm, process_group=None)
|
||||
|
||||
assert norm1d.weight.shape == torch.Size([128])
|
||||
|
||||
# ensure state dict is reversibly loadable
|
||||
norm.load_state_dict(norm1d.state_dict())
|
||||
norm1d.load_state_dict(norm.state_dict())
|
||||
|
||||
# check computation correctness
|
||||
x = torch.rand(4, 128).cuda()
|
||||
out = norm(x)
|
||||
gather_out = norm1d(x)
|
||||
assert_close(out, gather_out)
|
||||
|
||||
# check backward correctness
|
||||
out.sum().backward()
|
||||
gather_out.sum().backward()
|
||||
|
||||
assert_close(norm.weight.grad, norm1d.weight.grad)
|
||||
|
||||
|
||||
def run_dist(rank, world_size, port):
|
||||
colossalai.launch(config={}, rank=rank, world_size=world_size, host='localhost', port=port, backend='nccl')
|
||||
check_layernorm_1d()
|
||||
|
||||
|
||||
@rerun_if_address_is_in_use()
|
||||
def test_layernorm_1d():
|
||||
spawn(run_dist, nprocs=2)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
test_layernorm_1d()
|
Reference in New Issue
Block a user