Commit 88a7b87 1 parent 28f7d3a commit 88a7b87 Copy full SHA for 88a7b87
File tree 3 files changed +5
-9
lines changed
3 files changed +5
-9
lines changed Original file line number Diff line number Diff line change 37
37
- run :
38
38
name : Install env using main channel
39
39
command : |
40
- conda install -y -q python=3.11 cmake make swig mkl=2023 mkl-devel=2023 numpy scipy pytest gxx_linux-64=11.2 sysroot_linux-64
40
+ conda install -y -q python=3.11 cmake make swig mkl=2023 mkl-devel=2023 numpy scipy pytest gxx_linux-64 sysroot_linux-64
41
41
- run :
42
42
name : Build all targets
43
43
no_output_timeout : 30m
Original file line number Diff line number Diff line change @@ -38,25 +38,25 @@ runs:
38
38
# install base packages for X86_64
39
39
if [ "${{ runner.arch }}" = "X64" ]; then
40
40
# TODO: unpin versions for gxx_linux-64 and sysroot_linux-64 and merge it with ARM64 below
41
- conda install -y -q -c conda-forge gxx_linux-64=11.2 sysroot_linux-64=2.28
41
+ conda install -y -q -c conda-forge gxx_linux-64 sysroot_linux-64
42
42
conda install -y -q mkl=2023 mkl-devel=2023
43
43
fi
44
44
45
45
46
46
# install CUDA packages
47
47
if [ "${{ inputs.gpu }}" = "ON" ] && [ "${{ inputs.raft }}" = "OFF" ]; then
48
- conda install -y -q cuda-toolkit -c "nvidia/label/cuda-11.8.0 "
48
+ conda install -y -q cuda-toolkit -c "nvidia/label/cuda-12.1 "
49
49
fi
50
50
51
51
# install RAFT packages
52
52
if [ "${{ inputs.raft }}" = "ON" ]; then
53
- conda install -y -q libraft cuda-version=11.8 cuda-toolkit -c rapidsai-nightly -c "nvidia/label/cuda-11.8.0 " -c conda-forge
53
+ conda install -y -q libraft cuda-version=12.1 cuda-toolkit -c rapidsai-nightly -c "nvidia/label/cuda-12.1 " -c conda-forge
54
54
fi
55
55
56
56
# install test packages
57
57
conda install -y pytest
58
58
if [ "${{ inputs.gpu }}" = "ON" ]; then
59
- conda install -y -q pytorch pytorch-cuda=11.8 -c pytorch -c nvidia/label/cuda-11.8.0
59
+ conda install -y -q pytorch pytorch-cuda=12.1 -c pytorch -c nvidia/label/cuda-12.1
60
60
else
61
61
conda install -y -q pytorch -c pytorch
62
62
fi
Original file line number Diff line number Diff line change @@ -165,7 +165,6 @@ jobs:
165
165
with :
166
166
label : main
167
167
cuda : " 11.4.4"
168
- compiler_version : " 11.2"
169
168
linux-x86_64-GPU-RAFT-packages-CUDA11-8-0 :
170
169
name : Linux x86_64 GPU w/ RAFT packages (CUDA 11.8.0)
171
170
if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
@@ -183,7 +182,6 @@ jobs:
183
182
label : main
184
183
raft : " ON"
185
184
cuda : " 11.8.0"
186
- compiler_version : " 11.2"
187
185
linux-x86_64-GPU-packages-CUDA-12-1-1 :
188
186
name : Linux x86_64 GPU packages (CUDA 12.1.1)
189
187
if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
@@ -200,7 +198,6 @@ jobs:
200
198
with :
201
199
label : main
202
200
cuda : " 12.1.1"
203
- compiler_version : " 11.2"
204
201
linux-x86_64-GPU-RAFT-packages-CUDA12-1-1 :
205
202
name : Linux x86_64 GPU w/ RAFT packages (CUDA 12.1.1)
206
203
if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
@@ -218,7 +215,6 @@ jobs:
218
215
label : main
219
216
raft : " ON"
220
217
cuda : " 12.1.1"
221
- compiler_version : " 11.2"
222
218
windows-x86_64-packages :
223
219
name : Windows x86_64 packages
224
220
if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
You can’t perform that action at this time.
0 commit comments