We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd7a732 commit 96df290Copy full SHA for 96df290
setup.py
@@ -21,7 +21,7 @@ def get_extensions():
21
Extension = CppExtension
22
define_macros = []
23
extra_compile_args = {'cxx': []}
24
- extra_link_args = []
+ extra_link_args = ['metis.lib']
25
26
if WITH_CUDA:
27
Extension = CUDAExtension
@@ -32,7 +32,7 @@ def get_extensions():
32
extra_compile_args['nvcc'] = nvcc_flags
33
34
if sys.platform == 'win32':
35
- extra_link_args += ['cusparse.lib', 'metis.lib']
+ extra_link_args += ['cusparse.lib']
36
else:
37
extra_link_args += ['-lcusparse', '-l', 'cusparse']
38
0 commit comments