Skip to content

Commit

Permalink
Remove threads
Browse files Browse the repository at this point in the history
  • Loading branch information
casper-hansen committed Sep 6, 2023
1 parent a0fb91d commit 9304af9
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,9 @@ def get_compute_capabilities():
"nvcc": arch_flags
}
else:
threads = ["--threads", str(min(os.cpu_count(), 8))]

extra_compile_args={
"cxx": ["-g", "-O3", "-fopenmp", "-lgomp", "-std=c++17"],
"nvcc": ["-O3", "-std=c++17"] + arch_flags + threads
"nvcc": ["-O3", "-std=c++17"] + arch_flags
}

extensions = [
Expand Down

0 comments on commit 9304af9

Please sign in to comment.