File tree Expand file tree Collapse file tree 3 files changed +12
-10
lines changed Expand file tree Collapse file tree 3 files changed +12
-10
lines changed Original file line number Diff line number Diff line change 62
62
if : github.repository == 'Project-MONAI/MONAI'
63
63
strategy :
64
64
matrix :
65
- container : ["pytorch:21.02", "pytorch:21.06 "] # 21.02 for backward comp.
65
+ container : ["pytorch:21.02", "pytorch:21.08 "] # 21.02 for backward comp.
66
66
container :
67
67
image : nvcr.io/nvidia/${{ matrix.container }}-py3 # testing with the latest pytorch base image
68
68
options : " --gpus all"
@@ -106,7 +106,7 @@ jobs:
106
106
if : github.repository == 'Project-MONAI/MONAI'
107
107
strategy :
108
108
matrix :
109
- container : ["pytorch:21.02", "pytorch:21.06 "] # 21.02 for backward comp.
109
+ container : ["pytorch:21.02", "pytorch:21.08 "] # 21.02 for backward comp.
110
110
container :
111
111
image : nvcr.io/nvidia/${{ matrix.container }}-py3 # testing with the latest pytorch base image
112
112
options : " --gpus all"
@@ -204,7 +204,7 @@ jobs:
204
204
if : github.repository == 'Project-MONAI/MONAI'
205
205
needs : cron-gpu # so that monai itself is verified first
206
206
container :
207
- image : nvcr.io/nvidia/pytorch:21.06 -py3 # testing with the latest pytorch base image
207
+ image : nvcr.io/nvidia/pytorch:21.08 -py3 # testing with the latest pytorch base image
208
208
options : " --gpus all --ipc=host"
209
209
runs-on : [self-hosted, linux, x64, common]
210
210
steps :
Original file line number Diff line number Diff line change 23
23
- " PT17+CUDA102"
24
24
- " PT17+CUDA110"
25
25
- " PT18+CUDA102"
26
- - " PT19+CUDA113 "
26
+ - " PT19+CUDA114 "
27
27
- " PT19+CUDA102"
28
28
include :
29
29
- environment : PT16+CUDA110
@@ -40,10 +40,12 @@ jobs:
40
40
- environment : PT18+CUDA102
41
41
pytorch : " torch==1.8.1 torchvision==0.9.1"
42
42
base : " nvcr.io/nvidia/cuda:10.2-devel-ubuntu18.04"
43
- - environment : PT19+CUDA113
43
+ - environment : PT19+CUDA114
44
44
# we explicitly set pytorch to -h to avoid pip install error
45
+ # https://docs.nvidia.com/deeplearning/frameworks/pytorch-release-notes
46
+ # 21.08: 1.10.0a0+3fd9dcf
45
47
pytorch : " -h"
46
- base : " nvcr.io/nvidia/pytorch:21.06 -py3"
48
+ base : " nvcr.io/nvidia/pytorch:21.08 -py3"
47
49
- environment : PT19+CUDA102
48
50
pytorch : " torch==1.9.0 torchvision==0.10.0"
49
51
base : " nvcr.io/nvidia/cuda:10.2-devel-ubuntu18.04"
91
93
python get-pip.py && \
92
94
rm get-pip.py;
93
95
fi
94
- - if : matrix.environment == 'PT19+CUDA113 '
95
- name : Optional Cupy dependency (cuda113 )
96
- run : echo "cupy-cuda113 " >> requirements-dev.txt
96
+ - if : matrix.environment == 'PT19+CUDA114 '
97
+ name : Optional Cupy dependency (cuda114 )
98
+ run : echo "cupy-cuda114 " >> requirements-dev.txt
97
99
- name : Install dependencies
98
100
run : |
99
101
which python
Original file line number Diff line number Diff line change 11
11
12
12
# To build with a different base image
13
13
# please run `docker build` using the `--build-arg PYTORCH_IMAGE=...` flag.
14
- ARG PYTORCH_IMAGE=nvcr.io/nvidia/pytorch:21.06 -py3
14
+ ARG PYTORCH_IMAGE=nvcr.io/nvidia/pytorch:21.08 -py3
15
15
FROM ${PYTORCH_IMAGE}
16
16
17
17
LABEL maintainer=
"[email protected] "
You can’t perform that action at this time.
0 commit comments