config.yml 24.4 KB
Newer Older
facebook-github-bot's avatar
facebook-github-bot committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
version: 2.1

#examples:
#https://github.com/facebookresearch/ParlAI/blob/master/.circleci/config.yml
#https://github.com/facebookresearch/hydra/blob/master/.circleci/config.yml
#https://github.com/facebookresearch/habitat-api/blob/master/.circleci/config.yml

#drive tests with nox or tox or pytest?

# -------------------------------------------------------------------------------------
# environments where we run our jobs
# -------------------------------------------------------------------------------------


setupcuda: &setupcuda
  run:
    name: Setup CUDA
    working_directory: ~/
    command: |
      # download and install nvidia drivers, cuda, etc
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
21
22
      wget --no-verbose --no-clobber -P ~/nvidia-downloads https://developer.download.nvidia.com/compute/cuda/11.2.2/local_installers/cuda_11.2.2_460.32.03_linux.run
      sudo sh ~/nvidia-downloads/cuda_11.2.2_460.32.03_linux.run --silent
facebook-github-bot's avatar
facebook-github-bot committed
23
24
25
      echo "Done installing CUDA."
      pyenv versions
      nvidia-smi
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
26
      pyenv global 3.9.1
facebook-github-bot's avatar
facebook-github-bot committed
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55

gpu: &gpu
  environment:
    CUDA_VERSION: "10.2"
  machine:
    image: default
  resource_class: gpu.medium # tesla m60

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:
      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
    wheel_docker_image:
      description: "Wheel only: what docker image to use"
      type: string
56
      default: "pytorch/manylinux-cuda101"
facebook-github-bot's avatar
facebook-github-bot committed
57
58
59
60
61
62
63
64
65
66
  environment:
    PYTHON_VERSION: << parameters.python_version >>
    BUILD_VERSION: << parameters.build_version >>
    PYTORCH_VERSION: << parameters.pytorch_version >>
    CU_VERSION: << parameters.cu_version >>

jobs:
  main:
    <<: *gpu
    machine:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
67
      image: ubuntu-2004:202101-01
facebook-github-bot's avatar
facebook-github-bot committed
68
69
70
    steps:
      - checkout
      - <<: *setupcuda
71
      - run: pip3 install --progress-bar off imageio wheel matplotlib 'pillow<7'
facebook-github-bot's avatar
facebook-github-bot committed
72
73
74
75
76
77
      - run: pip3 install --progress-bar off torch torchvision
      # - run: conda create -p ~/conda_env python=3.7 numpy
      # - run: conda activate ~/conda_env
      # - run: conda install -c pytorch pytorch torchvision

      - run: pip3 install --progress-bar off 'git+https://github.com/facebookresearch/fvcore'
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
78
      - run: pip3 install --progress-bar off 'git+https://github.com/facebookresearch/iopath'
79
80
81
82
83
84
85
86
87
88
      - run:
          name: get cub
          command: |
            cd ..
            wget --no-verbose https://github.com/NVIDIA/cub/archive/1.10.0.tar.gz
            tar xzf 1.10.0.tar.gz
            # This expands to a directory called cub-1.10.0
      - run:
          name: build
          command: |
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
89
            export LD_LIBRARY_PATH=$LD_LIBARY_PATH:/usr/local/cuda-11.2/lib64
90
91
            export CUB_HOME=$(realpath ../cub-1.10.0)
            python3 setup.py build_ext --inplace
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
92
      - run: LD_LIBRARY_PATH=$LD_LIBARY_PATH:/usr/local/cuda-11.2/lib64 python -m unittest discover -v -s tests
facebook-github-bot's avatar
facebook-github-bot committed
93
94
95
96
97
98
      - run: python3 setup.py bdist_wheel

  binary_linux_wheel:
    <<: *binary_common
    docker:
      - image: << parameters.wheel_docker_image >>
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
99
100
101
        auth:
          username: $DOCKERHUB_USERNAME
          password: $DOCKERHUB_TOKEN
facebook-github-bot's avatar
facebook-github-bot committed
102
103
104
    resource_class: 2xlarge+
    steps:
      - checkout
105
      - run: MAX_JOBS=15 packaging/build_wheel.sh
