config.yml 17.6 KB
Newer Older
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
1
2
3
4
5
6
# Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
# Adopted from
# https://github.com/facebookresearch/detectron2/blob/master/.circleci/config.yml
7
8
#
# Pro tip: download circle ci cli to validate the config locally during development.
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
9

Min Xu's avatar
Min Xu committed
10
version: 2.1
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
11
12
13
14

# -------------------------------------------------------------------------------------
# Environments to run the jobs in
# -------------------------------------------------------------------------------------
15
cpu_py37: &cpu_py37
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
16
17
  docker:
    - image: circleci/python:3.7
18
  resource_class: large
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
19

20
21
22
cpu_py38: &cpu_py38
  docker:
    - image: circleci/python:3.8
23
  resource_class: large
24
25
26
27

cpu_py39: &cpu_py39
  docker:
    - image: circleci/python:3.9
28
  resource_class: large
29

30
31
# Here are list of GPU images:
#   https://circleci.com/docs/2.0/configuration-reference/#available-linux-gpu-images
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
32
33
34
gpu: &gpu
  environment:
    CUDA_VERSION: "10.1"
35
    CUDA_HOME: /usr/local/cuda-10.1
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
36
37
38
39
  machine:
    image: ubuntu-1604-cuda-10.1:201909-23
  resource_class: gpu.large

40
41
42
gpu_cu111: &gpu_cu111
  environment:
    CUDA_VERSION: "11.1"
43
    CUDA_HOME: /usr/local/cuda-11.1
44
45
46
47
  machine:
    image: ubuntu-1604-cuda-11.1:202012-01
  resource_class: gpu.large

Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# -------------------------------------------------------------------------------------
# Re-usable commands
# -------------------------------------------------------------------------------------
setup_venv: &setup_venv
  - run:
      name: Setup Virtual Env
      working_directory: ~/
      command: |
        python -m venv ~/venv
        echo ". ~/venv/bin/activate" >> $BASH_ENV
        . ~/venv/bin/activate
        python --version
        which python
        which pip
        pip install --upgrade pip

64
install_dep_160: &install_dep_160
65
  - run:
66
      name: Install Dependencies with torch 1.6.0
67
      command: |
68
69
        # make sure that apt-get retries if needed
        sudo sh -c "echo 'APT::Acquire::Retries "3";' > /etc/apt/apt.conf.d/80-retries"
70
        sudo apt-get update -y
71
        sudo apt-get install -y libopenmpi-dev
72
        # check if we have restored venv cache (/home/circleci/venv) correctly, if so, just skip
Min Xu's avatar
Min Xu committed
73
        if [ -f /home/circleci/venv/check_version.py ]; then python /home/circleci/venv/check_version.py torch eq 1.6 && exit 0; fi
74
        # start installing
75
        pip install --progress-bar off torch==1.6.0+cu101 torchvision==0.7.0+cu101 -f https://download.pytorch.org/whl/torch_stable.html
76
        pip install --progress-bar off -r requirements-test.txt
77
        pip install --progress-bar off -r requirements-benchmarks.txt
78
        pip install --progress-bar off git+https://github.com/msbaines/torch_pg.git@c85c96f#egg=torch-pg
79
        python -c 'import torch; print("Torch version:", torch.__version__)'
80
        python -c 'import torch; assert torch.__version__.split(".")[:2] == ["1", "6"], "wrong torch version"'
81
        python -m torch.utils.collect_env
Min Xu's avatar
Min Xu committed
82
        wget -O /home/circleci/venv/check_version.py https://raw.githubusercontent.com/min-xu-ai/check_verion/main/check_version.py
83

84
install_dep_171: &install_dep_171
85
  - run:
86
      name: Install Dependencies with torch 1.7.1
87
      command: |
88
89
        # make sure that apt-get retries if needed
        sudo sh -c "echo 'APT::Acquire::Retries "3";' > /etc/apt/apt.conf.d/80-retries"
90
        sudo apt-get update -y
91
        sudo apt-get install -y libopenmpi-dev
92
        # check if we have restored venv cache (/home/circleci/venv) correctly, if so, just skip
Min Xu's avatar
Min Xu committed
93
        if [ -f /home/circleci/venv/check_version.py ]; then python /home/circleci/venv/check_version.py torch eq 1.7 && exit 0; fi
94
        # start installing
95
96
97
98
99
100
101
        pip install --progress-bar off torch==1.7.1+cu110 torchvision==0.8.2+cu110 -f https://download.pytorch.org/whl/torch_stable.html
        pip install --progress-bar off -r requirements-test.txt
        pip install --progress-bar off -r requirements-benchmarks.txt
        pip install --progress-bar off git+https://github.com/msbaines/torch_pg.git@c85c96f#egg=torch-pg
        python -c 'import torch; print("Torch version:", torch.__version__)'
        python -c 'import torch; assert torch.__version__.split(".")[:2] == ["1", "7"], "wrong torch version"'
        python -m torch.utils.collect_env
Min Xu's avatar
Min Xu committed
102
        wget -O /home/circleci/venv/check_version.py https://raw.githubusercontent.com/min-xu-ai/check_verion/main/check_version.py
103

104
install_dep_181: &install_dep_181
105
  - run:
106
      name: Install Dependencies with torch 1.8.1
107
      command: |
108
109
        # make sure that apt-get retries if needed
        sudo sh -c "echo 'APT::Acquire::Retries "3";' > /etc/apt/apt.conf.d/80-retries"
110
        sudo apt-get update -y
111
        sudo apt-get install -y libopenmpi-dev
112
        # check if we have restored venv cache (/home/circleci/venv) correctly, if so, just skip
Min Xu's avatar
Min Xu committed
113
        if [ -f /home/circleci/venv/check_version.py ]; then python /home/circleci/venv/check_version.py torch eq 1.8 && exit 0; fi
114
        # start installing
115
        pip install --progress-bar off torch==1.8.1+cu101 torchvision==0.9.1+cu101 -f https://download.pytorch.org/whl/torch_stable.html
116
        pip install --progress-bar off -r requirements-test.txt
117
        pip install --progress-bar off -r requirements-benchmarks.txt
118
119
120
        python -c 'import torch; print("Torch version:", torch.__version__)'
        python -c 'import torch; assert torch.__version__.split(".")[:2] == ["1", "8"], "wrong torch version"'
        python -m torch.utils.collect_env
Min Xu's avatar
Min Xu committed
121
        wget -O /home/circleci/venv/check_version.py https://raw.githubusercontent.com/min-xu-ai/check_verion/main/check_version.py
122

123
install_repo: &install_repo
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
124
125
126
  - run:
      name: Install Repository
      command: |
127
128
129
        pip install .
        # Test import.
        python -c 'import sys; sys.path = sys.path[1:]; import fairscale'
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
130

131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
run_isort: &run_isort
   - run:
       name: Run Linter (isort)
       command: |
         isort . --check

run_black: &run_black
   - run:
       name: Run Linter (black)
       command: |
         black --check .

run_mypy: &run_mypy
   - run:
       name: Run type-checking (mypy)
       command: |
         mypy --ignore-missing-imports --scripts-are-modules --pretty .

run_flake8: &run_flake8
  - run:
      name: Run Linter (flake8)
      command: |
        flake8 --show-source --statistics

155
156
157
158
159
160
check_test_list: &check_test_list
  - run:
      name: Verify that unit test list files are correct
      command: |
        bash ./tests/ci_test_list_check.sh

161

Min Xu's avatar
Min Xu committed
162
163
164
165
# TODO (Min): figure out how to do coverage nightly or on-demand. Doing it
# on every commit seems like an overkill since we can easily figure out which
# code is not covered without looking at coverage results from each commit.
# Also, it is a long pole for testing time, which slows down development a lot.
msbaines's avatar
msbaines committed
166
167
168
169
run_coverage: &run_coverage
  - run:
      name: Run Unit Tests With Coverage
      command: |
