2022-03-01 10:17:01 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- encoding: utf-8 -*-
|
|
|
|
|
|
|
|
import copy
|
|
|
|
from functools import partial
|
|
|
|
|
|
|
|
import colossalai
|
|
|
|
import pytest
|
|
|
|
import torch
|
2022-03-02 10:28:29 +00:00
|
|
|
import torch.distributed as dist
|
2022-03-01 10:17:01 +00:00
|
|
|
import torch.multiprocessing as mp
|
2022-03-02 10:28:29 +00:00
|
|
|
from colossalai.context.parallel_mode import ParallelMode
|
|
|
|
from colossalai.core import global_context as gpc
|
2022-03-01 10:17:01 +00:00
|
|
|
from colossalai.utils import free_port
|
|
|
|
from colossalai.zero.sharded_model import ShardedModelV2
|
2022-03-02 10:28:29 +00:00
|
|
|
|
|
|
|
from common import CONFIG, Net, check_grads, check_grads_padding
|
2022-03-01 10:17:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
def run_fwd_bwd(model, x, enable_autocast=False):
|
|
|
|
model.train()
|
|
|
|
with torch.cuda.amp.autocast(enabled=enable_autocast):
|
|
|
|
y = model(x)
|
|
|
|
loss = y.sum()
|
|
|
|
loss = loss.float()
|
2022-03-02 10:28:29 +00:00
|
|
|
if isinstance(model, ShardedModelV2):
|
|
|
|
model.backward(loss)
|
|
|
|
else:
|
|
|
|
loss.backward()
|
|
|
|
|
2022-03-01 10:17:01 +00:00
|
|
|
|
|
|
|
def run_dist(rank, world_size, port):
|
2022-03-08 04:03:35 +00:00
|
|
|
colossalai.launch(config=CONFIG, rank=rank, world_size=world_size, host='localhost', port=port, backend='nccl')
|
2022-03-02 10:28:29 +00:00
|
|
|
|
2022-03-01 10:17:01 +00:00
|
|
|
model = Net(checkpoint=True).cuda()
|
|
|
|
zero_model = copy.deepcopy(model)
|
|
|
|
zero_model = ShardedModelV2(zero_model, process_group=gpc.get_group(ParallelMode.DATA))
|
|
|
|
|
|
|
|
for _ in range(2):
|
|
|
|
x = torch.rand(2, 5).cuda()
|
|
|
|
run_fwd_bwd(zero_model, x, False)
|
|
|
|
run_fwd_bwd(model, x, False)
|
2022-03-02 10:28:29 +00:00
|
|
|
if dist.get_world_size() > 1:
|
|
|
|
check_grads_padding(model, zero_model)
|
|
|
|
else:
|
|
|
|
check_grads(model, zero_model)
|
2022-03-01 10:17:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.dist
|
2022-03-08 04:03:35 +00:00
|
|
|
@pytest.mark.parametrize("world_size", [1, 2, 4])
|
|
|
|
def test_shard_model_v2(world_size):
|
2022-03-01 10:17:01 +00:00
|
|
|
run_func = partial(run_dist, world_size=world_size, port=free_port())
|
|
|
|
mp.spawn(run_func, nprocs=world_size)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2022-03-08 04:03:35 +00:00
|
|
|
test_shard_model_v2(world_size=2)
|