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 27
27
jobs :
28
28
tests-cuda :
29
29
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
31
31
32
32
steps :
33
33
- uses : runs-on/action@v2
Original file line number Diff line number Diff line change @@ -48,6 +48,12 @@ fn run_clang_tidy_single(
48
48
. arg ( "-D__CUDACC__" )
49
49
. arg ( format ! ( "-I{}/include" , cuda_path) ) ;
50
50
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
+
51
57
for include in includes {
52
58
cmd. arg ( format ! ( "-I{}" , include) ) ;
53
59
}
You can’t perform that action at this time.
0 commit comments