File size: 413 Bytes
4e9ddf9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Example:
# Four 4-GPU nodes (node01 to node04), one container per GPU.
# node01 and node02 have four GPUs, and hence four containers.
# node03 and node04 have just two GPUs, and hence two containers.
# With this configuration, 2 * 4 + 2 * 2 = 12 jobs will run in parallel.
- hostname:
    - node01
    - node02
  gpu:
    - 0
    - 1
    - 2
    - 3
- hostname:
    - node03
    - node04
  gpu:
    - 0
    - 1