facebook-github-bot's avatar
facebook-github-bot committed
106
107
108
109
110
111
112
113
114
115
116
      - store_artifacts:
          path: dist
      - persist_to_workspace:
          root: dist
          paths:
            - "*"

  binary_linux_conda:
    <<: *binary_common
    docker:
      - image: "pytorch/conda-cuda"
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
117
118
119
        auth:
          username: $DOCKERHUB_USERNAME
          password: $DOCKERHUB_TOKEN
facebook-github-bot's avatar
facebook-github-bot committed
120
121
122
123
124
    resource_class: 2xlarge+
    steps:
      - checkout
      # This is building with cuda but no gpu present,
      # so we aren't running the tests.
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
125
126
127
128
      - run:
          name: build
          no_output_timeout: 20m
          command: MAX_JOBS=15 TEST_FLAG=--no-test packaging/build_conda.sh
facebook-github-bot's avatar
facebook-github-bot committed
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
      - store_artifacts:
          path: /opt/conda/conda-bld/linux-64
      - persist_to_workspace:
          root: /opt/conda/conda-bld/linux-64
          paths:
            - "*"

  binary_linux_conda_cuda:
    <<: *binary_common
    machine:
      image: ubuntu-1604:201903-01
    resource_class: gpu.medium
    steps:
    - checkout
    - run:
        name: Setup environment
        command: |
          set -e

          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"
          sudo apt-get install docker-ce=${DOCKER_VERSION} docker-ce-cli=${DOCKER_VERSION} containerd.io=1.2.6-3

          # 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

Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
180
181
          DRIVER_FN="NVIDIA-Linux-x86_64-450.80.02.run"
          wget "https://us.download.nvidia.com/XFree86/Linux-x86_64/450.80.02/$DRIVER_FN"
facebook-github-bot's avatar
facebook-github-bot committed
182
183
184
185
186
187
188
          sudo /bin/bash "$DRIVER_FN" -s --no-drm || (sudo cat /var/log/nvidia-installer.log && false)
          nvidia-smi

    - run:
        name: Pull docker image
        command: |
          set -e
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
189
190
191

          { docker login -u="$DOCKERHUB_USERNAME" -p="$DOCKERHUB_TOKEN" ; } 2> /dev/null

Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
192
          DOCKER_IMAGE=pytorch/conda-cuda
facebook-github-bot's avatar
facebook-github-bot committed
193
          echo Pulling docker image $DOCKER_IMAGE
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
194
          docker pull $DOCKER_IMAGE
facebook-github-bot's avatar
facebook-github-bot committed
195
196
    - run:
        name: Build and run tests
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
197
        no_output_timeout: 20m
facebook-github-bot's avatar
facebook-github-bot committed
198
199
200
201
202
        command: |
          set -e

          cd ${HOME}/project/

Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
203
204
205
          DOCKER_IMAGE=pytorch/conda-cuda
          export JUST_TESTRUN=1
          VARS_TO_PASS="-e PYTHON_VERSION -e BUILD_VERSION -e PYTORCH_VERSION -e CU_VERSION -e JUST_TESTRUN"
facebook-github-bot's avatar
facebook-github-bot committed
206
207
208

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

209
210
211
  binary_macos_wheel:
    <<: *binary_common
    macos:
212
      xcode: "9.4.1"
213
214
215
216
217
218
219
220
221
222
223
224
225
226
    steps:
      - checkout
      - 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

facebook-github-bot's avatar
facebook-github-bot committed
227
228
229
230
workflows:
  version: 2
  build_and_test:
    jobs:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
231
232
      - main:
          context: DOCKERHUB_TOKEN
facebook-github-bot's avatar
facebook-github-bot committed
233
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
234
          context: DOCKERHUB_TOKEN
facebook-github-bot's avatar
facebook-github-bot committed
235
          cu_version: cu92
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
236
          name: linux_conda_py36_cu92_pyt14
facebook-github-bot's avatar
facebook-github-bot committed
237
238
239
          python_version: '3.6'
          pytorch_version: '1.4'
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
240
          context: DOCKERHUB_TOKEN
facebook-github-bot's avatar
facebook-github-bot committed
241
          cu_version: cu101
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
242
          name: linux_conda_py36_cu101_pyt14
