test_optim.py 7.2 KB
Newer Older
1
2
3
4
import pytest
import torch
import torch.distributed as dist
from torch.nn.parallel import DistributedDataParallel as DDP
HELSON's avatar
HELSON committed
5
from torch.testing import assert_close
6
7
8
9

import colossalai
from colossalai.amp import convert_to_apex_amp
from colossalai.nn.optimizer import HybridAdam
10
from colossalai.testing import parameterize, rerun_if_address_is_in_use, spawn
11
from colossalai.utils.cuda import get_current_device
12
13
14
from colossalai.zero import ColoInitContext, ZeroDDP, ZeroOptimizer, post_process_colo_init_ctx
from colossalai.zero.gemini.chunk import ChunkManager, init_chunk_manager, search_chunk_configuration
from colossalai.zero.gemini.gemini_mgr import GeminiManager
15
from tests.components_to_test import run_fwd_bwd
16
from tests.components_to_test.registry import non_distributed_component_funcs
HELSON's avatar
HELSON committed
17
from tests.test_tensor.common_utils import debug_print, set_seed
18

19
20
21
# this model is large enough to slice to chunks
TEST_MODELS = ['gpt2']
# these models are too small, all parameters in these models are compacted into one chunk
22
EXAMPLE_MODELS = ['albert', 'beit', 'bert', 'hanging_param_model', 'nested_model', 'repeated_computed_layers']
23

Hongxin Liu's avatar
Hongxin Liu committed
24
25
26
27
28
29
# bfloat16 cannot represent them exactly
BF16_IGNORED_KEYS = [
    'albert.embeddings.word_embeddings.weight',
    'albert.embeddings.position_embeddings.weight',
    'masked_bias',
]
30

Hongxin Liu's avatar
Hongxin Liu committed
31
32
33

def check_param(model: ZeroDDP, torch_model: torch.nn.Module, dtype: torch.dtype):
    zero_dict = model.state_dict(only_rank_0=False, dtype=dtype)
34
35
36
37
38
39
    torch_dict = torch_model.state_dict()

    for key, value in torch_dict.items():
        # key is 'module.model.PARAMETER', so we truncate it
        key = key[7:]
        assert key in zero_dict, "{} not in ZeRO dictionary.".format(key)
Hongxin Liu's avatar
Hongxin Liu committed
40
41
42
43
44
45
        temp_zero_value = zero_dict[key].to(device=value.device)
        if dtype is torch.bfloat16 and any(k in key for k in BF16_IGNORED_KEYS):
            continue
        rtol, atol = 1e-3, 4e-3
        if dtype is torch.bfloat16:
            rtol, atol = 4e-3, 8e-3
46
        # debug_print([0], "max range: ", key, torch.max(torch.abs(value - temp_zero_value)))
Hongxin Liu's avatar
Hongxin Liu committed
47
48
49
50
51
        assert_close(value.float(),
                     temp_zero_value.float(),
                     rtol=rtol,
                     atol=atol,
                     msg=lambda s: s + f'\n{key}\n{temp_zero_value.dtype}')
52
53


HELSON's avatar
HELSON committed
54
@parameterize('placement_policy', ['cuda', 'cpu', 'auto', 'const'])
55
@parameterize('model_name', TEST_MODELS)
Hongxin Liu's avatar
Hongxin Liu committed
56
57
@parameterize('mixed_precision', [torch.half, torch.bfloat16])
def exam_model_step(placement_policy, model_name: str, mixed_precision: torch.dtype):
58
    set_seed(42)
59
    get_components_func = non_distributed_component_funcs.get_callable(model_name)
60
61
    model_builder, train_dataloader, test_dataloader, optimizer_class, criterion = get_components_func()

HELSON's avatar
HELSON committed
62
63
64
65
66
67
    torch_model = model_builder().cuda()
    amp_config = dict(opt_level='O2', keep_batchnorm_fp32=False, loss_scale=128)
    torch_optim = torch.optim.Adam(torch_model.parameters(), lr=1e-3)
    torch_model, torch_optim = convert_to_apex_amp(torch_model, torch_optim, amp_config)
    torch_model = DDP(torch_model, device_ids=[dist.get_rank()])

68
69
    init_dev = get_current_device()
    with ColoInitContext(device=init_dev):
70
        model = model_builder()
71

72
    for torch_p, p in zip(torch_model.parameters(), model.parameters()):
HELSON's avatar
HELSON committed
73
        p.data.copy_(torch_p.data)
74
75

    world_size = torch.distributed.get_world_size()
76
    config_dict, *_ = search_chunk_configuration(model, search_range_mb=1, search_interval_byte=100)
77
78
79
80
81
82
83
84
    config_dict[world_size]['chunk_size'] = 5000
    config_dict[world_size]['keep_gathered'] = False
    if placement_policy != 'cuda':
        init_device = torch.device('cpu')
    else:
        init_device = None
    chunk_manager = ChunkManager(config_dict, init_device=init_device)
    gemini_manager = GeminiManager(placement_policy, chunk_manager)
Hongxin Liu's avatar
Hongxin Liu committed
85
    model = ZeroDDP(model, gemini_manager, pin_memory=True, mixed_precision=mixed_precision)
