0

我的 cuSparse 程序运行正常,但修改后我遇到了一堆错误:

/tmp/tmpxft_000014cd_00000000-14_Sample2.0.o: In function `main':
tmpxft_000014cd_00000000-3_Sample2.0.cudafe1.cpp:(.text+0xb24): undefined reference to   `cusparseCreate'
tmpxft_000014cd_00000000-3_Sample2.0.cudafe1.cpp:(.text+0xb68): undefined reference to `cusparseCreateMatDescr'
tmpxft_000014cd_00000000-3_Sample2.0.cudafe1.cpp:(.text+0xbb4): undefined reference to `cusparseSetMatType'
tmpxft_000014cd_00000000-3_Sample2.0.cudafe1.cpp:(.text+0xbc8): undefined reference to `cusparseSetMatIndexBase'
tmpxft_000014cd_00000000-3_Sample2.0.cudafe1.cpp:(.text+0xc60): undefined reference to `cusparseScsrmv_v2'

这意味着什么?程序中的 main() 函数变得非常混乱。这些错误可以与它有某种联系吗?可能我应该把程序分成几个部分吗?

4

1 回答 1

0

链接器说它缺少这些函数的定义。你定义了这些函数吗?名称拼写是否正确?

//jk

于 2013-03-10T18:36:49.607 回答