config.yml 61.7 KB
Newer Older
1
2
3
4
version: 2.1

# How to test the Linux jobs:
#   - Install CircleCI local CLI: https://circleci.com/docs/2.0/local-cli/
Edward Z. Yang's avatar
Edward Z. Yang committed
5
6
7
#   - circleci config process .circleci/config.yml > gen.yml && circleci local execute -c gen.yml --job binary_linux_wheel_py3.7
#     - Replace binary_linux_wheel_py3.7 with the name of the job you want to test.
#       Job names are 'name:' key.
8

9
executors:
10
  windows-cpu:
11
    machine:
12
13
14
15
16
17
18
19
      resource_class: windows.xlarge
      image: windows-server-2019-vs2019:stable
      shell: bash.exe

  windows-gpu:
    machine:
      resource_class: windows.gpu.nvidia.medium
      image: windows-server-2019-nvidia:stable
20
21
      shell: bash.exe

22
23
24
25
26
commands:
  checkout_merge:
    description: "checkout merge branch"
    steps:
      - checkout
27
28
29
30
31
32
33
34
35
#     - run:
#         name: Checkout merge branch
#         command: |
#           set -ex
#           BRANCH=$(git rev-parse --abbrev-ref HEAD)
#           if [[ "$BRANCH" != "master" ]]; then
#             git fetch --force origin ${CIRCLE_BRANCH}/merge:merged/${CIRCLE_BRANCH}
#             git checkout "merged/$CIRCLE_BRANCH"
#           fi
36
37
38
39
40
41
42
43
44
45
46
47
  designate_upload_channel:
    description: "inserts the correct upload channel into ${BASH_ENV}"
    steps:
      - run:
          name: adding UPLOAD_CHANNEL to BASH_ENV
          command: |
            our_upload_channel=nightly
            # On tags upload to test instead
            if [[ -n "${CIRCLE_TAG}" ]]; then
              our_upload_channel=test
            fi
            echo "export UPLOAD_CHANNEL=${our_upload_channel}" >> ${BASH_ENV}
48

49
50
51
52
53
54
55
56
binary_common: &binary_common
  parameters:
    # Edit these defaults to do a release`
    build_version:
      description: "version number of release binary; by default, build a nightly"
      type: string
      default: ""
    pytorch_version:
57
      description: "PyTorch version to build against; by default, use a nightly"
58
      type: string
59
      default: ""
60
61
62
63
    # Don't edit these
    python_version:
      description: "Python version to build against (e.g., 3.7)"
      type: string
Edward Z. Yang's avatar
Edward Z. Yang committed
64
65
    cu_version:
      description: "CUDA version to build against, in CU format (e.g., cpu or cu100)"
66
67
68
69
70
      type: string
    unicode_abi:
      description: "Python 2.7 wheel only: whether or not we are cp27mu (default: no)"
      type: string
      default: ""
Edward Z. Yang's avatar
Edward Z. Yang committed
71
72
73
    wheel_docker_image:
      description: "Wheel only: what docker image to use"
      type: string
74
      default: "pytorch/manylinux-cuda101"
75
76
77
78
  environment:
    PYTHON_VERSION: << parameters.python_version >>
    PYTORCH_VERSION: << parameters.pytorch_version >>
    UNICODE_ABI: << parameters.unicode_abi >>
Edward Z. Yang's avatar
Edward Z. Yang committed
79
    CU_VERSION: << parameters.cu_version >>
80

81
jobs:
82
83
84
85
86
87
88
  circleci_consistency:
    docker:
      - image: circleci/python:3.7
    steps:
      - checkout
      - run:
          command: |
89
            pip install --user --progress-bar off jinja2 pyyaml
90
91
92
            python .circleci/regenerate.py
            git diff --exit-code || (echo ".circleci/config.yml not in sync with config.yml.in! Run .circleci/regenerate.py to update config"; exit 1)

93
94
95
96
97
98
99
100
  python_lint:
    docker:
      - image: circleci/python:3.7
    steps:
      - checkout
      - run:
          command: |
            pip install --user --progress-bar off flake8 typing
101
102
103
104
105
106
107
108
109
            flake8 --config=setup.cfg .

  python_type_check:
    docker:
      - image: circleci/python:3.7
    steps:
      - checkout
      - run:
          command: |
110
            sudo apt-get update -y
111
112
            pip install --user --progress-bar off numpy mypy
            pip install --user --progress-bar off --pre torch -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
113
            pip install --user --progress-bar off --editable .
114
            mypy --config-file mypy.ini
115

116
117
118
119
120
121
122
123
124
125
126
  clang_format:
    docker:
      - image: circleci/python:3.7
    steps:
      - checkout
      - run:
          command: |
            sudo apt-get update -y
            sudo apt-get install -y clang-format
            ./travis-scripts/run-clang-format/run-clang-format.py -r torchvision/csrc

127
128
129
  binary_linux_wheel:
    <<: *binary_common
    docker:
Edward Z. Yang's avatar
Edward Z. Yang committed
130
      - image: << parameters.wheel_docker_image >>
131
132
    resource_class: 2xlarge+
    steps:
133
      - checkout_merge
134
135
136
      - run: packaging/build_wheel.sh
      - store_artifacts:
          path: dist
Edward Z. Yang's avatar
Edward Z. Yang committed
137
138
139
140
      - persist_to_workspace:
          root: dist
          paths:
            - "*"
141
142
143
144

  binary_linux_conda:
    <<: *binary_common
    docker:
145
      - image: "pytorch/conda-cuda"
146
    resource_class: 2xlarge+
147
    steps:
148
      - checkout_merge
149
150
151
      - run: packaging/build_conda.sh
      - store_artifacts:
          path: /opt/conda/conda-bld/linux-64
Edward Z. Yang's avatar
Edward Z. Yang committed
152
153
154
155
      - persist_to_workspace:
          root: /opt/conda/conda-bld/linux-64
          paths:
            - "*"
156
157
      - store_test_results:
          path: build_results/
158

Francisco Massa's avatar
Francisco Massa committed
159
  binary_win_conda:
160
161
    <<: *binary_common
    executor: windows-cpu
162
163
164
165
166
    steps:
      - checkout_merge
      - run:
          name: Build conda packages
          command: |
167
168
169
170
171
172
173
            set -ex
            source packaging/windows/internal/vc_install_helper.sh
            packaging/windows/internal/cuda_install.bat
            eval "$('/C/tools/miniconda3/Scripts/conda.exe' 'shell.bash' 'hook')"
            conda activate base
            conda install -yq conda-build "conda-package-handling!=1.5.0"
            packaging/build_conda.sh
174
            rm /C/tools/miniconda3/conda-bld/win-64/vs${VC_YEAR}*.tar.bz2
175
      - store_artifacts:
176
          path: C:/tools/miniconda3/conda-bld/win-64
177
      - persist_to_workspace:
178
          root: C:/tools/miniconda3/conda-bld/win-64
179
180
181
182
183
          paths:
            - "*"
      - store_test_results:
          path: build_results/

184
  binary_win_wheel:
185
186
    <<: *binary_common
    executor: windows-cpu
187
188
189
190
191
    steps:
      - checkout_merge
      - run:
          name: Build wheel packages
          command: |
192
193
194
195
            set -ex
            source packaging/windows/internal/vc_install_helper.sh
            packaging/windows/internal/cuda_install.bat
            packaging/build_wheel.sh
196
      - store_artifacts:
197
          path: dist
198
      - persist_to_workspace:
199
          root: dist
200
201
202
203
204
          paths:
            - "*"
      - store_test_results:
          path: build_results/

205
206
207
208
209
  binary_macos_wheel:
    <<: *binary_common
    macos:
      xcode: "9.0"
    steps:
210
      - checkout_merge
211
212
213
214
215
216
217
218
219
220
221
      - run:
          # Cannot easily deduplicate this as source'ing activate
          # will set environment variables which we need to propagate
          # to build_wheel.sh
          command: |
            curl -o conda.sh https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
            sh conda.sh -b
            source $HOME/miniconda3/bin/activate
            packaging/build_wheel.sh
      - store_artifacts:
          path: dist
Edward Z. Yang's avatar
Edward Z. Yang committed
222
223
224
225
      - persist_to_workspace:
          root: dist
          paths:
            - "*"
226
227
228
229
230
231

  binary_macos_conda:
    <<: *binary_common
    macos:
      xcode: "9.0"
    steps:
232
      - checkout_merge
233
234
235
236
237
238
239
240
241
      - run:
          command: |
            curl -o conda.sh https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
            sh conda.sh -b
            source $HOME/miniconda3/bin/activate
            conda install -yq conda-build
            packaging/build_conda.sh
      - store_artifacts:
          path: /Users/distiller/miniconda3/conda-bld/osx-64
Edward Z. Yang's avatar
Edward Z. Yang committed
242
243
244
245
      - persist_to_workspace:
          root: /Users/distiller/miniconda3/conda-bld/osx-64
          paths:
            - "*"
246
247
      - store_test_results:
          path: build_results/
Edward Z. Yang's avatar
Edward Z. Yang committed
248
249
250
251
252
253
254
255

  # Requires org-member context
  binary_conda_upload:
    docker:
      - image: continuumio/miniconda
    steps:
      - attach_workspace:
          at: ~/workspace
256
      - designate_upload_channel
Edward Z. Yang's avatar
Edward Z. Yang committed
257
258
259
260
261
      - run:
          command: |
            # Prevent credential from leaking
            conda install -yq anaconda-client
            set -x
