49
49
- { python_version: "3.11", pytorch_version: "2.4", cuda_version: "12.1.1" }
50
50
- { python_version: "3.12", pytorch_version: "2.5", cuda_version: "12.1.1" }
51
51
- { python_version: "3.12", pytorch_version: "2.6", cuda_version: "12.4.1" }
52
- - { python_version: "3.12", pytorch_version: "2.7", cuda_version: "12.6.3", latest: "true" }
52
+ - { python_version: "3.12", pytorch_version: "2.7", cuda_version: "12.6.3" }
53
+ - { python_version: "3.12", pytorch_version: "2.8", cuda_version: "12.6.3", latest: "true" }
53
54
steps :
54
55
- uses : actions/checkout@v4
55
56
with :
97
98
# adding dome more images as Thunder mainly using python 3.10,
98
99
# and we need to support integrations as for example LitGPT
99
100
python_version : ["3.10"]
100
- pytorch_version : ["2.6.0 ", "2.7.1 "]
101
+ pytorch_version : ["2.7.1 ", "2.8.0 "]
101
102
cuda_version : ["12.6.3"]
102
103
include :
103
104
# These are the base images for PL release docker images.
@@ -109,6 +110,7 @@ jobs:
109
110
- { python_version: "3.12", pytorch_version: "2.5.1", cuda_version: "12.1.1" }
110
111
- { python_version: "3.12", pytorch_version: "2.6.0", cuda_version: "12.4.1" }
111
112
- { python_version: "3.12", pytorch_version: "2.7.1", cuda_version: "12.6.3" }
113
+ - { python_version: "3.12", pytorch_version: "2.8.0", cuda_version: "12.6.3" }
112
114
steps :
113
115
- uses : actions/checkout@v4
114
116
- uses : docker/setup-buildx-action@v3
@@ -129,6 +131,7 @@ jobs:
129
131
PYTHON_VERSION=${{ matrix.python_version }}
130
132
PYTORCH_VERSION=${{ matrix.pytorch_version }}
131
133
CUDA_VERSION=${{ matrix.cuda_version }}
134
+ MAKE_FLAGS="-j2"
132
135
file : dockers/base-cuda/Dockerfile
133
136
push : ${{ env.PUSH_NIGHTLY }}
134
137
tags : " pytorchlightning/pytorch_lightning:base-cuda-py${{ matrix.python_version }}-torch${{ env.PT_VERSION }}-cuda${{ matrix.cuda_version }}"
@@ -157,6 +160,8 @@ jobs:
157
160
continue-on-error : true
158
161
uses : docker/build-push-action@v6
159
162
with :
163
+ build-args : |
164
+ PYTORCH_VERSION="25.04"
160
165
file : dockers/nvidia/Dockerfile
161
166
push : false
162
167
timeout-minutes : 55
0 commit comments