Skip to content

Commit

Permalink
fix CUDA build with NVCC_FLAGS in env (#8692)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefantalpalaru authored Oct 23, 2024
1 parent 945bdad commit e9a3213
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def get_macros_and_flags():
if NVCC_FLAGS is None:
nvcc_flags = []
else:
nvcc_flags = nvcc_flags.split(" ")
nvcc_flags = NVCC_FLAGS.split(" ")
extra_compile_args["nvcc"] = nvcc_flags

if sys.platform == "win32":
Expand Down

0 comments on commit e9a3213

Please sign in to comment.