标签:style blog http io color os ar sp 文件
Windows 平台下,这两个软件安装没有什么难度,点击下一步即可。
VS Express 版本不支持安装扩展,所以不能在安装之后直接新建CUDA的工程,只能手动处理,这个稍微麻烦些:
1. 在 VS 2013 Express 里,点击文件->新建项目,选择模板\Visual C++\空项目;
2. 右击解决方案资源管理器的项目名称,选择生成依赖项->生成自定义;
3. 选择 CUDA 6.5,然后点击确定
4. 右键项目,选择属性,然后如图添加链接器的附加依赖项 cudart.lib
5. 设置 VS 2013 对 .cu 文件加亮,如图
6. 在项目中添加一个新文件(源文件->添加->新建项-> C++ 文件)扩展名改为 .cu,输入以下内容:
#include <cuda_runtime_api.h> #include <device_launch_parameters.h> #include <iostream> int main(void) { int n; cudaGetDeviceCount(&n); std::cout << n << std::endl; cudaDeviceProp prop; cudaGetDeviceProperties(&prop, 0); std::cout << prop.name << std::endl; return 0; }
编译运行…
CUDA 6.5 + Visual Studio 2013 Express 环境配置
标签:style blog http io color os ar sp 文件
原文地址:http://www.cnblogs.com/intervention/p/4055285.html