config.yml 61.9 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

Francisco Massa's avatar
Francisco Massa committed
9
orbs:
10
  win: circleci/windows@2.0.0
Francisco Massa's avatar
Francisco Massa committed
11

12
13
14
15
16
17
18
executors:
  windows-gpu-prototype:
    machine:
      resource_class: windows.gpu.small.prototype
      image: windows-server-2019-nvidia:201908-28
      shell: bash.exe

19
20
21
22
23
commands:
  checkout_merge:
    description: "checkout merge branch"
    steps:
      - checkout
24
25
26
27
28
29
30
31
32
#     - 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
33

34
35
36
37
38
39
40
41
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:
42
      description: "PyTorch version to build against; by default, use a nightly"
43
      type: string
44
      default: ""
45
46
47
48
    # 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
49
50
    cu_version:
      description: "CUDA version to build against, in CU format (e.g., cpu or cu100)"
51
52
53
54
55
      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
56
57
58
    wheel_docker_image:
      description: "Wheel only: what docker image to use"
      type: string
59
      default: "pytorch/manylinux-cuda101"
60
61
62
63
64
  environment:
    PYTHON_VERSION: << parameters.python_version >>
    BUILD_VERSION: << parameters.build_version >>
    PYTORCH_VERSION: << parameters.pytorch_version >>
    UNICODE_ABI: << parameters.unicode_abi >>
Edward Z. Yang's avatar
Edward Z. Yang committed
65
    CU_VERSION: << parameters.cu_version >>
66

67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
binary_windows: &binary_windows
  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:
      description: "PyTorch version to build against; by default, use a nightly"
      type: string
      default: ""
    # Don't edit these
    python_version:
      description: "Python version to build against (e.g., 3.7)"
      type: string
    cu_version:
      description: "CUDA version to build against, in CU format (e.g., cpu or cu100)"
      type: string
  environment:
    DESIRED_PYTHON: << parameters.python_version >>
    PYTORCH_VERSION: << parameters.pytorch_version >>
    CUDA_VERSION: << parameters.cu_version >>
    USE_SCCACHE: "1"
    VC_YEAR: "2017"

92
jobs:
93
94
95
96
97
98
99
  circleci_consistency:
    docker:
      - image: circleci/python:3.7
    steps:
      - checkout
      - run:
          command: |
100
            pip install --user --progress-bar off jinja2 pyyaml
101
102
103
            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)

104
105
106
107
108
109
110
111
112
113
  python_lint:
    docker:
      - image: circleci/python:3.7
    steps:
      - checkout
      - run:
          command: |
            pip install --user --progress-bar off flake8 typing
            flake8 .

114
115
116
117
118
119
120
121
122
123
124
  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

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

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

Francisco Massa's avatar
Francisco Massa committed
157
158
159
160
161
162
  binary_linux_conda_cuda:
    <<: *binary_common
    machine:
      image: ubuntu-1604:201903-01
    resource_class: gpu.medium
    steps:
163
    - checkout_merge
Francisco Massa's avatar
Francisco Massa committed
164
165
166
    - run:
        name: Setup environment
        command: |
167
          set -ex
Francisco Massa's avatar
Francisco Massa committed
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189

          curl -L https://packagecloud.io/circleci/trusty/gpgkey | sudo apt-key add -
          curl -L https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -

          sudo apt-get update

          sudo apt-get install \
              apt-transport-https \
              ca-certificates \
              curl \
              gnupg-agent \
              software-properties-common

          curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

          sudo add-apt-repository \
             "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
             $(lsb_release -cs) \
             stable"

          sudo apt-get update
          export DOCKER_VERSION="5:19.03.2~3-0~ubuntu-xenial"
Francisco Massa's avatar
Francisco Massa committed
190
          sudo apt-get install docker-ce=${DOCKER_VERSION} docker-ce-cli=${DOCKER_VERSION} containerd.io=1.2.6-3
