我有一个 C 项目,我想使用 CUDA 模块来提升它。但不知何故,无法解析外部定义的变量。我正在使用 Microsoft Visual C++ 2010 Express 和 CUDA Toolkit 5.0。
以下显示了我的最小(非)工作示例:
主.c:
#include "main.h"
#include <stdio.h>
#include "cuda_test.cu"
int main( int argc, const char* argv[] )
{
testfunc();
return 1;
}
主.h:
#ifndef main_h
#define main_h
extern float PI;
#endif
测试文件.c:
#include "main.h"
float PI = 3;
cuda_test.cu:
#include "main.h"
#include <stdio.h>
void testfunc()
{
printf("Hello from cudafile: %E", PI);
}
这会产生以下错误:
1>------ Build started: Project: cuda_min, Configuration: Debug Win32 ------
1>cuda_test.cu.obj : error LNK2001: unresolved external symbol "float PI" (?PI@@3MA)
1>D:\Backup\diplomarbeit\cuda_xanthos\cuda_min\Debug\cuda_min.exe : fatal error LNK1120: 1 unresolved externals
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
将变量 PI 传递给函数 testfunc 时,我得到了所需的行为。这就是我在我的项目中所做的(它实际上使用了 CUDA 设备),但我真的不想将大约 20 个变量传递给我的函数。
我想我缺少 nvcc 的一些设置...
任何帮助将非常感激。