170
        pytest --junitxml=test-results/junit.xml --verbose --timeout 60 --cov-report=xml --cov=./
msbaines's avatar
msbaines committed
171
172
173
        #Uploading test coverage for Python code
        bash <(curl -s https://codecov.io/bash) -f coverage.xml -cF Python

174
175
176
177
run_mpi_unittests: &run_mpi_unittests
  - run:
      name: Run MPI Unit Tests
      command: |
178
        mpirun -n 4 python -m pytest -p torch_pg.pytest --only-mpi --junitxml=test-results/junit.xml --verbose tests/nn/moe
179

Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
180

Jun Ru Anderson's avatar
Jun Ru Anderson committed
181
run_pipe_benchmark: &run_pipe_benchmark
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
182
  - run:
Jun Ru Anderson's avatar
Jun Ru Anderson committed
183
      name: Run Pipe Benchmark
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
184
      command: |
Jun Ru Anderson's avatar
Jun Ru Anderson committed
185
        python benchmarks/pipe.py
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
186

187
188
189
190
run_mp_pipe_benchmark: &run_mp_pipe_benchmark
  - run:
      name: Run Multiprocess Pipe Benchmark
      command: |
191
        python benchmarks/pipe.py --multiprocess --lazy-construction
192

193
194
195
196
run_oss_benchmark: &run_oss_benchmark
  - run:
      name: Run OSS Benchmark
      command: |
197
        python benchmarks/oss.py --world_size 4 --epochs 2
198
        python benchmarks/oss.py --check_regression --world_size 4 --optim_type oss_sharded_ddp
199
200

run_oss_gloo: &run_oss_gloo
201
202
203
204
205
206
  - run:
      name: Run OSS with Gloo
      command: |
        python benchmarks/oss.py --gloo --optim_type oss_ddp --epochs 2
        python benchmarks/oss.py --gloo --optim_type oss_sharded_ddp --epochs 2

207
run_oss_amp: &run_oss_amp
208
209
210
211
212
   - run:
       name: Run OSS with Torch AMP
       command: |
         python benchmarks/oss.py --amp --epochs 3 --optim_type oss_sharded_ddp

213
214
215
216
217
218
run_oss_for_each: &run_oss_for_each
   - run:
       name: Run OSS with Torch AMP and ForEach optmizer
       command: |
         python benchmarks/oss.py --amp --epochs 3 --optim_type oss_sharded_ddp --multi_tensor_optim

219
220
221
222
223
224
225
226
227
228

run_doc_build: &run_doc_build
   - run:
       name: Testing doc build
       command: |
         cd docs
         pip install --progress-bar off -r requirements.txt
         make help
         make singlehtml | tee make.out
         ! tail make.out | grep -q warning
229

230
231
232
233
234
235
236
237
# This is an alias to run all unit tests possible on a platform.
run_unittests: &run_unittests
   - run:
       name: Run all unit tests.
       # We run all and not stopping on failure on CPU since docker time is cheaper.
       command: |
         pytest --junitxml=test-results/junit.xml --verbose --timeout 60

Min Xu's avatar
Min Xu committed
238
commands:
239
240
241
242

   # This is a command (like a function) that run tests from a given test_list_file.
   # If test_list_file is not given, this results in an error.
   run_unittests_from_list:
Min Xu's avatar
Min Xu committed
243
     parameters:
244
       test_list_file:
Min Xu's avatar
Min Xu committed
245
         type: string
246
         default: "/dev/non_exist"  # Default to error out
Min Xu's avatar
Min Xu committed
247
248
249
250
     steps:
       - run:
           name: Run Unit Tests
           command: |
251
             if [ ! -f <<parameters.test_list_file>> ]; then exit 1; fi
252
             pytest --junitxml=test-results/junit.xml --verbose --timeout 60 `cat <<parameters.test_list_file>>`
Min Xu's avatar
Min Xu committed
253

Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
254
255
256
257
258
# -------------------------------------------------------------------------------------
# Jobs to run
# -------------------------------------------------------------------------------------

jobs:
259
260
  cpu_tests_py37:
    <<: *cpu_py37
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
261
262
263
264
265

    working_directory: ~/fairscale

    steps:
      - checkout
266
      - <<: *check_test_list
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
267
268
269
270
271
      - <<: *setup_venv

      # Cache the venv directory that contains dependencies
      - restore_cache:
          keys:
272
            - cache-key-cpu-py37-180-1-{{ checksum "setup.py"}}-{{ checksum "requirements-test.txt"}}
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
273

274
      - <<: *install_dep_171
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
275
276
277
278

      - save_cache:
          paths:
            - ~/venv
279
          key: cache-key-cpu-py37-180-1-{{ checksum "setup.py"}}-{{ checksum "requirements-test.txt"}}
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
280

281
      - <<: *install_repo
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
282

283
284
285
286
      - <<: *run_isort
      - <<: *run_black
      - <<: *run_mypy
      - <<: *run_flake8
287
      - <<: *run_unittests
288
289
290
291
292
      - <<: *run_mpi_unittests
      - <<: *run_doc_build

      - store_test_results:
          path: test-results
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
293

294
295
  cpu_tests_py38:
    <<: *cpu_py38
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
296

297
    working_directory: ~/fairscale
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
298

299
300
    steps:
      - checkout
301
      - <<: *check_test_list
302
      - <<: *setup_venv
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
303

304
305
306
      # Cache the venv directory that contains dependencies
      - restore_cache:
          keys:
307
            - cache-key-cpu-py38-180-1-{{ checksum "setup.py"}}-{{ checksum "requirements-test.txt"}}
308
309
310
311
312
      - <<: *install_dep_171

      - save_cache:
          paths:
            - ~/venv
313
          key: cache-key-cpu-py38-180-1-{{ checksum "setup.py"}}-{{ checksum "requirements-test.txt"}}
314

315
      - <<: *install_repo
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
316

317
318
319
320
      - <<: *run_isort
      - <<: *run_black
      - <<: *run_mypy
      - <<: *run_flake8
321
      - <<: *run_unittests
322
      - <<: *run_mpi_unittests
323
      - <<: *run_doc_build
324

Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
325
326
327
      - store_test_results:
          path: test-results

328
329
330
331
332
333
334
  cpu_tests_py39:
    <<: *cpu_py39

    working_directory: ~/fairscale

    steps:
      - checkout
335
      - <<: *check_test_list
336
337
338
339
340
      - <<: *setup_venv

      # Cache the venv directory that contains dependencies
      - restore_cache:
          keys:
341
            - cache-key-cpu-py39-181-0-{{ checksum "setup.py"}}-{{ checksum "requirements-test.txt"}}
342

343
      - <<: *install_dep_181
344
345
346
347

      - save_cache:
          paths:
            - ~/venv
348
          key: cache-key-cpu-py39-181-0-{{ checksum "setup.py"}}-{{ checksum "requirements-test.txt"}}
349

350
      - <<: *install_repo
351
352
353
354
355

      - <<: *run_isort
      - <<: *run_black
      - <<: *run_mypy
      - <<: *run_flake8
356
      - <<: *run_unittests
357
      # TODO(msb) - <<: *run_mpi_unittests
358
359
360
361
362
363
      - <<: *run_doc_build

      - store_test_results:
          path: test-results


364
  gpu_tests_160:
Min Xu's avatar
Min Xu committed
365
    parameters:
366
      test_list_file:
Min Xu's avatar
Min Xu committed
367
        type: string
368
        default: "/dev/non_exist"
369

370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
    <<: *gpu

    working_directory: ~/fairscale

    steps:
      - checkout

      - run: nvidia-smi

      - run: pyenv global 3.7.0

      - <<: *setup_venv

      # Cache the venv directory that contains dependencies
      - restore_cache:
          keys:
386
            - cache-key-gpu-160-101-{{ checksum "setup.py"}}-{{ checksum "requirements-test.txt"}}
387

388
      - <<: *install_dep_160
389
390
391
392

      - save_cache:
          paths:
            - ~/venv
393
          key: cache-key-gpu-160-101-{{ checksum "setup.py"}}-{{ checksum "requirements-test.txt"}}
394

395
      - <<: *install_repo
396

397
398
      - run_unittests_from_list:
          test_list_file: <<parameters.test_list_file>>
399
400
401
402

      - store_test_results:
          path: test-results

403
  gpu_tests_171:
Min Xu's avatar
Min Xu committed
404
    parameters:
405
      test_list_file:
Min Xu's avatar
Min Xu committed
406
        type: string
407
        default: "/dev/non_exist"
Min Xu's avatar
Min Xu committed
408

409
    <<: *gpu_cu111
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
410
411
412
413
414
415
416
417

    working_directory: ~/fairscale

    steps:
      - checkout

      - run: nvidia-smi

418
419
      # Run this to make sure we use python3 from the system.
      - run: pyenv global 3.8.6
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
420
421
422
423
424
425

      - <<: *setup_venv

      # Cache the venv directory that contains dependencies
      - restore_cache:
          keys:
426
            - cache-key-gpu-171-110-{{ checksum "setup.py"}}-{{ checksum "requirements-test.txt"}}
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
427

428
      - <<: *install_dep_171
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
429
430
431
432

      - save_cache:
          paths:
            - ~/venv
433
          key: cache-key-gpu-171-110-{{ checksum "setup.py"}}-{{ checksum "requirements-test.txt"}}
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
434

435
      - <<: *install_repo
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
436

437
438
      - run_unittests_from_list:
          test_list_file: <<parameters.test_list_file>>
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
439
440
441
442

      - store_test_results:
          path: test-results

443
  gpu_tests_181:
Min Xu's avatar
Min Xu committed
444
    parameters:
445
      test_list_file:
Min Xu's avatar
Min Xu committed
446
        type: string
447
        default: "/dev/non_exist"
Min Xu's avatar
Min Xu committed
448

449
    <<: *gpu
450
451
452
453
454
455
456
457

    working_directory: ~/fairscale

    steps:
      - checkout

      - run: nvidia-smi

458
      # Run this to make sure we use python3 from the system.
459
      - run: pyenv global 3.7.0
460
461
462
463
464
465

      - <<: *setup_venv

      # Cache the venv directory that contains dependencies
      - restore_cache:
          keys:
466
            - cache-key-gpu-181-101-{{ checksum "setup.py"}}-{{ checksum "requirements-test.txt"}}
467

468
      - <<: *install_dep_181
469
470
471
472

      - save_cache:
          paths:
            - ~/venv
473
          key: cache-key-gpu-181-101-{{ checksum "setup.py"}}-{{ checksum "requirements-test.txt"}}
474

475
      - <<: *install_repo
476

477
478
      - run_unittests_from_list:
          test_list_file: <<parameters.test_list_file>>
479
480
481
482

      - store_test_results:
          path: test-results

483
  benchmarks_1:
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
484
485
486
487
488
489
490
491
492
    <<: *gpu

    working_directory: ~/fairscale

    steps:
      - checkout

      - run: nvidia-smi

493
494
495
496
      - run: pyenv uninstall -f 3.7.0

      - run: pyenv install 3.7.0

Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
497
498
499
500
501
502
503
      - run: pyenv global 3.7.0

      - <<: *setup_venv

      # Cache the venv directory that contains dependencies
      - restore_cache:
          keys:
504
            - cache-key-benchmarks-181-101-{{ checksum "setup.py"}}-{{ checksum "requirements-test.txt"}}
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
505

506
507
508
509
510
      # Cache the MNIST directory that contains benchmark data
      - restore_cache:
          keys:
            - cache-key-benchmark-MNIST-{{ checksum "benchmarks/datasets/mnist.py"}}

511
      - <<: *install_dep_181
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
512
513
514
515

      - save_cache:
          paths:
            - ~/venv
516
          key: cache-key-benchmarks-181-101-{{ checksum "setup.py"}}-{{ checksum "requirements-test.txt"}}
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
517

518
      - <<: *install_repo
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
519

Jun Ru Anderson's avatar
Jun Ru Anderson committed
520
      - <<: *run_pipe_benchmark
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
521

522
523
      - <<: *run_mp_pipe_benchmark

524
525
526
      - <<: *run_oss_amp

      - <<: *run_oss_for_each
527

528
529
      - <<: *run_oss_gloo

530
531
532
533
534
      - save_cache:
          paths:
            - /tmp/MNIST
          key: cache-key-benchmark-MNIST-{{ checksum "benchmarks/datasets/mnist.py"}}

535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
  benchmarks_2:
    <<: *gpu

    working_directory: ~/fairscale

    steps:
      - checkout

      - run: nvidia-smi

      - run: pyenv uninstall -f 3.7.0

      - run: pyenv install 3.7.0

      - run: pyenv global 3.7.0

      - <<: *setup_venv

      # Cache the venv directory that contains dependencies
      - restore_cache:
          keys:
556
            - cache-key-benchmarks-181-101-{{ checksum "setup.py"}}-{{ checksum "requirements-test.txt"}}
557

558
559
560
561
562
563

      # Cache the MNIST directory that contains benchmark data
      - restore_cache:
          keys:
            - cache-key-benchmark-MNIST-{{ checksum "benchmarks/datasets/mnist.py"}}

564
      - <<: *install_dep_181
565
566
567
568

      - save_cache:
          paths:
            - ~/venv
569
          key: cache-key-benchmarks-181-101-{{ checksum "setup.py"}}-{{ checksum "requirements-test.txt"}}
570

571
      - <<: *install_repo
572
573

      - <<: *run_oss_benchmark
574

575
576
577
578
579
      - save_cache:
          paths:
            - /tmp/MNIST
          key: cache-key-benchmark-MNIST-{{ checksum "benchmarks/datasets/mnist.py"}}

Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
580
581
582
583
584

workflows:
  version: 2
  build:
    jobs:
585
586
587
      - cpu_tests_py37
      - cpu_tests_py38
      - cpu_tests_py39
Min Xu's avatar
Min Xu committed
588
      - gpu_tests_160:
589
          test_list_file: tests/ci_test_list_1.txt
Min Xu's avatar
Min Xu committed
590
      - gpu_tests_171:
591
          test_list_file: tests/ci_test_list_1.txt
592
      - gpu_tests_181:
593
          test_list_file: tests/ci_test_list_1.txt
Min Xu's avatar
Min Xu committed
594
      - gpu_tests_160:
595
          test_list_file: tests/ci_test_list_2.txt
Min Xu's avatar
Min Xu committed
596
      - gpu_tests_171:
597
          test_list_file: tests/ci_test_list_2.txt
598
      - gpu_tests_181:
599
          test_list_file: tests/ci_test_list_2.txt
Min Xu's avatar
Min Xu committed
600
      - gpu_tests_160:
601
          test_list_file: tests/ci_test_list_3.txt
Min Xu's avatar
Min Xu committed
602
      - gpu_tests_171:
603
          test_list_file: tests/ci_test_list_3.txt
604
      - gpu_tests_181:
605
          test_list_file: tests/ci_test_list_3.txt
606
607
      - benchmarks_1
      - benchmarks_2