facebook-github-bot's avatar
facebook-github-bot committed
243
244
245
          python_version: '3.6'
          pytorch_version: '1.4'
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
246
          context: DOCKERHUB_TOKEN
facebook-github-bot's avatar
facebook-github-bot committed
247
          cu_version: cu92
248
          name: linux_conda_py36_cu92_pyt150
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
249
          python_version: '3.6'
250
          pytorch_version: 1.5.0
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
251
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
252
          context: DOCKERHUB_TOKEN
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
253
          cu_version: cu101
254
          name: linux_conda_py36_cu101_pyt150
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
255
          python_version: '3.6'
256
          pytorch_version: 1.5.0
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
257
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
258
          context: DOCKERHUB_TOKEN
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
259
          cu_version: cu102
260
          name: linux_conda_py36_cu102_pyt150
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
261
          python_version: '3.6'
262
263
          pytorch_version: 1.5.0
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
264
          context: DOCKERHUB_TOKEN
265
266
267
268
269
          cu_version: cu92
          name: linux_conda_py36_cu92_pyt151
          python_version: '3.6'
          pytorch_version: 1.5.1
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
270
          context: DOCKERHUB_TOKEN
271
272
273
274
275
          cu_version: cu101
          name: linux_conda_py36_cu101_pyt151
          python_version: '3.6'
          pytorch_version: 1.5.1
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
276
          context: DOCKERHUB_TOKEN
277
278
279
280
          cu_version: cu102
          name: linux_conda_py36_cu102_pyt151
          python_version: '3.6'
          pytorch_version: 1.5.1
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
281
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
282
          context: DOCKERHUB_TOKEN
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
283
284
285
286
287
          cu_version: cu92
          name: linux_conda_py36_cu92_pyt160
          python_version: '3.6'
          pytorch_version: 1.6.0
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
288
          context: DOCKERHUB_TOKEN
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
289
290
291
292
293
          cu_version: cu101
          name: linux_conda_py36_cu101_pyt160
          python_version: '3.6'
          pytorch_version: 1.6.0
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
294
          context: DOCKERHUB_TOKEN
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
295
296
297
298
          cu_version: cu102
          name: linux_conda_py36_cu102_pyt160
          python_version: '3.6'
          pytorch_version: 1.6.0
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
299
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
300
          context: DOCKERHUB_TOKEN
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
301
302
303
304
305
          cu_version: cu101
          name: linux_conda_py36_cu101_pyt170
          python_version: '3.6'
          pytorch_version: 1.7.0
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
306
          context: DOCKERHUB_TOKEN
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
307
308
309
310
311
          cu_version: cu102
          name: linux_conda_py36_cu102_pyt170
          python_version: '3.6'
          pytorch_version: 1.7.0
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
312
          context: DOCKERHUB_TOKEN
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
313
314
315
316
          cu_version: cu110
          name: linux_conda_py36_cu110_pyt170
          python_version: '3.6'
          pytorch_version: 1.7.0
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu101
          name: linux_conda_py36_cu101_pyt171
          python_version: '3.6'
          pytorch_version: 1.7.1
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu102
          name: linux_conda_py36_cu102_pyt171
          python_version: '3.6'
          pytorch_version: 1.7.1
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu110
          name: linux_conda_py36_cu110_pyt171
          python_version: '3.6'
          pytorch_version: 1.7.1
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
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
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu101
          name: linux_conda_py36_cu101_pyt180
          python_version: '3.6'
          pytorch_version: 1.8.0
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu102
          name: linux_conda_py36_cu102_pyt180
          python_version: '3.6'
          pytorch_version: 1.8.0
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu111
          name: linux_conda_py36_cu111_pyt180
          python_version: '3.6'
          pytorch_version: 1.8.0
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu101
          name: linux_conda_py36_cu101_pyt181
          python_version: '3.6'
          pytorch_version: 1.8.1
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu102
          name: linux_conda_py36_cu102_pyt181
          python_version: '3.6'
          pytorch_version: 1.8.1
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu111
          name: linux_conda_py36_cu111_pyt181
          python_version: '3.6'
          pytorch_version: 1.8.1
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
371
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
372
          context: DOCKERHUB_TOKEN
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
373
374
          cu_version: cu92
          name: linux_conda_py37_cu92_pyt14
