Commit 9304af95 authored by Casper's avatar Casper
Browse files

Remove threads

parent a0fb91d9
......@@ -85,11 +85,9 @@ if os.name == "nt":
"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 = [
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment