File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 60
60
61
61
- name : Cache Build
62
62
id : cache-build
63
- uses : actions/cache@v4.0.2
63
+ uses : actions/cache@v4
64
64
with :
65
65
path : ${{ env.CACHE_PATH }}
66
66
key : ${{ runner.os }}-${{ matrix.config }}-cache
@@ -132,10 +132,10 @@ jobs:
132
132
sudo apt-get install ccache
133
133
echo 'CACHE_PATH=~/.cache/ccache' >> "$GITHUB_ENV"
134
134
135
- - uses : Jimver/cuda-toolkit@v0.2.17
135
+ - uses : Jimver/cuda-toolkit@v0.2.22
136
136
id : cuda-toolkit
137
137
with :
138
- cuda : ' 12.4.0 '
138
+ cuda : ' 12.8.1 '
139
139
sub-packages : ' ["nvcc"]'
140
140
method : ' network'
141
141
@@ -145,7 +145,7 @@ jobs:
145
145
146
146
- name : Cache Build
147
147
id : cache-build
148
- uses : actions/cache@v4.0.2
148
+ uses : actions/cache@v4
149
149
with :
150
150
path : ${{ env.CACHE_PATH }}
151
151
key : ${{ runner.os }}-${{ matrix.config }}-CUDA-cache
Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ if(SCALABLE_CCD_WITH_CUDA)
169
169
# library to be built with -dc as the member functions could be called by
170
170
# other libraries and executables.
171
171
set_target_properties (scalable_ccd PROPERTIES CUDA_SEPARABLE_COMPILATION ON )
172
-
172
+
173
173
if (DEFINED SCALABLE_CCD_CUDA_ARCHITECTURES )
174
174
message (STATUS "CUDA_ARCHITECTURES was specified, skipping auto-detection" )
175
175
set (CMAKE_CUDA_ARCHITECTURES ${SCALABLE_CCD_CUDA_ARCHITECTURES} )
@@ -195,11 +195,12 @@ if(SCALABLE_CCD_WITH_CUDA)
195
195
BUILD_RPATH ${CMAKE_CUDA_IMPLICIT_LINK_DIRECTORIES} )
196
196
endif ()
197
197
198
- target_compile_options (scalable_ccd PRIVATE
198
+ target_compile_options (scalable_ccd PRIVATE
199
199
$< $< COMPILE_LANGUAGE:CUDA> :
200
200
--generate-line-info
201
201
--use_fast_math
202
202
--relocatable-device-code=true
203
+ --expt-relaxed-constexpr
203
204
>
204
205
)
205
206
You can’t perform that action at this time.
0 commit comments