facebook-github-bot's avatar
facebook-github-bot committed
375
376
377
          python_version: '3.7'
          pytorch_version: '1.4'
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
378
          context: DOCKERHUB_TOKEN
facebook-github-bot's avatar
facebook-github-bot committed
379
          cu_version: cu101
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
380
          name: linux_conda_py37_cu101_pyt14
facebook-github-bot's avatar
facebook-github-bot committed
381
382
383
          python_version: '3.7'
          pytorch_version: '1.4'
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
384
          context: DOCKERHUB_TOKEN
facebook-github-bot's avatar
facebook-github-bot committed
385
          cu_version: cu92
386
          name: linux_conda_py37_cu92_pyt150
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
387
          python_version: '3.7'
388
          pytorch_version: 1.5.0
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
389
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
390
          context: DOCKERHUB_TOKEN
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
391
          cu_version: cu101
392
          name: linux_conda_py37_cu101_pyt150
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
393
          python_version: '3.7'
394
          pytorch_version: 1.5.0
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
395
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
396
          context: DOCKERHUB_TOKEN
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
397
          cu_version: cu102
398
          name: linux_conda_py37_cu102_pyt150
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
399
          python_version: '3.7'
400
401
          pytorch_version: 1.5.0
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
402
          context: DOCKERHUB_TOKEN
403
404
405
406
407
          cu_version: cu92
          name: linux_conda_py37_cu92_pyt151
          python_version: '3.7'
          pytorch_version: 1.5.1
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
408
          context: DOCKERHUB_TOKEN
409
410
411
412
413
          cu_version: cu101
          name: linux_conda_py37_cu101_pyt151
          python_version: '3.7'
          pytorch_version: 1.5.1
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
414
          context: DOCKERHUB_TOKEN
415
416
417
418
          cu_version: cu102
          name: linux_conda_py37_cu102_pyt151
          python_version: '3.7'
          pytorch_version: 1.5.1
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
419
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
420
          context: DOCKERHUB_TOKEN
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
421
422
423
424
425
          cu_version: cu92
          name: linux_conda_py37_cu92_pyt160
          python_version: '3.7'
          pytorch_version: 1.6.0
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
426
          context: DOCKERHUB_TOKEN
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
427
428
429
430
431
          cu_version: cu101
          name: linux_conda_py37_cu101_pyt160
          python_version: '3.7'
          pytorch_version: 1.6.0
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
432
          context: DOCKERHUB_TOKEN
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
433
434
435
436
          cu_version: cu102
          name: linux_conda_py37_cu102_pyt160
          python_version: '3.7'
          pytorch_version: 1.6.0
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
437
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
438
          context: DOCKERHUB_TOKEN
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
439
440
441
442
443
          cu_version: cu101
          name: linux_conda_py37_cu101_pyt170
          python_version: '3.7'
          pytorch_version: 1.7.0
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
444
          context: DOCKERHUB_TOKEN
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
445
446
447
448
449
          cu_version: cu102
          name: linux_conda_py37_cu102_pyt170
          python_version: '3.7'
          pytorch_version: 1.7.0
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
450
          context: DOCKERHUB_TOKEN
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
451
452
453
454
          cu_version: cu110
          name: linux_conda_py37_cu110_pyt170
          python_version: '3.7'
          pytorch_version: 1.7.0
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu101
          name: linux_conda_py37_cu101_pyt171
          python_version: '3.7'
          pytorch_version: 1.7.1
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu102
          name: linux_conda_py37_cu102_pyt171
          python_version: '3.7'
          pytorch_version: 1.7.1
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu110
          name: linux_conda_py37_cu110_pyt171
          python_version: '3.7'
          pytorch_version: 1.7.1
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu101
          name: linux_conda_py37_cu101_pyt180
          python_version: '3.7'
          pytorch_version: 1.8.0
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu102
          name: linux_conda_py37_cu102_pyt180
          python_version: '3.7'
          pytorch_version: 1.8.0
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu111
          name: linux_conda_py37_cu111_pyt180
          python_version: '3.7'
          pytorch_version: 1.8.0
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu101
          name: linux_conda_py37_cu101_pyt181
          python_version: '3.7'
          pytorch_version: 1.8.1
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu102
          name: linux_conda_py37_cu102_pyt181
          python_version: '3.7'
          pytorch_version: 1.8.1
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu111
          name: linux_conda_py37_cu111_pyt181
          python_version: '3.7'
          pytorch_version: 1.8.1
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
509
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
510
          context: DOCKERHUB_TOKEN
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
511
512
          cu_version: cu92
          name: linux_conda_py38_cu92_pyt14