Francisco Massa's avatar
Francisco Massa committed
191
192
193
194
195
196
197
198
199
200

          # Add the package repositories
          distribution=$(. /etc/os-release;echo $ID$VERSION_ID)
          curl -s -L https://nvidia.github.io/nvidia-docker/gpgkey | sudo apt-key add -
          curl -s -L https://nvidia.github.io/nvidia-docker/$distribution/nvidia-docker.list | sudo tee /etc/apt/sources.list.d/nvidia-docker.list

          export NVIDIA_CONTAINER_VERSION="1.0.3-1"
          sudo apt-get update && sudo apt-get install -y nvidia-container-toolkit=${NVIDIA_CONTAINER_VERSION}
          sudo systemctl restart docker

201
          DRIVER_FN="NVIDIA-Linux-x86_64-440.59.run"
Francisco Massa's avatar
Francisco Massa committed
202
203
204
205
206
207
208
          wget "https://s3.amazonaws.com/ossci-linux/nvidia_driver/$DRIVER_FN"
          sudo /bin/bash "$DRIVER_FN" -s --no-drm || (sudo cat /var/log/nvidia-installer.log && false)
          nvidia-smi

    - run:
        name: Pull docker image
        command: |
209
          set -ex
210
          export DOCKER_IMAGE=pytorch/conda-cuda
Francisco Massa's avatar
Francisco Massa committed
211
212
213
214
215
216
          echo Pulling docker image $DOCKER_IMAGE
          docker pull $DOCKER_IMAGE >/dev/null

    - run:
        name: Build and run tests
        command: |
217
          set -ex
Francisco Massa's avatar
Francisco Massa committed
218
219
220

          cd ${HOME}/project/

221
          export DOCKER_IMAGE=pytorch/conda-cuda
Francisco Massa's avatar
Francisco Massa committed
222
223
224
225
226
227
228
          export VARS_TO_PASS="-e PYTHON_VERSION -e BUILD_VERSION -e PYTORCH_VERSION -e UNICODE_ABI -e CU_VERSION"

          docker run --gpus all  --ipc=host -v $(pwd):/remote -w /remote ${VARS_TO_PASS} ${DOCKER_IMAGE} ./packaging/build_conda.sh

  binary_win_conda:
    <<: *binary_common
    executor:
229
      name: win/default
Francisco Massa's avatar
Francisco Massa committed
230
231
      shell: bash.exe
    steps:
232
      - checkout_merge
Francisco Massa's avatar
Francisco Massa committed
233
234
235
      - run:
          command: |
            choco install miniconda3
236
237
238
            (& "C:\tools\miniconda3\Scripts\conda.exe" "shell.powershell" "hook") | Out-String | Invoke-Expression
            conda activate base
            conda install -yq conda-build "conda-package-handling!=1.5.0"
Francisco Massa's avatar
Francisco Massa committed
239
240
            bash packaging/build_conda.sh
          shell: powershell.exe
241
242
      - store_test_results:
          path: build_results/
Francisco Massa's avatar
Francisco Massa committed
243

244
245
246
247
248
249
250
251
252
253
254
255
256
257
  binary_win_conda_cuda:
    <<: *binary_common
    executor: windows-gpu-prototype
    steps:
      - checkout_merge
      - run:
          command: |
            choco install miniconda3
            (& "C:\tools\miniconda3\Scripts\conda.exe" "shell.powershell" "hook") | Out-String | Invoke-Expression
            conda activate base
            conda install -yq conda-build "conda-package-handling!=1.5.0"
            bash packaging/build_conda.sh
          shell: powershell.exe

