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 6060
6161 - name : Cache Build
6262 id : cache-build
63- uses : actions/cache@v4.0.2
63+ uses : actions/cache@v4
6464 with :
6565 path : ${{ env.CACHE_PATH }}
6666 key : ${{ runner.os }}-${{ matrix.config }}-cache
@@ -132,10 +132,10 @@ jobs:
132132 sudo apt-get install ccache
133133 echo 'CACHE_PATH=~/.cache/ccache' >> "$GITHUB_ENV"
134134
135- -
uses :
Jimver/[email protected] .17 135+ -
uses :
Jimver/[email protected] .22 136136 id : cuda-toolkit
137137 with :
138- cuda : ' 12.4.0 '
138+ cuda : ' 12.8.1 '
139139 sub-packages : ' ["nvcc"]'
140140 method : ' network'
141141
@@ -145,7 +145,7 @@ jobs:
145145
146146 - name : Cache Build
147147 id : cache-build
148- uses : actions/cache@v4.0.2
148+ uses : actions/cache@v4
149149 with :
150150 path : ${{ env.CACHE_PATH }}
151151 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)
169169 # library to be built with -dc as the member functions could be called by
170170 # other libraries and executables.
171171 set_target_properties (scalable_ccd PROPERTIES CUDA_SEPARABLE_COMPILATION ON )
172-
172+
173173 if (DEFINED SCALABLE_CCD_CUDA_ARCHITECTURES)
174174 message (STATUS "CUDA_ARCHITECTURES was specified, skipping auto-detection" )
175175 set (CMAKE_CUDA_ARCHITECTURES ${SCALABLE_CCD_CUDA_ARCHITECTURES} )
@@ -195,11 +195,12 @@ if(SCALABLE_CCD_WITH_CUDA)
195195 BUILD_RPATH ${CMAKE_CUDA_IMPLICIT_LINK_DIRECTORIES} )
196196 endif ()
197197
198- target_compile_options (scalable_ccd PRIVATE
198+ target_compile_options (scalable_ccd PRIVATE
199199 $<$<COMPILE_LANGUAGE:CUDA>:
200200 --generate-line-info
201201 --use_fast_math
202202 --relocatable-device-code=true
203+ --expt-relaxed-constexpr
203204 >
204205 )
205206
You can’t perform that action at this time.
0 commit comments