Skip to content

Commit 7f914ef

Browse files
committed
windows cusparse fix
1 parent d1c42fb commit 7f914ef

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
if CUDA_HOME is not None:
1515
if platform.system() == 'Windows':
16-
extra_link_args = ['cusparse.lib'],
16+
extra_link_args = 'cusparse.lib'
1717
else:
1818
extra_link_args = ['-lcusparse', '-l', 'cusparse'],
1919

@@ -41,4 +41,5 @@
4141
tests_require=tests_require,
4242
ext_modules=ext_modules,
4343
cmdclass=cmdclass,
44-
packages=find_packages(), )
44+
packages=find_packages(),
45+
)

0 commit comments

Comments
 (0)