网站建设排名的公司,西安黄页查询,大数据培训,厦门市建设工程造价网站首页如果觉得本篇文章对您的学习起到帮助作用#xff0c;请 点赞 关注 评论 #xff0c;留下您的足迹#x1f4aa;#x1f4aa;#x1f4aa; 本文主要介绍VScode下的CUDA编程配置#xff0c;因此记录以备日后查看#xff0c;同时#xff0c;如果能够帮助到更多人#xf…如果觉得本篇文章对您的学习起到帮助作用请 点赞 关注 评论 留下您的足迹 本文主要介绍VScode下的CUDA编程配置因此记录以备日后查看同时如果能够帮助到更多人也不胜荣幸。 文章目录 一、创建compile_commands.json1、cmake中使用2、make中使用 二、安装必要的插件1.远程连接ssh2.C/C3.C/C Extension Pack4.Nsight Visual Studio Code Edition5. vscode-cudacpp 三、配置c_cpp_properties.json四、配置setting.json五、配置tasks.json六、配置launch.json 一、创建compile_commands.json
compile_commands.json 文件能够有效提高一些工具(比如vscode)的代码跳转、补全等功能。
1、cmake中使用
cmake工程生成 compile_commands.json 文件比较简单
cmake -DCMAKE_EXPORT_COMPILE_COMMANDS12、make中使用
安装bear
sudo apt-get install bear执行
bear -- make -j8会生成compile_commands.json文件
二、安装必要的插件
1.远程连接ssh 2.C/C 3.C/C Extension Pack 4.Nsight Visual Studio Code Edition 5. vscode-cudacpp 三、配置c_cpp_properties.json
CtrlShiftP搜索C/C:Edit Configurations(JSON)点击进入 随后生成.vscode文件 c_cpp_properties.json配置为如下所示
{configurations: [{name: Linux,includePath: [${workspaceFolder}/**],defines: [],compilerPath: /usr/bin/gcc,cStandard: c17,cppStandard: gnu17,intelliSenseMode: linux-gcc-x64,configurationProvider: ms-vscode.makefile-tools,compileCommands: ${workspaceFolder}/compile_commands.json}],version: 4
}“compileCommands”: ${workspaceFolder}/compile_commands.json为新添加的内容。
配置路径也可以在includePath中进行配置
{configurations: [{name: Linux,includePath: [${workspaceFolder}/**,/usr/local/cuda/include/**],defines: [],compilerPath: /usr/bin/gcc,cStandard: c17,cppStandard: gnu17,intelliSenseMode: linux-gcc-x64,configurationProvider: ms-vscode.makefile-tools}],version: 4
}四、配置setting.json
在.vscode文件夹中创建setting.json文件添加内容
{files.associations: {*.cu:cuda-cpp}
}参考查询网址vscode language identifier
五、配置tasks.json
1.CtrlShiftP搜索Tasks:Configures Task点击进入 2.选择 使用模板创建tasks.json文件可能是英文形式 3.选择Others 最终tasks.json文件内容
{version: 2.0.0,tasks: [{label: make,type: shell,command: make -j16}]
}六、配置launch.json
1.CtrlShiftP搜索Debug:Add Configuration点击进入 2.选择 CUDA C(CUDA-GDB) 生成launch.json文件。
增加program: “${workspaceFolder}/cudaAPP”cudaAPP是编译出的可执行文件。
{// 使用 IntelliSense 了解相关属性。 // 悬停以查看现有属性的描述。// 欲了解更多信息请访问: https://go.microsoft.com/fwlink/?linkid830387version: 0.2.0,configurations: [{name: CUDA C: Launch,type: cuda-gdb,request: launch,program: ${workspaceFolder}/cudaAPP},{name: CUDA C: Attach,type: cuda-gdb,request: attach}]
}如果您觉得这篇文章对你有帮助记得 点赞 关注 评论 三连您只需动一动手指将会鼓励我创作出更好的文章快留下你的足迹吧