如何保持https://github.com/lodash/lodash/blob/master/debounce.js
(CUDA c ++编译器)不会破坏我的函数名,以便我可以使用作为apache模块的C程序调用这些函数。
请注意,我使用不知道nvcc
名称的g++
将对象链接在一起。
答案 0 :(得分:0)
您需要通知nvcc
您引用nvcc
将了解的Universe外部函数。我们通过将函数声明为nvcc
来完成此操作。
在extern
文件中:
.h
在#ifdef __cplusplus
extern "C" {
#endif
<rest of your header>
#ifdef __cplusplus
}
#endif
文件中:
.cu