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.
2 parents 43c5045 + 0056635 commit 85c6c49Copy full SHA for 85c6c49
setup.py
@@ -13,13 +13,10 @@
13
14
if torch.cuda.is_available():
15
ext_modules += [
16
- CUDAExtension(
17
- 'spspmm_cuda',
18
- ['cuda/spspmm.cpp', 'cuda/spspmm_kernel.cu'],
19
- extra_link_args=['-lcusparse'],
20
- ),
21
- CUDAExtension('unique_cuda',
22
- ['cuda/unique.cpp', 'cuda/unique_kernel.cu'])
+ CUDAExtension('spspmm_cuda',
+ ['cuda/spspmm.cpp', 'cuda/spspmm_kernel.cu'],
+ extra_link_args=['-lcusparse', '-l', 'cusparse'],
+ )
23
]
24
cmdclass['build_ext'] = BuildExtension
25
0 commit comments