262
            anaconda  -t "${CONDA_PYTORCHBOT_TOKEN}" upload ~/workspace/*.tar.bz2 -u "pytorch-${UPLOAD_CHANNEL}" --label main --no-progress --force
Edward Z. Yang's avatar
Edward Z. Yang committed
263
264
265

  # Requires org-member context
  binary_wheel_upload:
Edward Z. Yang's avatar
Edward Z. Yang committed
266
267
268
269
    parameters:
      subfolder:
        description: "What whl subfolder to upload to, e.g., blank or cu100/ (trailing slash is important)"
        type: string
Edward Z. Yang's avatar
Edward Z. Yang committed
270
271
272
273
274
    docker:
      - image: circleci/python:3.7
    steps:
      - attach_workspace:
          at: ~/workspace
275
      - designate_upload_channel
Edward Z. Yang's avatar
Edward Z. Yang committed
276
277
278
279
280
281
282
283
284
285
      - checkout
      - run:
          command: |
            pip install --user awscli
            export PATH="$HOME/.local/bin:$PATH"
            # Prevent credential from leaking
            set +x
            export AWS_ACCESS_KEY_ID="${PYTORCH_BINARY_AWS_ACCESS_KEY_ID}"
            export AWS_SECRET_ACCESS_KEY="${PYTORCH_BINARY_AWS_SECRET_ACCESS_KEY}"
            set -x
Edward Z. Yang's avatar
Edward Z. Yang committed
286
            for pkg in ~/workspace/*.whl; do
287
              aws s3 cp "$pkg" "s3://pytorch/whl/${UPLOAD_CHANNEL}/<< parameters.subfolder >>" --acl public-read
Edward Z. Yang's avatar
Edward Z. Yang committed
288
            done
289

290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
  unittest_linux_cpu:
    <<: *binary_common
    docker:
      - image: "pytorch/manylinux-cuda102"
    resource_class: 2xlarge+
    steps:
      - checkout
      - run:
          name: Generate cache key
          # This will refresh cache on Sundays, nightly build should generate new cache.
          command: echo "$(date +"%Y-%U")" > .circleci-weekly
      - restore_cache:

          keys:
            - env-v2-linux-{{ arch }}-py<< parameters.python_version >>-{{ checksum ".circleci/unittest/linux/scripts/environment.yml" }}-{{ checksum ".circleci-weekly" }}

      - run:
          name: Setup
          command: .circleci/unittest/linux/scripts/setup_env.sh
      - save_cache:

          key: env-v2-linux-{{ arch }}-py<< parameters.python_version >>-{{ checksum ".circleci/unittest/linux/scripts/environment.yml" }}-{{ checksum ".circleci-weekly" }}

          paths:
            - conda
            - env
      - run:
          name: Install torchvision
          command: .circleci/unittest/linux/scripts/install.sh
      - run:
          name: Run tests
          command: .circleci/unittest/linux/scripts/run_test.sh
      - run:
          name: Post process
          command: .circleci/unittest/linux/scripts/post_process.sh
      - store_test_results:
          path: test-results

  unittest_linux_gpu:
    <<: *binary_common
    machine:
      image: ubuntu-1604-cuda-10.1:201909-23
    resource_class: gpu.small
    environment:
      image_name: "pytorch/manylinux-cuda101"
    steps:
      - checkout
      - run:
          name: Generate cache key
          # This will refresh cache on Sundays, nightly build should generate new cache.
          command: echo "$(date +"%Y-%U")" > .circleci-weekly
      - restore_cache:

          keys:
            - env-v2-linux-{{ arch }}-py<< parameters.python_version >>-{{ checksum ".circleci/unittest/linux/scripts/environment.yml" }}-{{ checksum ".circleci-weekly" }}

      - run:
          name: Setup
          command: docker run -t --gpus all -v $PWD:$PWD -w $PWD "${image_name}" .circleci/unittest/linux/scripts/setup_env.sh
      - save_cache:

          key: env-v2-linux-{{ arch }}-py<< parameters.python_version >>-{{ checksum ".circleci/unittest/linux/scripts/environment.yml" }}-{{ checksum ".circleci-weekly" }}

          paths:
            - conda
            - env
      - run:
          name: Install torchvision
          command: docker run -t --gpus all -v $PWD:$PWD -w $PWD "${image_name}" .circleci/unittest/linux/scripts/install.sh
      - run:
          name: Run tests
          command: docker run -t --gpus all -v $PWD:$PWD -w $PWD "${image_name}" .circleci/unittest/linux/scripts/run_test.sh
      - run:
          name: Post Process
          command: docker run -t --gpus all -v $PWD:$PWD -w $PWD "${image_name}" .circleci/unittest/linux/scripts/post_process.sh
      - store_test_results:
          path: test-results

  unittest_windows_cpu:
    <<: *binary_common
    executor:
      name: windows-cpu
    steps:
      - checkout
      - run:
          name: Generate cache key
          # This will refresh cache on Sundays, nightly build should generate new cache.
          command: echo "$(date +"%Y-%U")" > .circleci-weekly
      - restore_cache:

          keys:
            - env-v2-windows-{{ arch }}-py<< parameters.python_version >>-{{ checksum ".circleci/unittest/windows/scripts/environment.yml" }}-{{ checksum ".circleci-weekly" }}

      - run:
          name: Setup
          command: .circleci/unittest/windows/scripts/setup_env.sh
      - save_cache:

          key: env-v2-windows-{{ arch }}-py<< parameters.python_version >>-{{ checksum ".circleci/unittest/windows/scripts/environment.yml" }}-{{ checksum ".circleci-weekly" }}

          paths:
            - conda
            - env
      - run:
          name: Install torchvision
          command: .circleci/unittest/windows/scripts/install.sh
      - run:
          name: Run tests
          command: .circleci/unittest/windows/scripts/run_test.sh
      - run:
          name: Post process
          command: .circleci/unittest/windows/scripts/post_process.sh
      - store_test_results:
          path: test-results

  unittest_windows_gpu:
    <<: *binary_common
    executor:
      name: windows-gpu
    environment:
      CUDA_VERSION: "10.1"
    steps:
      - checkout
      - run:
          name: Generate cache key
          # This will refresh cache on Sundays, nightly build should generate new cache.
          command: echo "$(date +"%Y-%U")" > .circleci-weekly
      - restore_cache:

          keys:
            - env-v1-windows-{{ arch }}-py<< parameters.python_version >>-{{ checksum ".circleci/unittest/windows/scripts/environment.yml" }}-{{ checksum ".circleci-weekly" }}

      - run:
          name: Setup
          command: .circleci/unittest/windows/scripts/setup_env.sh
      - save_cache:

          key: env-v1-windows-{{ arch }}-py<< parameters.python_version >>-{{ checksum ".circleci/unittest/windows/scripts/environment.yml" }}-{{ checksum ".circleci-weekly" }}

          paths:
            - conda
            - env
      - run:
          name: Install torchvision
          command: .circleci/unittest/windows/scripts/install.sh
      - run:
          name: Run tests
          command: .circleci/unittest/windows/scripts/run_test.sh
      - run:
          name: Post process
          command: .circleci/unittest/windows/scripts/post_process.sh
      - store_test_results:
          path: test-results
443

444
445
446
447
workflows:
  build:
    jobs:
      - circleci_consistency
Edward Z. Yang's avatar
Edward Z. Yang committed
448
      - binary_linux_wheel:
449
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
450
          name: binary_linux_wheel_py3.6_cpu
451
          python_version: '3.6'
452
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
453
      - binary_linux_wheel:
454
          cu_version: cu92
Edward Z. Yang's avatar
Edward Z. Yang committed
455
          name: binary_linux_wheel_py3.6_cu92
456
          python_version: '3.6'
457
          wheel_docker_image: pytorch/manylinux-cuda92
Francisco Massa's avatar
Francisco Massa committed
458
459
460
461
      - binary_linux_wheel:
          cu_version: cu101
          name: binary_linux_wheel_py3.6_cu101
          python_version: '3.6'
462
463
464
465
466
467
          wheel_docker_image: pytorch/manylinux-cuda101
      - binary_linux_wheel:
          cu_version: cu102
          name: binary_linux_wheel_py3.6_cu102
          python_version: '3.6'
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
468
      - binary_linux_wheel:
469
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
470
          name: binary_linux_wheel_py3.7_cpu
471
          python_version: '3.7'
472
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
473
      - binary_linux_wheel:
474
          cu_version: cu92
Edward Z. Yang's avatar
Edward Z. Yang committed
475
          name: binary_linux_wheel_py3.7_cu92
476
          python_version: '3.7'
477
          wheel_docker_image: pytorch/manylinux-cuda92
Francisco Massa's avatar
Francisco Massa committed
478
479
480
481
      - binary_linux_wheel:
          cu_version: cu101
          name: binary_linux_wheel_py3.7_cu101
          python_version: '3.7'
482
483
484
485
486
487
          wheel_docker_image: pytorch/manylinux-cuda101
      - binary_linux_wheel:
          cu_version: cu102
          name: binary_linux_wheel_py3.7_cu102
          python_version: '3.7'
          wheel_docker_image: pytorch/manylinux-cuda102
488
489
490
491
      - binary_linux_wheel:
          cu_version: cpu
          name: binary_linux_wheel_py3.8_cpu
          python_version: '3.8'
492
          wheel_docker_image: pytorch/manylinux-cuda102
493
494
495
496
497
498
499
500
501
      - binary_linux_wheel:
          cu_version: cu92
          name: binary_linux_wheel_py3.8_cu92
          python_version: '3.8'
          wheel_docker_image: pytorch/manylinux-cuda92
      - binary_linux_wheel:
          cu_version: cu101
          name: binary_linux_wheel_py3.8_cu101
          python_version: '3.8'
502
503
504
505
506
507
          wheel_docker_image: pytorch/manylinux-cuda101
      - binary_linux_wheel:
          cu_version: cu102
          name: binary_linux_wheel_py3.8_cu102
          python_version: '3.8'
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
508
      - binary_macos_wheel:
509
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
510
          name: binary_macos_wheel_py3.6_cpu
511
          python_version: '3.6'
512
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
513
      - binary_macos_wheel:
514
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
515
          name: binary_macos_wheel_py3.7_cpu
516
          python_version: '3.7'
517
          wheel_docker_image: pytorch/manylinux-cuda102
518
519
520
521
      - binary_macos_wheel:
          cu_version: cpu
          name: binary_macos_wheel_py3.8_cpu
          python_version: '3.8'
522
          wheel_docker_image: pytorch/manylinux-cuda102
523
      - binary_win_wheel:
524
525
526
527
          cu_version: cpu
          filters:
            branches:
              only: master
528
529
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
530
531
          name: binary_win_wheel_py3.6_cpu
          python_version: '3.6'
532
      - binary_win_wheel:
533
          cu_version: cu92
534
535
536
          filters:
            branches:
              only: master
537
538
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
539
540
          name: binary_win_wheel_py3.6_cu92
          python_version: '3.6'
541
      - binary_win_wheel:
542
          cu_version: cu101
543
544
545
          filters:
            branches:
              only: master
546
547
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
548
549
          name: binary_win_wheel_py3.6_cu101
          python_version: '3.6'
550
      - binary_win_wheel:
551
          cu_version: cu102
552
553
554
          filters:
            branches:
              only: master
555
556
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
557
558
          name: binary_win_wheel_py3.6_cu102
          python_version: '3.6'
559
      - binary_win_wheel:
560
561
562
563
          cu_version: cpu
          filters:
            branches:
              only: master
564
565
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
566
567
          name: binary_win_wheel_py3.7_cpu
          python_version: '3.7'
568
      - binary_win_wheel:
569
          cu_version: cu92
570
571
572
          filters:
            branches:
              only: master
573
574
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
575
576
          name: binary_win_wheel_py3.7_cu92
          python_version: '3.7'
577
      - binary_win_wheel:
578
          cu_version: cu101
579
580
581
          filters:
            branches:
              only: master
582
583
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
584
585
          name: binary_win_wheel_py3.7_cu101
          python_version: '3.7'
586
      - binary_win_wheel:
587
          cu_version: cu102
588
589
590
          filters:
            branches:
              only: master
591
592
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
593
594
          name: binary_win_wheel_py3.7_cu102
          python_version: '3.7'
595
      - binary_win_wheel:
596
597
598
          cu_version: cpu
          name: binary_win_wheel_py3.8_cpu
          python_version: '3.8'
599
      - binary_win_wheel:
600
          cu_version: cu92
601
602
603
          filters:
            branches:
              only: master
604
605
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
606
607
          name: binary_win_wheel_py3.8_cu92
          python_version: '3.8'
608
      - binary_win_wheel:
609
          cu_version: cu101
610
611
612
          filters:
            branches:
              only: master
613
614
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
615
616
          name: binary_win_wheel_py3.8_cu101
          python_version: '3.8'
617
      - binary_win_wheel:
618
          cu_version: cu102
619
620
          name: binary_win_wheel_py3.8_cu102
          python_version: '3.8'
Edward Z. Yang's avatar
Edward Z. Yang committed
621
      - binary_linux_conda:
622
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
623
          name: binary_linux_conda_py3.6_cpu
624
          python_version: '3.6'
625
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
626
      - binary_linux_conda:
627
          cu_version: cu92
Edward Z. Yang's avatar
Edward Z. Yang committed
628
          name: binary_linux_conda_py3.6_cu92
629
          python_version: '3.6'
630
          wheel_docker_image: pytorch/manylinux-cuda92
Francisco Massa's avatar
Francisco Massa committed
631
632
633
634
      - binary_linux_conda:
          cu_version: cu101
          name: binary_linux_conda_py3.6_cu101
          python_version: '3.6'
635
636
637
638
639
640
          wheel_docker_image: pytorch/manylinux-cuda101
      - binary_linux_conda:
          cu_version: cu102
          name: binary_linux_conda_py3.6_cu102
          python_version: '3.6'
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
641
      - binary_linux_conda:
642
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
643
          name: binary_linux_conda_py3.7_cpu
644
          python_version: '3.7'
645
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
646
      - binary_linux_conda:
647
          cu_version: cu92
Edward Z. Yang's avatar
Edward Z. Yang committed
648
          name: binary_linux_conda_py3.7_cu92
649
          python_version: '3.7'
650
          wheel_docker_image: pytorch/manylinux-cuda92
Francisco Massa's avatar
Francisco Massa committed
651
652
653
654
      - binary_linux_conda:
          cu_version: cu101
          name: binary_linux_conda_py3.7_cu101
          python_version: '3.7'
655
656
657
658
659
660
          wheel_docker_image: pytorch/manylinux-cuda101
      - binary_linux_conda:
          cu_version: cu102
          name: binary_linux_conda_py3.7_cu102
          python_version: '3.7'
          wheel_docker_image: pytorch/manylinux-cuda102
661
662
663
664
      - binary_linux_conda:
          cu_version: cpu
          name: binary_linux_conda_py3.8_cpu
          python_version: '3.8'
665
          wheel_docker_image: pytorch/manylinux-cuda102
666
667
668
669
670
671
672
673
674
      - binary_linux_conda:
          cu_version: cu92
          name: binary_linux_conda_py3.8_cu92
          python_version: '3.8'
          wheel_docker_image: pytorch/manylinux-cuda92
      - binary_linux_conda:
          cu_version: cu101
          name: binary_linux_conda_py3.8_cu101
          python_version: '3.8'
675
676
677
678
679
680
          wheel_docker_image: pytorch/manylinux-cuda101
      - binary_linux_conda:
          cu_version: cu102
          name: binary_linux_conda_py3.8_cu102
          python_version: '3.8'
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
681
      - binary_macos_conda:
682
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
683
          name: binary_macos_conda_py3.6_cpu
684
          python_version: '3.6'
685
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
686
      - binary_macos_conda:
687
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
688
          name: binary_macos_conda_py3.7_cpu
689
          python_version: '3.7'
690
          wheel_docker_image: pytorch/manylinux-cuda102
691
692
693
694
      - binary_macos_conda:
          cu_version: cpu
          name: binary_macos_conda_py3.8_cpu
          python_version: '3.8'
695
          wheel_docker_image: pytorch/manylinux-cuda102
696
      - binary_win_conda:
697
698
699
700
          cu_version: cpu
          filters:
            branches:
              only: master
701
702
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
703
704
          name: binary_win_conda_py3.6_cpu
          python_version: '3.6'
705
      - binary_win_conda:
706
          cu_version: cu92
707
708
709
          filters:
            branches:
              only: master
710
711
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
712
713
          name: binary_win_conda_py3.6_cu92
          python_version: '3.6'
714
      - binary_win_conda:
715
          cu_version: cu101
716
717
718
          filters:
            branches:
              only: master
719
720
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
721
722
          name: binary_win_conda_py3.6_cu101
          python_version: '3.6'
723
      - binary_win_conda:
724
          cu_version: cu102
725
726
727
          filters:
            branches:
              only: master
728
729
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
730
731
          name: binary_win_conda_py3.6_cu102
          python_version: '3.6'
732
      - binary_win_conda:
733
734
735
736
          cu_version: cpu
          filters:
            branches:
              only: master
737
738
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
739
740
          name: binary_win_conda_py3.7_cpu
          python_version: '3.7'
741
      - binary_win_conda:
742
          cu_version: cu92
743
744
745
          filters:
            branches:
              only: master
746
747
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
748
749
          name: binary_win_conda_py3.7_cu92
          python_version: '3.7'
750
      - binary_win_conda:
751
          cu_version: cu101
752
753
754
          filters:
            branches:
              only: master
755
756
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
757
758
          name: binary_win_conda_py3.7_cu101
          python_version: '3.7'
759
      - binary_win_conda:
760
          cu_version: cu102
761
762
763
          filters:
            branches:
              only: master
764
765
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
766
767
          name: binary_win_conda_py3.7_cu102
          python_version: '3.7'
768
      - binary_win_conda:
769
770
771
          cu_version: cpu
          name: binary_win_conda_py3.8_cpu
          python_version: '3.8'
772
      - binary_win_conda:
773
          cu_version: cu92
774
775
776
          filters:
            branches:
              only: master
777
778
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
779
780
          name: binary_win_conda_py3.8_cu92
          python_version: '3.8'
781
      - binary_win_conda:
782
          cu_version: cu101
783
784
785
          filters:
            branches:
              only: master
786
787
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
788
789
          name: binary_win_conda_py3.8_cu101
          python_version: '3.8'
790
      - binary_win_conda:
791
          cu_version: cu102
792
793
          name: binary_win_conda_py3.8_cu102
          python_version: '3.8'
794
      - python_lint
795
      - python_type_check
796
      - clang_format
Edward Z. Yang's avatar
Edward Z. Yang committed
797

798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
  unittest:
    jobs:
      - unittest_linux_cpu:
          cu_version: cpu
          name: unittest_linux_cpu_py3.6
          python_version: '3.6'
      - unittest_linux_cpu:
          cu_version: cpu
          name: unittest_linux_cpu_py3.7
          python_version: '3.7'
      - unittest_linux_cpu:
          cu_version: cpu
          name: unittest_linux_cpu_py3.8
          python_version: '3.8'
      - unittest_linux_gpu:
          cu_version: cu101
          filters:
            branches:
              only:
              - master
              - nightly
          name: unittest_linux_gpu_py3.6
          python_version: '3.6'
      - unittest_linux_gpu:
          cu_version: cu101
          filters:
            branches:
              only:
              - master
              - nightly
          name: unittest_linux_gpu_py3.7
          python_version: '3.7'
      - unittest_linux_gpu:
          cu_version: cu101
          name: unittest_linux_gpu_py3.8
          python_version: '3.8'
      - unittest_windows_cpu:
          cu_version: cpu
          name: unittest_windows_cpu_py3.6
          python_version: '3.6'
      - unittest_windows_cpu:
          cu_version: cpu
          name: unittest_windows_cpu_py3.7
          python_version: '3.7'
      - unittest_windows_cpu:
          cu_version: cpu
          name: unittest_windows_cpu_py3.8
          python_version: '3.8'
      - unittest_windows_gpu:
          cu_version: cu101
          filters:
            branches:
              only:
              - master
              - nightly
          name: unittest_windows_gpu_py3.6
          python_version: '3.6'
      - unittest_windows_gpu:
          cu_version: cu101
          filters:
            branches:
              only:
              - master
              - nightly
          name: unittest_windows_gpu_py3.7
          python_version: '3.7'
      - unittest_windows_gpu:
          cu_version: cu101
          name: unittest_windows_gpu_py3.8
          python_version: '3.8'
Edward Z. Yang's avatar
Edward Z. Yang committed
868
869
870
  nightly:
    jobs:
      - circleci_consistency
871
      - python_lint
872
      - python_type_check
873
      - clang_format
874
      - binary_linux_wheel:
875
          cu_version: cpu
876
877
878
          filters:
            branches:
              only: nightly
879
880
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
881
          name: nightly_binary_linux_wheel_py3.6_cpu
882
          python_version: '3.6'
883
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
884
885
      - binary_wheel_upload:
          context: org-member
886
887
888
          filters:
            branches:
              only: nightly
889
890
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
891
          name: nightly_binary_linux_wheel_py3.6_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
892
          requires:
893
894
          - nightly_binary_linux_wheel_py3.6_cpu
          subfolder: cpu/
895
      - binary_linux_wheel:
896
          cu_version: cu92
897
898
899
          filters:
            branches:
              only: nightly
900
901
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
902
          name: nightly_binary_linux_wheel_py3.6_cu92
903
          python_version: '3.6'
904
          wheel_docker_image: pytorch/manylinux-cuda92
Edward Z. Yang's avatar
Edward Z. Yang committed
905
906
      - binary_wheel_upload:
          context: org-member
907
908
909
          filters:
            branches:
              only: nightly
910
911
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
912
          name: nightly_binary_linux_wheel_py3.6_cu92_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
913
          requires:
914
915
          - nightly_binary_linux_wheel_py3.6_cu92
          subfolder: cu92/
916
      - binary_linux_wheel:
917
          cu_version: cu101
918
919
920
          filters:
            branches:
              only: nightly
921
922
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
923
          name: nightly_binary_linux_wheel_py3.6_cu101
924
          python_version: '3.6'
925
          wheel_docker_image: pytorch/manylinux-cuda101
Edward Z. Yang's avatar
Edward Z. Yang committed
926
927
      - binary_wheel_upload:
          context: org-member
928
929
930
          filters:
            branches:
              only: nightly
931
932
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
933
          name: nightly_binary_linux_wheel_py3.6_cu101_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
934
          requires:
935
936
          - nightly_binary_linux_wheel_py3.6_cu101
          subfolder: cu101/
Francisco Massa's avatar
Francisco Massa committed
937
      - binary_linux_wheel:
938
          cu_version: cu102
Francisco Massa's avatar
Francisco Massa committed
939
940
941
          filters:
            branches:
              only: nightly
942
943
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
944
          name: nightly_binary_linux_wheel_py3.6_cu102
Francisco Massa's avatar
Francisco Massa committed
945
          python_version: '3.6'
946
          wheel_docker_image: pytorch/manylinux-cuda102
Francisco Massa's avatar
Francisco Massa committed
947
948
949
950
951
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
952
953
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
954
          name: nightly_binary_linux_wheel_py3.6_cu102_upload
Francisco Massa's avatar
Francisco Massa committed
955
          requires:
956
957
          - nightly_binary_linux_wheel_py3.6_cu102
          subfolder: cu102/
958
      - binary_linux_wheel:
959
          cu_version: cpu
960
961
962
          filters:
            branches:
              only: nightly
963
964
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
965
          name: nightly_binary_linux_wheel_py3.7_cpu
966
          python_version: '3.7'
967
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
968
969
      - binary_wheel_upload:
          context: org-member
970
971
972
          filters:
            branches:
              only: nightly
973
974
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
975
          name: nightly_binary_linux_wheel_py3.7_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
976
          requires:
977
978
          - nightly_binary_linux_wheel_py3.7_cpu
          subfolder: cpu/
979
      - binary_linux_wheel:
980
          cu_version: cu92
981
982
983
          filters:
            branches:
              only: nightly
984
985
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
986
          name: nightly_binary_linux_wheel_py3.7_cu92
987
          python_version: '3.7'
988
          wheel_docker_image: pytorch/manylinux-cuda92
Edward Z. Yang's avatar
Edward Z. Yang committed
989
990
      - binary_wheel_upload:
          context: org-member
991
992
993
          filters:
            branches:
              only: nightly
994
995
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
996
          name: nightly_binary_linux_wheel_py3.7_cu92_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
997
          requires:
998
999
          - nightly_binary_linux_wheel_py3.7_cu92
          subfolder: cu92/
1000
      - binary_linux_wheel:
1001
          cu_version: cu101
1002
1003
1004
          filters:
            branches:
              only: nightly
1005
1006
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1007
          name: nightly_binary_linux_wheel_py3.7_cu101
1008
          python_version: '3.7'
1009
          wheel_docker_image: pytorch/manylinux-cuda101
Edward Z. Yang's avatar
Edward Z. Yang committed
1010
1011
      - binary_wheel_upload:
          context: org-member
1012
1013
1014
          filters:
            branches:
              only: nightly
1015
1016
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1017
          name: nightly_binary_linux_wheel_py3.7_cu101_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1018
          requires:
1019
1020
          - nightly_binary_linux_wheel_py3.7_cu101
          subfolder: cu101/
Francisco Massa's avatar
Francisco Massa committed
1021
      - binary_linux_wheel:
1022
          cu_version: cu102
Francisco Massa's avatar
Francisco Massa committed
1023
1024
1025
          filters:
            branches:
              only: nightly
1026
1027
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1028
          name: nightly_binary_linux_wheel_py3.7_cu102
Francisco Massa's avatar
Francisco Massa committed
1029
          python_version: '3.7'
1030
          wheel_docker_image: pytorch/manylinux-cuda102
Francisco Massa's avatar
Francisco Massa committed
1031
1032
1033
1034
1035
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1036
1037
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1038
          name: nightly_binary_linux_wheel_py3.7_cu102_upload
Francisco Massa's avatar
Francisco Massa committed
1039
          requires:
1040
1041
          - nightly_binary_linux_wheel_py3.7_cu102
          subfolder: cu102/
1042
1043
1044
1045
1046
      - binary_linux_wheel:
          cu_version: cpu
          filters:
            branches:
              only: nightly
1047
1048
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1049
1050
          name: nightly_binary_linux_wheel_py3.8_cpu
          python_version: '3.8'
1051
          wheel_docker_image: pytorch/manylinux-cuda102
1052
1053
1054
1055
1056
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1057
1058
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1059
1060
1061
1062
1063
1064
1065
1066
1067
          name: nightly_binary_linux_wheel_py3.8_cpu_upload
          requires:
          - nightly_binary_linux_wheel_py3.8_cpu
          subfolder: cpu/
      - binary_linux_wheel:
          cu_version: cu92
          filters:
            branches:
              only: nightly
1068
1069
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1070
1071
1072
1073
1074
1075
1076
1077
          name: nightly_binary_linux_wheel_py3.8_cu92
          python_version: '3.8'
          wheel_docker_image: pytorch/manylinux-cuda92
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1078
1079
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1080
1081
1082
1083
1084
          name: nightly_binary_linux_wheel_py3.8_cu92_upload
          requires:
          - nightly_binary_linux_wheel_py3.8_cu92
          subfolder: cu92/
      - binary_linux_wheel:
1085
          cu_version: cu101
1086
1087
1088
          filters:
            branches:
              only: nightly
1089
1090
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1091
          name: nightly_binary_linux_wheel_py3.8_cu101
1092
          python_version: '3.8'
1093
          wheel_docker_image: pytorch/manylinux-cuda101
1094
1095
1096
1097
1098
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1099
1100
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1101
          name: nightly_binary_linux_wheel_py3.8_cu101_upload
1102
          requires:
1103
1104
          - nightly_binary_linux_wheel_py3.8_cu101
          subfolder: cu101/
1105
      - binary_linux_wheel:
1106
          cu_version: cu102
1107
1108
1109
          filters:
            branches:
              only: nightly
1110
1111
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1112
          name: nightly_binary_linux_wheel_py3.8_cu102
1113
          python_version: '3.8'
1114
          wheel_docker_image: pytorch/manylinux-cuda102
1115
1116
1117
1118
1119
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1120
1121
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1122
          name: nightly_binary_linux_wheel_py3.8_cu102_upload
1123
          requires:
1124
1125
          - nightly_binary_linux_wheel_py3.8_cu102
          subfolder: cu102/
1126
      - binary_macos_wheel:
1127
          cu_version: cpu
1128
1129
1130
          filters:
            branches:
              only: nightly
1131
1132
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
1133
          name: nightly_binary_macos_wheel_py3.6_cpu
1134
          python_version: '3.6'
1135
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
1136
1137
      - binary_wheel_upload:
          context: org-member
1138
1139
1140
          filters:
            branches:
              only: nightly
1141
1142
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1143
          name: nightly_binary_macos_wheel_py3.6_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1144
          requires:
1145
1146
          - nightly_binary_macos_wheel_py3.6_cpu
          subfolder: ''
1147
      - binary_macos_wheel:
1148
          cu_version: cpu
1149
1150
1151
          filters:
            branches:
              only: nightly
1152
1153
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
1154
          name: nightly_binary_macos_wheel_py3.7_cpu
1155
          python_version: '3.7'
1156
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
1157
1158
      - binary_wheel_upload:
          context: org-member
1159
1160
1161
          filters:
            branches:
              only: nightly
1162
1163
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1164
          name: nightly_binary_macos_wheel_py3.7_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1165
          requires:
1166
1167
          - nightly_binary_macos_wheel_py3.7_cpu
          subfolder: ''
1168
1169
1170
1171
1172
      - binary_macos_wheel:
          cu_version: cpu
          filters:
            branches:
              only: nightly
1173
1174
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1175
1176
          name: nightly_binary_macos_wheel_py3.8_cpu
          python_version: '3.8'
1177
          wheel_docker_image: pytorch/manylinux-cuda102
1178
1179
1180
1181
1182
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1183
1184
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1185
1186
1187
1188
          name: nightly_binary_macos_wheel_py3.8_cpu_upload
          requires:
          - nightly_binary_macos_wheel_py3.8_cpu
          subfolder: ''
1189
      - binary_win_wheel:
1190
1191
1192
1193
          cu_version: cpu
          filters:
            branches:
              only: nightly
1194
1195
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1196
1197
1198
1199
1200
1201
1202
          name: nightly_binary_win_wheel_py3.6_cpu
          python_version: '3.6'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1203
1204
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1205
1206
1207
1208
          name: nightly_binary_win_wheel_py3.6_cpu_upload
          requires:
          - nightly_binary_win_wheel_py3.6_cpu
          subfolder: cpu/
1209
      - binary_win_wheel:
1210
          cu_version: cu92
1211
1212
1213
          filters:
            branches:
              only: nightly
1214
1215
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1216
1217
1218
1219
1220
1221
1222
          name: nightly_binary_win_wheel_py3.6_cu92
          python_version: '3.6'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1223
1224
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1225
1226
1227
1228
          name: nightly_binary_win_wheel_py3.6_cu92_upload
          requires:
          - nightly_binary_win_wheel_py3.6_cu92
          subfolder: cu92/
1229
      - binary_win_wheel:
1230
          cu_version: cu101
1231
1232
1233
          filters:
            branches:
              only: nightly
1234
1235
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1236
1237
1238
1239
1240
1241
1242
          name: nightly_binary_win_wheel_py3.6_cu101
          python_version: '3.6'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1243
1244
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1245
1246
1247
1248
          name: nightly_binary_win_wheel_py3.6_cu101_upload
          requires:
          - nightly_binary_win_wheel_py3.6_cu101
          subfolder: cu101/
1249
      - binary_win_wheel:
1250
          cu_version: cu102
1251
1252
1253
          filters:
            branches:
              only: nightly
1254
1255
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1256
1257
1258
1259
1260
1261
1262
          name: nightly_binary_win_wheel_py3.6_cu102
          python_version: '3.6'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1263
1264
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1265
1266
1267
1268
          name: nightly_binary_win_wheel_py3.6_cu102_upload
          requires:
          - nightly_binary_win_wheel_py3.6_cu102
          subfolder: cu102/
1269
      - binary_win_wheel:
1270
1271
1272
1273
          cu_version: cpu
          filters:
            branches:
              only: nightly
1274
1275
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1276
1277
1278
1279
1280
1281
1282
          name: nightly_binary_win_wheel_py3.7_cpu
          python_version: '3.7'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1283
1284
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1285
1286
1287
1288
          name: nightly_binary_win_wheel_py3.7_cpu_upload
          requires:
          - nightly_binary_win_wheel_py3.7_cpu
          subfolder: cpu/
1289
      - binary_win_wheel:
1290
          cu_version: cu92
1291
1292
1293
          filters:
            branches:
              only: nightly
1294
1295
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1296
1297
1298
1299
1300
1301
1302
          name: nightly_binary_win_wheel_py3.7_cu92
          python_version: '3.7'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1303
1304
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1305
1306
1307
1308
          name: nightly_binary_win_wheel_py3.7_cu92_upload
          requires:
          - nightly_binary_win_wheel_py3.7_cu92
          subfolder: cu92/
1309
      - binary_win_wheel:
1310
          cu_version: cu101
1311
1312
1313
          filters:
            branches:
              only: nightly
1314
1315
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1316
1317
1318
1319
1320
1321
1322
          name: nightly_binary_win_wheel_py3.7_cu101
          python_version: '3.7'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1323
1324
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1325
1326
1327
1328
          name: nightly_binary_win_wheel_py3.7_cu101_upload
          requires:
          - nightly_binary_win_wheel_py3.7_cu101
          subfolder: cu101/
1329
      - binary_win_wheel:
1330
          cu_version: cu102
1331
1332
1333
          filters:
            branches:
              only: nightly
1334
1335
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1336
1337
1338
1339
1340
1341
1342
          name: nightly_binary_win_wheel_py3.7_cu102
          python_version: '3.7'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1343
1344
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1345
1346
1347
1348
          name: nightly_binary_win_wheel_py3.7_cu102_upload
          requires:
          - nightly_binary_win_wheel_py3.7_cu102
          subfolder: cu102/
1349
      - binary_win_wheel:
1350
1351
1352
1353
          cu_version: cpu
          filters:
            branches:
              only: nightly
1354
1355
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1356
1357
1358
1359
1360
1361
1362
          name: nightly_binary_win_wheel_py3.8_cpu
          python_version: '3.8'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1363
1364
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1365
1366
1367
1368
          name: nightly_binary_win_wheel_py3.8_cpu_upload
          requires:
          - nightly_binary_win_wheel_py3.8_cpu
          subfolder: cpu/
1369
      - binary_win_wheel:
1370
          cu_version: cu92
1371
1372
1373
          filters:
            branches:
              only: nightly
1374
1375
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1376
1377
1378
1379
1380
1381
1382
          name: nightly_binary_win_wheel_py3.8_cu92
          python_version: '3.8'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1383
1384
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1385
1386
1387
1388
          name: nightly_binary_win_wheel_py3.8_cu92_upload
          requires:
          - nightly_binary_win_wheel_py3.8_cu92
          subfolder: cu92/
1389
      - binary_win_wheel:
1390
          cu_version: cu101
1391
1392
1393
          filters:
            branches:
              only: nightly
1394
1395
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1396
1397
1398
1399
1400
1401
1402
          name: nightly_binary_win_wheel_py3.8_cu101
          python_version: '3.8'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1403
1404
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1405
1406
1407
1408
          name: nightly_binary_win_wheel_py3.8_cu101_upload
          requires:
          - nightly_binary_win_wheel_py3.8_cu101
          subfolder: cu101/
1409
      - binary_win_wheel:
1410
          cu_version: cu102
1411
1412
1413
          filters:
            branches:
              only: nightly
1414
1415
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1416
1417
1418
1419
1420
1421
1422
          name: nightly_binary_win_wheel_py3.8_cu102
          python_version: '3.8'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1423
1424
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1425
1426
1427
1428
          name: nightly_binary_win_wheel_py3.8_cu102_upload
          requires:
          - nightly_binary_win_wheel_py3.8_cu102
          subfolder: cu102/
1429
      - binary_linux_conda:
1430
          cu_version: cpu
1431
1432
1433
          filters:
            branches:
              only: nightly
1434
1435
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
1436
          name: nightly_binary_linux_conda_py3.6_cpu
1437
          python_version: '3.6'
1438
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
1439
1440
      - binary_conda_upload:
          context: org-member
1441
1442
1443
          filters:
            branches:
              only: nightly
1444
1445
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1446
          name: nightly_binary_linux_conda_py3.6_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1447
          requires:
1448
          - nightly_binary_linux_conda_py3.6_cpu
1449
      - binary_linux_conda:
1450
          cu_version: cu92
1451
1452
1453
          filters:
            branches:
              only: nightly
1454
1455
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
1456
          name: nightly_binary_linux_conda_py3.6_cu92
1457
          python_version: '3.6'
1458
          wheel_docker_image: pytorch/manylinux-cuda92
Edward Z. Yang's avatar
Edward Z. Yang committed
1459
1460
      - binary_conda_upload:
          context: org-member
1461
1462
1463
          filters:
            branches:
              only: nightly
1464
1465
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1466
          name: nightly_binary_linux_conda_py3.6_cu92_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1467
          requires:
1468
          - nightly_binary_linux_conda_py3.6_cu92
1469
      - binary_linux_conda:
1470
          cu_version: cu101
1471
1472
1473
          filters:
            branches:
              only: nightly
1474
1475
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1476
          name: nightly_binary_linux_conda_py3.6_cu101
1477
          python_version: '3.6'
1478
          wheel_docker_image: pytorch/manylinux-cuda101
Edward Z. Yang's avatar
Edward Z. Yang committed
1479
1480
      - binary_conda_upload:
          context: org-member
1481
1482
1483
          filters:
            branches:
              only: nightly
1484
1485
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1486
          name: nightly_binary_linux_conda_py3.6_cu101_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1487
          requires:
1488
          - nightly_binary_linux_conda_py3.6_cu101
Francisco Massa's avatar
Francisco Massa committed
1489
      - binary_linux_conda:
1490
          cu_version: cu102
Francisco Massa's avatar
Francisco Massa committed
1491
1492
1493
          filters:
            branches:
              only: nightly
1494
1495
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1496
          name: nightly_binary_linux_conda_py3.6_cu102
Francisco Massa's avatar
Francisco Massa committed
1497
          python_version: '3.6'
1498
          wheel_docker_image: pytorch/manylinux-cuda102
Francisco Massa's avatar
Francisco Massa committed
1499
1500
1501
1502
1503
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1504
1505
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1506
          name: nightly_binary_linux_conda_py3.6_cu102_upload
Francisco Massa's avatar
Francisco Massa committed
1507
          requires:
1508
          - nightly_binary_linux_conda_py3.6_cu102
1509
      - binary_linux_conda:
1510
          cu_version: cpu
1511
1512
1513
          filters:
            branches:
              only: nightly
1514
1515
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
1516
          name: nightly_binary_linux_conda_py3.7_cpu
1517
          python_version: '3.7'
1518
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
1519
1520
      - binary_conda_upload:
          context: org-member
1521
1522
1523
          filters:
            branches:
              only: nightly
1524
1525
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1526
          name: nightly_binary_linux_conda_py3.7_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1527
          requires:
1528
          - nightly_binary_linux_conda_py3.7_cpu
1529
      - binary_linux_conda:
1530
          cu_version: cu92
1531
1532
1533
          filters:
            branches:
              only: nightly
1534
1535
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
1536
          name: nightly_binary_linux_conda_py3.7_cu92
1537
          python_version: '3.7'
1538
          wheel_docker_image: pytorch/manylinux-cuda92
Edward Z. Yang's avatar
Edward Z. Yang committed
1539
1540
      - binary_conda_upload:
          context: org-member
1541
1542
1543
          filters:
            branches:
              only: nightly
1544
1545
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1546
          name: nightly_binary_linux_conda_py3.7_cu92_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1547
          requires:
1548
          - nightly_binary_linux_conda_py3.7_cu92
1549
      - binary_linux_conda:
1550
          cu_version: cu101
1551
1552
1553
          filters:
            branches:
              only: nightly
1554
1555
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1556
          name: nightly_binary_linux_conda_py3.7_cu101
1557
          python_version: '3.7'
1558
          wheel_docker_image: pytorch/manylinux-cuda101
Edward Z. Yang's avatar
Edward Z. Yang committed
1559
1560
      - binary_conda_upload:
          context: org-member
1561
1562
1563
          filters:
            branches:
              only: nightly
1564
1565
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1566
          name: nightly_binary_linux_conda_py3.7_cu101_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1567
          requires:
1568
          - nightly_binary_linux_conda_py3.7_cu101
Francisco Massa's avatar
Francisco Massa committed
1569
      - binary_linux_conda:
1570
          cu_version: cu102
Francisco Massa's avatar
Francisco Massa committed
1571
1572
1573
          filters:
            branches:
              only: nightly
1574
1575
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1576
          name: nightly_binary_linux_conda_py3.7_cu102
Francisco Massa's avatar
Francisco Massa committed
1577
          python_version: '3.7'
1578
          wheel_docker_image: pytorch/manylinux-cuda102
Francisco Massa's avatar
Francisco Massa committed
1579
1580
1581
1582
1583
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1584
1585
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1586
          name: nightly_binary_linux_conda_py3.7_cu102_upload
Francisco Massa's avatar
Francisco Massa committed
1587
          requires:
1588
          - nightly_binary_linux_conda_py3.7_cu102
1589
1590
1591
1592
1593
      - binary_linux_conda:
          cu_version: cpu
          filters:
            branches:
              only: nightly
1594
1595
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1596
1597
          name: nightly_binary_linux_conda_py3.8_cpu
          python_version: '3.8'
1598
          wheel_docker_image: pytorch/manylinux-cuda102
1599
1600
1601
1602
1603
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1604
1605
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1606
1607
1608
1609
1610
1611
1612
1613
          name: nightly_binary_linux_conda_py3.8_cpu_upload
          requires:
          - nightly_binary_linux_conda_py3.8_cpu
      - binary_linux_conda:
          cu_version: cu92
          filters:
            branches:
              only: nightly
1614
1615
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1616
1617
1618
1619
1620
1621
1622
1623
          name: nightly_binary_linux_conda_py3.8_cu92
          python_version: '3.8'
          wheel_docker_image: pytorch/manylinux-cuda92
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1624
1625
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1626
1627
1628
1629
          name: nightly_binary_linux_conda_py3.8_cu92_upload
          requires:
          - nightly_binary_linux_conda_py3.8_cu92
      - binary_linux_conda:
1630
          cu_version: cu101
1631
1632
1633
          filters:
            branches:
              only: nightly
1634
1635
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1636
          name: nightly_binary_linux_conda_py3.8_cu101
1637
          python_version: '3.8'
1638
          wheel_docker_image: pytorch/manylinux-cuda101
1639
1640
1641
1642
1643
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1644
1645
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1646
          name: nightly_binary_linux_conda_py3.8_cu101_upload
1647
          requires:
1648
          - nightly_binary_linux_conda_py3.8_cu101
1649
      - binary_linux_conda:
1650
          cu_version: cu102
1651
1652
1653
          filters:
            branches:
              only: nightly
1654
1655
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1656
          name: nightly_binary_linux_conda_py3.8_cu102
1657
          python_version: '3.8'
1658
          wheel_docker_image: pytorch/manylinux-cuda102
1659
1660
1661
1662
1663
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1664
1665
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1666
          name: nightly_binary_linux_conda_py3.8_cu102_upload
1667
          requires:
1668
          - nightly_binary_linux_conda_py3.8_cu102
1669
      - binary_macos_conda:
1670
          cu_version: cpu
1671
1672
1673
          filters:
            branches:
              only: nightly
1674
1675
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
1676
          name: nightly_binary_macos_conda_py3.6_cpu
1677
          python_version: '3.6'
1678
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
1679
1680
      - binary_conda_upload:
          context: org-member
1681
1682
1683
          filters:
            branches:
              only: nightly
1684
1685
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1686
          name: nightly_binary_macos_conda_py3.6_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1687
          requires:
1688
          - nightly_binary_macos_conda_py3.6_cpu
1689
      - binary_macos_conda:
1690
          cu_version: cpu
1691
1692
1693
          filters:
            branches:
              only: nightly
1694
1695
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
1696
          name: nightly_binary_macos_conda_py3.7_cpu
1697
          python_version: '3.7'
1698
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
1699
1700
      - binary_conda_upload:
          context: org-member
1701
1702
1703
          filters:
            branches:
              only: nightly
1704
1705
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1706
          name: nightly_binary_macos_conda_py3.7_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1707
          requires:
1708
1709
1710
1711
1712
1713
          - nightly_binary_macos_conda_py3.7_cpu
      - binary_macos_conda:
          cu_version: cpu
          filters:
            branches:
              only: nightly
1714
1715
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1716
1717
          name: nightly_binary_macos_conda_py3.8_cpu
          python_version: '3.8'
1718
          wheel_docker_image: pytorch/manylinux-cuda102
1719
1720
1721
1722
1723
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1724
1725
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1726
1727
          name: nightly_binary_macos_conda_py3.8_cpu_upload
          requires:
1728
          - nightly_binary_macos_conda_py3.8_cpu
1729
      - binary_win_conda:
1730
1731
1732
1733
          cu_version: cpu
          filters:
            branches:
              only: nightly
1734
1735
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1736
1737
1738
1739
1740
1741
1742
          name: nightly_binary_win_conda_py3.6_cpu
          python_version: '3.6'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1743
1744
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1745
1746
1747
          name: nightly_binary_win_conda_py3.6_cpu_upload
          requires:
          - nightly_binary_win_conda_py3.6_cpu
1748
      - binary_win_conda:
1749
          cu_version: cu92
1750
1751
1752
          filters:
            branches:
              only: nightly
1753
1754
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1755
1756
1757
1758
1759
1760
1761
          name: nightly_binary_win_conda_py3.6_cu92
          python_version: '3.6'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1762
1763
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1764
1765
1766
          name: nightly_binary_win_conda_py3.6_cu92_upload
          requires:
          - nightly_binary_win_conda_py3.6_cu92
1767
      - binary_win_conda:
1768
          cu_version: cu101
1769
1770
1771
          filters:
            branches:
              only: nightly
1772
1773
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1774
1775
1776
1777
1778
1779
1780
          name: nightly_binary_win_conda_py3.6_cu101
          python_version: '3.6'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1781
1782
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1783
1784
1785
          name: nightly_binary_win_conda_py3.6_cu101_upload
          requires:
          - nightly_binary_win_conda_py3.6_cu101
1786
      - binary_win_conda:
1787
          cu_version: cu102
1788
1789
1790
          filters:
            branches:
              only: nightly
1791
1792
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1793
1794
1795
1796
1797
1798
1799
          name: nightly_binary_win_conda_py3.6_cu102
          python_version: '3.6'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1800
1801
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1802
1803
1804
          name: nightly_binary_win_conda_py3.6_cu102_upload
          requires:
          - nightly_binary_win_conda_py3.6_cu102
1805
      - binary_win_conda:
1806
1807
1808
1809
          cu_version: cpu
          filters:
            branches:
              only: nightly
1810
1811
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1812
1813
1814
1815
1816
1817
1818
          name: nightly_binary_win_conda_py3.7_cpu
          python_version: '3.7'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1819
1820
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1821
1822
1823
          name: nightly_binary_win_conda_py3.7_cpu_upload
          requires:
          - nightly_binary_win_conda_py3.7_cpu
1824
      - binary_win_conda:
1825
          cu_version: cu92
1826
1827
1828
          filters:
            branches:
              only: nightly
1829
1830
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1831
1832
1833
1834
1835
1836
1837
          name: nightly_binary_win_conda_py3.7_cu92
          python_version: '3.7'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1838
1839
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1840
1841
1842
          name: nightly_binary_win_conda_py3.7_cu92_upload
          requires:
          - nightly_binary_win_conda_py3.7_cu92
1843
      - binary_win_conda:
1844
          cu_version: cu101
1845
1846
1847
          filters:
            branches:
              only: nightly
1848
1849
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1850
1851
1852
1853
1854
1855
1856
          name: nightly_binary_win_conda_py3.7_cu101
          python_version: '3.7'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1857
1858
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1859
1860
1861
          name: nightly_binary_win_conda_py3.7_cu101_upload
          requires:
          - nightly_binary_win_conda_py3.7_cu101
1862
      - binary_win_conda:
1863
          cu_version: cu102
1864
1865
1866
          filters:
            branches:
              only: nightly
1867
1868
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1869
1870
1871
1872
1873
1874
1875
          name: nightly_binary_win_conda_py3.7_cu102
          python_version: '3.7'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1876
1877
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1878
1879
1880
          name: nightly_binary_win_conda_py3.7_cu102_upload
          requires:
          - nightly_binary_win_conda_py3.7_cu102
1881
      - binary_win_conda:
1882
1883
1884
1885
          cu_version: cpu
          filters:
            branches:
              only: nightly
1886
1887
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1888
1889
1890
1891
1892
1893
1894
          name: nightly_binary_win_conda_py3.8_cpu
          python_version: '3.8'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1895
1896
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1897
1898
1899
          name: nightly_binary_win_conda_py3.8_cpu_upload
          requires:
          - nightly_binary_win_conda_py3.8_cpu
1900
      - binary_win_conda:
1901
          cu_version: cu92
1902
1903
1904
          filters:
            branches:
              only: nightly
1905
1906
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1907
1908
1909
1910
1911
1912
1913
          name: nightly_binary_win_conda_py3.8_cu92
          python_version: '3.8'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1914
1915
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1916
1917
1918
          name: nightly_binary_win_conda_py3.8_cu92_upload
          requires:
          - nightly_binary_win_conda_py3.8_cu92
1919
      - binary_win_conda:
1920
          cu_version: cu101
1921
1922
1923
          filters:
            branches:
              only: nightly
1924
1925
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1926
1927
1928
1929
1930
1931
1932
          name: nightly_binary_win_conda_py3.8_cu101
          python_version: '3.8'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1933
1934
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1935
1936
1937
          name: nightly_binary_win_conda_py3.8_cu101_upload
          requires:
          - nightly_binary_win_conda_py3.8_cu101
1938
      - binary_win_conda:
1939
          cu_version: cu102
1940
1941
1942
          filters:
            branches:
              only: nightly
1943
1944
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1945
1946
1947
1948
1949
1950
1951
          name: nightly_binary_win_conda_py3.8_cu102
          python_version: '3.8'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1952
1953
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1954
1955
1956
          name: nightly_binary_win_conda_py3.8_cu102_upload
          requires:
          - nightly_binary_win_conda_py3.8_cu102