258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
  binary_win_conda_release:
    <<: *binary_windows
    executor:
      name: win/default
      shell: cmd.exe
    steps:
      - checkout_merge
      - run:
          name: Build conda packages
          command: |
            call packaging/windows/internal/build_conda.bat
      - store_artifacts:
          path: packaging/windows/output
      - persist_to_workspace:
          root: packaging/windows/output
          paths:
            - "*"
      - store_test_results:
          path: build_results/

  binary_win_wheel_release:
    <<: *binary_windows
    executor:
      name: win/default
      shell: cmd.exe
    steps:
      - checkout_merge
      - run:
          name: Build wheel packages
          command: |
            call packaging/windows/internal/build_wheels.bat
      - store_artifacts:
          path: packaging/windows/output
      - persist_to_workspace:
          root: packaging/windows/output
          paths:
            - "*"
      - store_test_results:
          path: build_results/

298
299
300
301
302
  binary_macos_wheel:
    <<: *binary_common
    macos:
      xcode: "9.0"
    steps:
303
      - checkout_merge
304
305
306
307
308
309
310
311
312
313
314
      - 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
315
316
317
318
      - persist_to_workspace:
          root: dist
          paths:
            - "*"
319
320
321
322
323
324

  binary_macos_conda:
    <<: *binary_common
    macos:
      xcode: "9.0"
    steps:
325
      - checkout_merge
326
327
328
329
330
331
332
333
334
      - 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
335
336
337
338
      - persist_to_workspace:
          root: /Users/distiller/miniconda3/conda-bld/osx-64
          paths:
            - "*"
339
340
      - store_test_results:
          path: build_results/
Edward Z. Yang's avatar
Edward Z. Yang committed
341
342
343
344
345
346
347
348
349
350
351
352
353

  # Requires org-member context
  binary_conda_upload:
    docker:
      - image: continuumio/miniconda
    steps:
      - attach_workspace:
          at: ~/workspace
      - run:
          command: |
            # Prevent credential from leaking
            conda install -yq anaconda-client
            set -x
