-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.test.yml
50 lines (45 loc) · 1.1 KB
/
docker-compose.test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
version: '2.3'
services:
test-cpu-base:
build:
context: .
dockerfile: Dockerfile.test.cpu
args:
UBUNTU_VERSION: "22.04"
MPI_KIND: None
PYTHON_VERSION: "3.10"
PYTORCH_VERSION: "1.13.1"
NEOMEM_BUILD_FLAGS:
privileged: true
shm_size: 8gb
###############################################
# CPU
###############################################
# Python 3.10, PyTorch 1.13.1
test-cpu-openmpi-py3_10-torch1_13_1:
extends: test-cpu-base
build:
args:
MPI_KIND: openmpi
test-cpu-mpich-py3_10-torch1_13_1:
extends: test-cpu-base
build:
args:
MPI_KIND: mpich
test-cpu-oneccl-py3_10-torch1_13_1:
extends: test-cpu-base
build:
args:
MPI_KIND: ONECCL
# Python 3.10, PyTorch 2.1.0
test-cpu-openmpi-py3_10-torch2_1_0:
extends: test-cpu-base
build:
args:
PYTHON_VERSION: "3.10"
PYTORCH_VERSION: "2.1.0"
MPI_KIND: openmpi
###############################################
# GPU
###############################################
# to be done