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 7f914ef commit da8f675Copy full SHA for da8f675
setup.py
@@ -15,7 +15,7 @@
15
if platform.system() == 'Windows':
16
extra_link_args = 'cusparse.lib'
17
else:
18
- extra_link_args = ['-lcusparse', '-l', 'cusparse'],
+ extra_link_args = ['-lcusparse', '-l', 'cusparse']
19
20
ext_modules += [
21
CUDAExtension(
@@ -41,5 +41,4 @@
41
tests_require=tests_require,
42
ext_modules=ext_modules,
43
cmdclass=cmdclass,
44
- packages=find_packages(),
45
-)
+ packages=find_packages(), )
0 commit comments