diff options
author | mikhnenko <[email protected]> | 2025-10-07 10:25:21 +0300 |
---|---|---|
committer | mikhnenko <[email protected]> | 2025-10-07 10:38:03 +0300 |
commit | e07309516bf008045b92028d09d482923b65baea (patch) | |
tree | 06a485ce7a130c39bbe2311a10c6bf7e2fd50dc0 /build | |
parent | babe7533f18c11be1f8a195ed2324d2d9a89436a (diff) |
Bump CUDA_HOST_TOOLCHAIN
commit_hash:076fe96026b57c22a3f65ea7b482b7d880430570
Diffstat (limited to 'build')
-rw-r--r-- | build/scripts/compile_cuda.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/build/scripts/compile_cuda.py b/build/scripts/compile_cuda.py index 9c44278c574..ac92270204c 100644 --- a/build/scripts/compile_cuda.py +++ b/build/scripts/compile_cuda.py @@ -72,6 +72,8 @@ def main(): # nvcc concatenates the sources for clang, and clang reports unused # things from .h files as if they they were defined in a .cpp file. cflags += ['-Wno-unused-function', '-Wno-unused-parameter'] + # nvcc format source files and give results to clang + cflags += ['-Wno-deprecated-literal-operator'] if not is_clang(command) and '-fopenmp=libomp' in cflags: cflags.append('-fopenmp') |