File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 2727jobs :
2828 tests-cuda :
2929 runs-on :
30- - runs-on=${{ github.run_id }}-base-tests-cuda-${{ github.run_attempt }}/family=g6+g6e/image=ubuntu24 -gpu-x64/extras=s3-cache
30+ - runs-on=${{ github.run_id }}-base-tests-cuda-${{ github.run_attempt }}/runner=test -gpu-nvidia
3131
3232 steps :
3333 - uses : runs-on/action@v2
Original file line number Diff line number Diff line change @@ -48,6 +48,12 @@ fn run_clang_tidy_single(
4848 . arg ( "-D__CUDACC__" )
4949 . arg ( format ! ( "-I{}/include" , cuda_path) ) ;
5050
51+ // Check if CCCL directory exists (CUDA 13.0+)
52+ let cccl_path = PathBuf :: from ( cuda_path) . join ( "include" ) . join ( "cccl" ) ;
53+ if cccl_path. exists ( ) {
54+ cmd. arg ( format ! ( "-I{}" , cccl_path. display( ) ) ) ;
55+ }
56+
5157 for include in includes {
5258 cmd. arg ( format ! ( "-I{}" , include) ) ;
5359 }
You can’t perform that action at this time.
0 commit comments