0

我尝试使用 CUFFT 修改 Shield Tablet 上的 CUDA 示例。但是,当我构建程序时,我得到了链接错误undefined reference to 'cufftExecR2C'undefined reference to 'cufftExecC2R'.

我认为错误可能是由于缺少 .so 文件引起的。然后我在 Android.mk 文件中添加了 libcufft.so,例如:

 include $(CLEAR_VARS)
 LOCAL_MODULE := libcufft
 LOCAL_LIB_PATH += $(CUDA_TOOLKIT_ROOT)/targets/armv7-linux-    androideabi/lib/
 LOCAL_SRC_FILES := $(LOCAL_LIB_PATH)/libcufft.so
 include $(PREBUILT_SHARED_LIBRARY)

我仍然遇到同样的错误。谁能帮助我并指出正确的方向?

非常感谢。

4

0 回答 0