facebook-github-bot's avatar
facebook-github-bot committed
513
514
515
          python_version: '3.8'
          pytorch_version: '1.4'
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
516
          context: DOCKERHUB_TOKEN
facebook-github-bot's avatar
facebook-github-bot committed
517
          cu_version: cu101
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
518
          name: linux_conda_py38_cu101_pyt14
facebook-github-bot's avatar
facebook-github-bot committed
519
520
          python_version: '3.8'
          pytorch_version: '1.4'
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
521
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
522
          context: DOCKERHUB_TOKEN
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
523
          cu_version: cu92
524
          name: linux_conda_py38_cu92_pyt150
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
525
          python_version: '3.8'
526
          pytorch_version: 1.5.0
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
527
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
528
          context: DOCKERHUB_TOKEN
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
529
          cu_version: cu101
530
          name: linux_conda_py38_cu101_pyt150
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
531
          python_version: '3.8'
532
          pytorch_version: 1.5.0
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
533
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
534
          context: DOCKERHUB_TOKEN
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
535
          cu_version: cu102
536
          name: linux_conda_py38_cu102_pyt150
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
537
          python_version: '3.8'
538
539
          pytorch_version: 1.5.0
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
540
          context: DOCKERHUB_TOKEN
541
542
543
544
545
          cu_version: cu92
          name: linux_conda_py38_cu92_pyt151
          python_version: '3.8'
          pytorch_version: 1.5.1
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
546
          context: DOCKERHUB_TOKEN
547
548
549
550
551
          cu_version: cu101
          name: linux_conda_py38_cu101_pyt151
          python_version: '3.8'
          pytorch_version: 1.5.1
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
552
          context: DOCKERHUB_TOKEN
553
554
555
556
          cu_version: cu102
          name: linux_conda_py38_cu102_pyt151
          python_version: '3.8'
          pytorch_version: 1.5.1
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
557
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
558
          context: DOCKERHUB_TOKEN
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
559
560
561
562
563
          cu_version: cu92
          name: linux_conda_py38_cu92_pyt160
          python_version: '3.8'
          pytorch_version: 1.6.0
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
564
          context: DOCKERHUB_TOKEN
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
565
566
567
568
569
          cu_version: cu101
          name: linux_conda_py38_cu101_pyt160
          python_version: '3.8'
          pytorch_version: 1.6.0
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
570
          context: DOCKERHUB_TOKEN
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
571
572
573
574
          cu_version: cu102
          name: linux_conda_py38_cu102_pyt160
          python_version: '3.8'
          pytorch_version: 1.6.0
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
575
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
576
          context: DOCKERHUB_TOKEN
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
577
578
579
580
581
          cu_version: cu101
          name: linux_conda_py38_cu101_pyt170
          python_version: '3.8'
          pytorch_version: 1.7.0
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
582
          context: DOCKERHUB_TOKEN
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
583
584
585
586
587
          cu_version: cu102
          name: linux_conda_py38_cu102_pyt170
          python_version: '3.8'
          pytorch_version: 1.7.0
      - binary_linux_conda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
