Skip to content
Snippets Groups Projects
Commit 4beef3bd authored by Stephan Seitz's avatar Stephan Seitz
Browse files

Build CUDAExtension with '-03'. Maybe this helps?

parent c6ef3b60
No related branches found
No related tags found
No related merge requests found
...@@ -27,7 +27,7 @@ if __name__ == "__main__": ...@@ -27,7 +27,7 @@ if __name__ == "__main__":
CUDAExtension(module_name, CUDAExtension(module_name,
[generated_file] + cuda_sources, [generated_file] + cuda_sources,
extra_compile_args={'cxx': [], extra_compile_args={'cxx': [],
'nvcc': ['-arch=sm_35']}) 'nvcc': ['-arch=sm_35', '-O3']})
], ],
cmdclass={ cmdclass={
'build_ext': BuildExtension 'build_ext': BuildExtension
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment