Skip to content
This repository was archived by the owner on May 11, 2025. It is now read-only.

Commit 9304af9

Browse files
committed
Remove threads
1 parent a0fb91d commit 9304af9

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,9 @@ def get_compute_capabilities():
8585
"nvcc": arch_flags
8686
}
8787
else:
88-
threads = ["--threads", str(min(os.cpu_count(), 8))]
89-
9088
extra_compile_args={
9189
"cxx": ["-g", "-O3", "-fopenmp", "-lgomp", "-std=c++17"],
92-
"nvcc": ["-O3", "-std=c++17"] + arch_flags + threads
90+
"nvcc": ["-O3", "-std=c++17"] + arch_flags
9391
}
9492

9593
extensions = [

0 commit comments

Comments
 (0)