588
          context: DOCKERHUB_TOKEN
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
589
590
591
592
          cu_version: cu110
          name: linux_conda_py38_cu110_pyt170
          python_version: '3.8'
          pytorch_version: 1.7.0
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu101
          name: linux_conda_py38_cu101_pyt171
          python_version: '3.8'
          pytorch_version: 1.7.1
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu102
          name: linux_conda_py38_cu102_pyt171
          python_version: '3.8'
          pytorch_version: 1.7.1
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu110
          name: linux_conda_py38_cu110_pyt171
          python_version: '3.8'
          pytorch_version: 1.7.1
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu101
          name: linux_conda_py38_cu101_pyt180
          python_version: '3.8'
          pytorch_version: 1.8.0
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu102
          name: linux_conda_py38_cu102_pyt180
          python_version: '3.8'
          pytorch_version: 1.8.0
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu111
          name: linux_conda_py38_cu111_pyt180
          python_version: '3.8'
          pytorch_version: 1.8.0
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu101
          name: linux_conda_py38_cu101_pyt181
          python_version: '3.8'
          pytorch_version: 1.8.1
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu102
          name: linux_conda_py38_cu102_pyt181
          python_version: '3.8'
          pytorch_version: 1.8.1
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu111
          name: linux_conda_py38_cu111_pyt181
          python_version: '3.8'
          pytorch_version: 1.8.1
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu101
          name: linux_conda_py39_cu101_pyt171
          python_version: '3.9'
          pytorch_version: 1.7.1
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu102
          name: linux_conda_py39_cu102_pyt171
          python_version: '3.9'
          pytorch_version: 1.7.1
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu110
          name: linux_conda_py39_cu110_pyt171
          python_version: '3.9'
          pytorch_version: 1.7.1
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu101
          name: linux_conda_py39_cu101_pyt180
          python_version: '3.9'
          pytorch_version: 1.8.0
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu102
          name: linux_conda_py39_cu102_pyt180
          python_version: '3.9'
          pytorch_version: 1.8.0
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu111
          name: linux_conda_py39_cu111_pyt180
          python_version: '3.9'
          pytorch_version: 1.8.0
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu101
          name: linux_conda_py39_cu101_pyt181
          python_version: '3.9'
          pytorch_version: 1.8.1
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu102
          name: linux_conda_py39_cu102_pyt181
          python_version: '3.9'
          pytorch_version: 1.8.1
      - binary_linux_conda:
          context: DOCKERHUB_TOKEN
          cu_version: cu111
          name: linux_conda_py39_cu111_pyt181
          python_version: '3.9'
          pytorch_version: 1.8.1
facebook-github-bot's avatar
facebook-github-bot committed
701
      - binary_linux_conda_cuda:
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
702
703
704
          name: testrun_conda_cuda_py36_cu101_pyt14
          context: DOCKERHUB_TOKEN
          python_version: "3.6"
facebook-github-bot's avatar
facebook-github-bot committed
705
          pytorch_version: "1.4"
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
706
          cu_version: "cu101"
707
708
709
710
711
712
      - binary_linux_conda_cuda:
          name: testrun_conda_cuda_py37_cu102_pyt160
          context: DOCKERHUB_TOKEN
          python_version: "3.7"
          pytorch_version: '1.6.0'
          cu_version: "cu102"
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
713
714
      - binary_linux_conda_cuda:
          name: testrun_conda_cuda_py37_cu110_pyt170
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
715
          context: DOCKERHUB_TOKEN
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
716
717
718
          python_version: "3.7"
          pytorch_version: '1.7.0'
          cu_version: "cu110"
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
719
720
721
722
723
724
      - binary_linux_conda_cuda:
          name: testrun_conda_cuda_py39_cu111_pyt181
          context: DOCKERHUB_TOKEN
          python_version: "3.9"
          pytorch_version: '1.8.1'
          cu_version: "cu111"
725
726
      - binary_macos_wheel:
          cu_version: cpu
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
727
          name: macos_wheel_py36_cpu
728
          python_version: '3.6'
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
729
          pytorch_version: '1.7.1'
730
731
      - binary_macos_wheel:
          cu_version: cpu
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
732
          name: macos_wheel_py37_cpu
733
          python_version: '3.7'
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
734
          pytorch_version: '1.7.1'
735
736
      - binary_macos_wheel:
          cu_version: cpu
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
737
          name: macos_wheel_py38_cpu
738
          python_version: '3.8'
Jeremy Reizenstein's avatar
Jeremy Reizenstein committed
739
740
741
742
743
744
          pytorch_version: '1.7.1'
      - binary_macos_wheel:
          cu_version: cpu
          name: macos_wheel_py39_cpu
          python_version: '3.9'
          pytorch_version: '1.7.1'