test_2p5d.py 1.2 KB
Newer Older
zbian's avatar
zbian committed
1
import pytest
Frank Lee's avatar
Frank Lee committed
2
3
import torch
import torch.multiprocessing as mp
zbian's avatar
zbian committed
4
5

from colossalai.core import global_context as gpc
Frank Lee's avatar
Frank Lee committed
6
7
8
9
10
from colossalai.initialize import launch
from checks_2p5d.check_layer_2p5d import check_linear, check_layernorm, check_attention, check_mlp, check_transformerlayer
from checks_2p5d.check_operation_2p5d import check_AB, check_ABT, check_ATB
from functools import partial

zbian's avatar
zbian committed
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33

CONFIG = dict(
    parallel=dict(
        pipeline=dict(size=1),
        tensor=dict(size=8, mode='2.5d', depth=2),
    ),
)


def check_operations():
    check_AB()
    check_ABT()
    check_ATB()


def check_layer():
    check_linear()
    check_layernorm()
    check_attention()
    check_mlp()
    check_transformerlayer()


Frank Lee's avatar
Frank Lee committed
34
def check_layer_and_operation(rank, world_size):
Frank Lee's avatar
Frank Lee committed
35
    launch(config=CONFIG,
Frank Lee's avatar
Frank Lee committed
36
37
38
39
40
41
           rank=rank,
           world_size=world_size,
           host='localhost',
           port=29922,
           backend='nccl')

zbian's avatar
zbian committed
42
    check_operations()
Frank Lee's avatar
Frank Lee committed
43
    check_layer()
zbian's avatar
zbian committed
44
    gpc.destroy()
Frank Lee's avatar
Frank Lee committed
45
46
47
48
49
50
51
52
    torch.cuda.empty_cache()


@pytest.mark.dist
def test_2p5d():
    world_size = 8
    run_func = partial(check_layer_and_operation, world_size=world_size)
    mp.spawn(run_func, nprocs=world_size)
zbian's avatar
zbian committed
53
54
55
56


if __name__ == '__main__':
    test_2p5d()