抽个时间再来整理,粗略地放在这里吧
tools->options->Text Editor->File Extension
打开VS2008,工具->选项->项目和解决方案->VC++目录 做以下添加:
包含文件:……\NVIDIA GPU Computing SDK 3.2\C\common\inc(SDK安装目录下)
C:\ProgramData\NVIDIA Corporation\NVIDIA GPU Computing SDK 4.1\C\common\inc
库文件:……\NVIDIA GPU Computing SDK 3.2\C\common\lib(SDK安装目录下)
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v4.1\lib\Win32
这个一定要有,否则出现fatal error LNK1181: cannot open input file 'cudart.lib'
C:\ProgramData\NVIDIA Corporation\NVIDIA GPU Computing SDK 4.1\C\common\lib\Win32
fatal error LNK1104: cannot open file 'cutil32D.lib'
源文件:……\NVIDIA GPU Computing SDK 3.2\C\src(SDK安装目录下)
C:\ProgramData\NVIDIA Corporation\NVIDIA GPU Computing SDK 4.1\C\common\src
进入VC++ 项目设置(VC++ Project Settings):C/C++ 文件扩展名:添加*.cu,
在文本编辑器->文件扩展名:添加cu 对应编辑器到Microsoft VC++
右击项目,选择【属性】,选择【配置属性】 - 【链接器】 - 【输入】,在附加依赖项中添加 cudart.lib cutil32D.lib 。否则在编译时会出现类似“ error LNK2019 无法解析的外部符号 ”的错误。
cuda runtime api v4.0
新建项目然后添加c++文件,然后把这个文件重命名为*.cu(开始还以为能直接出现添加cu文件的选项)
C:\ProgramData\NVIDIA Corporation\NVIDIA GPU Computing SDK 4.1\C\bin\win32\Debug
C:\ProgramData\NVIDIA Corporation\NVIDIA GPU Computing SDK 4.1\C\bin\win32\Release