Skip to content

Commit 94d1fb4

Browse files
committed
Remove redundant NVCC compilation flag in setup.py
Remove the `-t=0` flag from NVCC compilation options, which appears to be unnecessary. This simplifies the compilation configuration without impacting build behavior.
1 parent 7481959 commit 94d1fb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ def get_extensions():
269269
extra_link_args = []
270270
extra_compile_args = {
271271
"cxx": [f"-DPy_LIMITED_API={PY3_9_HEXCODE}"],
272-
"nvcc": ["-O3" if not debug_mode else "-O0", "-t=0", "-std=c++17"],
272+
"nvcc": ["-O3" if not debug_mode else "-O0", "-std=c++17"],
273273
}
274274

275275
if not IS_WINDOWS:

0 commit comments

Comments
 (0)