354
            anaconda  -t "${CONDA_PYTORCHBOT_TOKEN}" upload ~/workspace/*.tar.bz2 -u pytorch-nightly --label main --no-progress --force
Edward Z. Yang's avatar
Edward Z. Yang committed
355
356
357

  # Requires org-member context
  binary_wheel_upload:
Edward Z. Yang's avatar
Edward Z. Yang committed
358
359
360
361
    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
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
    docker:
      - image: circleci/python:3.7
    steps:
      - attach_workspace:
          at: ~/workspace
      - 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
377
378
379
            for pkg in ~/workspace/*.whl; do
              aws s3 cp "$pkg" "s3://pytorch/whl/nightly/<< parameters.subfolder >>" --acl public-read
            done
380

381

382
383
384
385
workflows:
  build:
    jobs:
      - circleci_consistency
Edward Z. Yang's avatar
Edward Z. Yang committed
386
      - binary_linux_wheel:
387
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
388
          name: binary_linux_wheel_py3.5_cpu
389
          python_version: '3.5'
390
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
391
      - binary_linux_wheel:
392
          cu_version: cu92
Edward Z. Yang's avatar
Edward Z. Yang committed
393
          name: binary_linux_wheel_py3.5_cu92
394
          python_version: '3.5'
395
          wheel_docker_image: pytorch/manylinux-cuda92
Francisco Massa's avatar
Francisco Massa committed
396
397
398
399
      - binary_linux_wheel:
          cu_version: cu101
          name: binary_linux_wheel_py3.5_cu101
          python_version: '3.5'
400
401
402
403
404
405
          wheel_docker_image: pytorch/manylinux-cuda101
      - binary_linux_wheel:
          cu_version: cu102
          name: binary_linux_wheel_py3.5_cu102
          python_version: '3.5'
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
406
      - binary_linux_wheel:
407
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
408
          name: binary_linux_wheel_py3.6_cpu
409
          python_version: '3.6'
410
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
411
      - binary_linux_wheel:
412
          cu_version: cu92
Edward Z. Yang's avatar
Edward Z. Yang committed
413
          name: binary_linux_wheel_py3.6_cu92
414
          python_version: '3.6'
415
          wheel_docker_image: pytorch/manylinux-cuda92
Francisco Massa's avatar
Francisco Massa committed
416
417
418
419
      - binary_linux_wheel:
          cu_version: cu101
          name: binary_linux_wheel_py3.6_cu101
          python_version: '3.6'
420
421
422
423
424
425
          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
426
      - binary_linux_wheel:
427
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
428
          name: binary_linux_wheel_py3.7_cpu
429
          python_version: '3.7'
430
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
431
      - binary_linux_wheel:
432
          cu_version: cu92
Edward Z. Yang's avatar
Edward Z. Yang committed
433
          name: binary_linux_wheel_py3.7_cu92
434
          python_version: '3.7'
435
          wheel_docker_image: pytorch/manylinux-cuda92
Francisco Massa's avatar
Francisco Massa committed
436
437
438
439
      - binary_linux_wheel:
          cu_version: cu101
          name: binary_linux_wheel_py3.7_cu101
          python_version: '3.7'
440
441
442
443
444
445
          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
446
447
448
449
      - binary_linux_wheel:
          cu_version: cpu
          name: binary_linux_wheel_py3.8_cpu
          python_version: '3.8'
450
          wheel_docker_image: pytorch/manylinux-cuda102
451
452
453
454
455
456
457
458
459
      - 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'
460
461
462
463
464
465
          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
466
      - binary_macos_wheel:
467
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
468
          name: binary_macos_wheel_py3.5_cpu
469
          python_version: '3.5'
470
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
471
      - binary_macos_wheel:
472
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
473
          name: binary_macos_wheel_py3.6_cpu
474
          python_version: '3.6'
475
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
476
      - binary_macos_wheel:
477
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
478
          name: binary_macos_wheel_py3.7_cpu
479
          python_version: '3.7'
480
          wheel_docker_image: pytorch/manylinux-cuda102
481
482
483
484
      - binary_macos_wheel:
          cu_version: cpu
          name: binary_macos_wheel_py3.8_cpu
          python_version: '3.8'
485
          wheel_docker_image: pytorch/manylinux-cuda102
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
      - binary_win_wheel_release:
          cu_version: cpu
          filters:
            branches:
              only: master
          name: binary_win_wheel_py3.5_cpu
          python_version: '3.5'
      - binary_win_wheel_release:
          cu_version: '92'
          filters:
            branches:
              only: master
          name: binary_win_wheel_py3.5_cu92
          python_version: '3.5'
      - binary_win_wheel_release:
          cu_version: '101'
          filters:
            branches:
              only: master
          name: binary_win_wheel_py3.5_cu101
          python_version: '3.5'
      - binary_win_wheel_release:
          cu_version: '102'
          filters:
            branches:
              only: master
          name: binary_win_wheel_py3.5_cu102
          python_version: '3.5'
      - binary_win_wheel_release:
          cu_version: cpu
          filters:
            branches:
              only: master
          name: binary_win_wheel_py3.6_cpu
          python_version: '3.6'
      - binary_win_wheel_release:
          cu_version: '92'
          filters:
            branches:
              only: master
          name: binary_win_wheel_py3.6_cu92
          python_version: '3.6'
      - binary_win_wheel_release:
          cu_version: '101'
          filters:
            branches:
              only: master
          name: binary_win_wheel_py3.6_cu101
          python_version: '3.6'
      - binary_win_wheel_release:
          cu_version: '102'
          filters:
            branches:
              only: master
          name: binary_win_wheel_py3.6_cu102
          python_version: '3.6'
      - binary_win_wheel_release:
          cu_version: cpu
          filters:
            branches:
              only: master
          name: binary_win_wheel_py3.7_cpu
          python_version: '3.7'
      - binary_win_wheel_release:
          cu_version: '92'
          filters:
            branches:
              only: master
          name: binary_win_wheel_py3.7_cu92
          python_version: '3.7'
      - binary_win_wheel_release:
          cu_version: '101'
          filters:
            branches:
              only: master
          name: binary_win_wheel_py3.7_cu101
          python_version: '3.7'
      - binary_win_wheel_release:
          cu_version: '102'
          filters:
            branches:
              only: master
          name: binary_win_wheel_py3.7_cu102
          python_version: '3.7'
      - binary_win_wheel_release:
          cu_version: cpu
          name: binary_win_wheel_py3.8_cpu
          python_version: '3.8'
      - binary_win_wheel_release:
          cu_version: '92'
          filters:
            branches:
              only: master
          name: binary_win_wheel_py3.8_cu92
          python_version: '3.8'
      - binary_win_wheel_release:
          cu_version: '101'
          filters:
            branches:
              only: master
          name: binary_win_wheel_py3.8_cu101
          python_version: '3.8'
      - binary_win_wheel_release:
          cu_version: '102'
          name: binary_win_wheel_py3.8_cu102
          python_version: '3.8'
Edward Z. Yang's avatar
Edward Z. Yang committed
592
      - binary_linux_conda:
593
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
594
          name: binary_linux_conda_py3.5_cpu
595
          python_version: '3.5'
596
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
597
      - binary_linux_conda:
598
          cu_version: cu92
Edward Z. Yang's avatar
Edward Z. Yang committed
599
          name: binary_linux_conda_py3.5_cu92
600
          python_version: '3.5'
601
          wheel_docker_image: pytorch/manylinux-cuda92
Francisco Massa's avatar
Francisco Massa committed
602
603
604
605
      - binary_linux_conda:
          cu_version: cu101
          name: binary_linux_conda_py3.5_cu101
          python_version: '3.5'
606
607
608
609
610
611
          wheel_docker_image: pytorch/manylinux-cuda101
      - binary_linux_conda:
          cu_version: cu102
          name: binary_linux_conda_py3.5_cu102
          python_version: '3.5'
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
612
      - binary_linux_conda:
613
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
614
          name: binary_linux_conda_py3.6_cpu
615
          python_version: '3.6'
616
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
617
      - binary_linux_conda:
618
          cu_version: cu92
Edward Z. Yang's avatar
Edward Z. Yang committed
619
          name: binary_linux_conda_py3.6_cu92
620
          python_version: '3.6'
621
          wheel_docker_image: pytorch/manylinux-cuda92
Francisco Massa's avatar
Francisco Massa committed
622
623
624
625
      - binary_linux_conda:
          cu_version: cu101
          name: binary_linux_conda_py3.6_cu101
          python_version: '3.6'
626
627
628
629
630
631
          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
632
      - binary_linux_conda:
633
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
634
          name: binary_linux_conda_py3.7_cpu
635
          python_version: '3.7'
636
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
637
      - binary_linux_conda:
638
          cu_version: cu92
Edward Z. Yang's avatar
Edward Z. Yang committed
639
          name: binary_linux_conda_py3.7_cu92
640
          python_version: '3.7'
641
          wheel_docker_image: pytorch/manylinux-cuda92
Francisco Massa's avatar
Francisco Massa committed
642
643
644
645
      - binary_linux_conda:
          cu_version: cu101
          name: binary_linux_conda_py3.7_cu101
          python_version: '3.7'
646
647
648
649
650
651
          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
652
653
654
655
      - binary_linux_conda:
          cu_version: cpu
          name: binary_linux_conda_py3.8_cpu
          python_version: '3.8'
656
          wheel_docker_image: pytorch/manylinux-cuda102
657
658
659
660
661
662
663
664
665
      - 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'
666
667
668
669
670
671
          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
672
      - binary_macos_conda:
673
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
674
          name: binary_macos_conda_py3.5_cpu
675
          python_version: '3.5'
676
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
677
      - binary_macos_conda:
678
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
679
          name: binary_macos_conda_py3.6_cpu
680
          python_version: '3.6'
681
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
682
      - binary_macos_conda:
683
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
684
          name: binary_macos_conda_py3.7_cpu
685
          python_version: '3.7'
686
          wheel_docker_image: pytorch/manylinux-cuda102
687
688
689
690
      - binary_macos_conda:
          cu_version: cpu
          name: binary_macos_conda_py3.8_cpu
          python_version: '3.8'
691
          wheel_docker_image: pytorch/manylinux-cuda102
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
      - binary_win_conda_release:
          cu_version: cpu
          filters:
            branches:
              only: master
          name: binary_win_conda_py3.5_cpu
          python_version: '3.5'
      - binary_win_conda_release:
          cu_version: '92'
          filters:
            branches:
              only: master
          name: binary_win_conda_py3.5_cu92
          python_version: '3.5'
      - binary_win_conda_release:
          cu_version: '101'
          filters:
            branches:
              only: master
          name: binary_win_conda_py3.5_cu101
          python_version: '3.5'
      - binary_win_conda_release:
          cu_version: '102'
          filters:
            branches:
              only: master
          name: binary_win_conda_py3.5_cu102
          python_version: '3.5'
      - binary_win_conda_release:
          cu_version: cpu
          filters:
            branches:
              only: master
          name: binary_win_conda_py3.6_cpu
          python_version: '3.6'
      - binary_win_conda_release:
          cu_version: '92'
          filters:
            branches:
              only: master
          name: binary_win_conda_py3.6_cu92
          python_version: '3.6'
      - binary_win_conda_release:
          cu_version: '101'
          filters:
            branches:
              only: master
          name: binary_win_conda_py3.6_cu101
          python_version: '3.6'
      - binary_win_conda_release:
          cu_version: '102'
          filters:
            branches:
              only: master
          name: binary_win_conda_py3.6_cu102
          python_version: '3.6'
      - binary_win_conda_release:
          cu_version: cpu
          filters:
            branches:
              only: master
          name: binary_win_conda_py3.7_cpu
          python_version: '3.7'
      - binary_win_conda_release:
          cu_version: '92'
          filters:
            branches:
              only: master
          name: binary_win_conda_py3.7_cu92
          python_version: '3.7'
      - binary_win_conda_release:
          cu_version: '101'
          filters:
            branches:
              only: master
          name: binary_win_conda_py3.7_cu101
          python_version: '3.7'
      - binary_win_conda_release:
          cu_version: '102'
          filters:
            branches:
              only: master
          name: binary_win_conda_py3.7_cu102
          python_version: '3.7'
      - binary_win_conda_release:
          cu_version: cpu
          name: binary_win_conda_py3.8_cpu
          python_version: '3.8'
      - binary_win_conda_release:
          cu_version: '92'
          filters:
            branches:
              only: master
          name: binary_win_conda_py3.8_cu92
          python_version: '3.8'
      - binary_win_conda_release:
          cu_version: '101'
          filters:
            branches:
              only: master
          name: binary_win_conda_py3.8_cu101
          python_version: '3.8'
      - binary_win_conda_release:
          cu_version: '102'
          name: binary_win_conda_py3.8_cu102
          python_version: '3.8'
798
      - binary_linux_conda_cuda:
799
800
801
          name: torchvision_linux_py3.8_cu102_cuda
          python_version: "3.8"
          cu_version: "cu102"
Francisco Massa's avatar
Francisco Massa committed
802
803
804
805
      - binary_win_conda:
          name: torchvision_win_py3.6_cpu
          python_version: "3.6"
          cu_version: "cpu"
806
807
808
809
      - binary_win_conda_cuda:
          name: torchvision_win_py3.6_cu101
          python_version: "3.6"
          cu_version: "cu101"
810
      - python_lint
811
      - clang_format
Edward Z. Yang's avatar
Edward Z. Yang committed
812
813
814
815

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