86
87

    optimizer = HybridAdam(model.parameters(), lr=1e-3)
HELSON's avatar
HELSON committed
88
    zero_optim = ZeroOptimizer(optimizer, model, initial_scale=128)
89
90
91
92
93

    model.eval()
    torch_model.eval()

    set_seed(dist.get_rank() * 3 + 128)
Hongxin Liu's avatar
Hongxin Liu committed
94
    rtol, atol = 1e-4, 1e-5
95
    for i, (input_ids, label) in enumerate(train_dataloader):
96
97
        if i > 2:
            break
HELSON's avatar
HELSON committed
98
        input_ids, label = input_ids.cuda(), label.cuda()
99
100
101
        zero_optim.zero_grad()
        torch_optim.zero_grad()

HELSON's avatar
HELSON committed
102
103
        torch_loss = run_fwd_bwd(torch_model, input_ids, label, criterion, torch_optim)
        loss = run_fwd_bwd(model, input_ids, label, criterion, zero_optim)
Hongxin Liu's avatar
Hongxin Liu committed
104
        assert_close(torch_loss, loss, rtol=rtol, atol=atol)
105
106
107
108

        zero_optim.step()
        torch_optim.step()

Hongxin Liu's avatar
Hongxin Liu committed
109
        check_param(model, torch_model, mixed_precision)
110
111


112
113
@parameterize('placement_policy', ['cuda', 'cpu', 'auto', 'const'])
@parameterize('model_name', EXAMPLE_MODELS)
Hongxin Liu's avatar
Hongxin Liu committed
114
115
@parameterize('mixed_precision', [torch.half, torch.bfloat16])
def exam_tiny_example(placement_policy, model_name: str, mixed_precision: torch.dtype):
HELSON's avatar
HELSON committed
116
    set_seed(2008)
117
    get_components_func = non_distributed_component_funcs.get_callable(model_name)
118
119
    model_builder, train_dataloader, test_dataloader, optimizer_class, criterion = get_components_func()

HELSON's avatar
HELSON committed
120
121
122
123
124
125
    torch_model = model_builder().cuda()
    amp_config = dict(opt_level='O2', keep_batchnorm_fp32=False, loss_scale=2)
    torch_optim = torch.optim.Adam(torch_model.parameters(), lr=1e-3)
    torch_model, torch_optim = convert_to_apex_amp(torch_model, torch_optim, amp_config)
    torch_model = DDP(torch_model, device_ids=[dist.get_rank()])

126
127
    init_dev = get_current_device()
    with ColoInitContext(device=init_dev):
128
        model = model_builder()
129

130
    for torch_p, p in zip(torch_model.parameters(), model.parameters()):
HELSON's avatar
HELSON committed
131
        p.data.copy_(torch_p.data)
132
133
134

    chunk_manager = init_chunk_manager(model=model, init_device=get_current_device(), search_range_mb=1)
    gemini_manager = GeminiManager(placement_policy, chunk_manager)
Hongxin Liu's avatar
Hongxin Liu committed
135
    model = ZeroDDP(model, gemini_manager, pin_memory=True, mixed_precision=mixed_precision)
136
137
138
139
140
141
142
    optimizer = HybridAdam(model.parameters(), lr=1e-3)
    zero_optim = ZeroOptimizer(optimizer, model, initial_scale=2)

    model.eval()
    torch_model.eval()

    set_seed(dist.get_rank() * 3 + 128)
Hongxin Liu's avatar
Hongxin Liu committed
143
144
145
    rtol, atol = 1.5e-6, 2e-5
    if mixed_precision is torch.bfloat16:
        rtol, atol = 2e-3, 2e-3
146
    for i, (input_ids, label) in enumerate(train_dataloader):
147
148
149
        if i > 2:
            break

HELSON's avatar
HELSON committed
150
151
152
        input_ids = input_ids.cuda()
        label = label.cuda()

153
154
155
        zero_optim.zero_grad()
        torch_optim.zero_grad()

HELSON's avatar
HELSON committed
156
157
        torch_loss = run_fwd_bwd(torch_model, input_ids, label, criterion, torch_optim)
        loss = run_fwd_bwd(model, input_ids, label, criterion, zero_optim)
Hongxin Liu's avatar
Hongxin Liu committed
158
        assert_close(torch_loss, loss, rtol=rtol, atol=atol)    # atol should be 2e-5 for torch lower than 1.12
159
160
161
162

        zero_optim.step()
        torch_optim.step()

Hongxin Liu's avatar
Hongxin Liu committed
163
        check_param(model, torch_model, mixed_precision)
164
165


166
167
168
def run_dist(rank, world_size, port):
    config = {}
    colossalai.launch(config=config, rank=rank, world_size=world_size, host='localhost', port=port, backend='nccl')
169
    exam_model_step()
170
    exam_tiny_example()
171
172
173
174
175


@pytest.mark.dist
@pytest.mark.parametrize('world_size', [1, 4])
@rerun_if_address_is_in_use()
176
def test_optim(world_size):
177
    spawn(run_dist, world_size)
178
179
180


if __name__ == '__main__':
HELSON's avatar
HELSON committed
181
    test_optim(1)