VScode + libtorch配置

配置选项:基于Linux,VScode + libtorch

步骤一:libtorch下载(DEBUG版本)
前往libtorch官网https://pytorch.org/get-started/locally/,选择对应版本的libtorch进行下载
解压完成后,放入D盘或者其他位置,记录其路径即可。

步骤二:安装VScode(这边不再赘述),安装完成后,从官网下载cmake进行安装,这边不推荐通过VScode自带的Extensions增加cmake和cmake tools模块。

步骤三:安装好VScode后,新建项目,然后新建main.cpp,然后逐个配置CMakeLists.txt,launch.json,tasks.json,c_cpp_properties.json文件。

main.cpp 代码如下:

#include<torch/script.h>
#include<torch/torch.h>

using namespace std;
int main()
{
    torch::Tensor output;
    cout << "cuda is_available: " << torch::cuda::is_available() << endl;
    torch::DeviceType device = at::kCPU; 
    if (torch::cuda::is_available())
        device = at::kCUDA;
    output = torch::randn({3,3}).to(device);
    cout << output << endl;
    return 0;
}

CMakeLists.txt配置如下:

cmake_minimum_required(VERSION 3.29.0 FATAL_ERROR)
project(main VERSION 0.1.0)

set(Torch_DIR "[你的libtorch目录]/include/torch")
find_package(Torch REQUIRED)

message(STATUS "torch path: ${Torch_DIR}")

add_executable(main main.cpp)
link_directories(${TORCH_LIBRARIES})
set(TORCH_LIBRARIES "[你的libtorch目录]/include/torch/**" "[你的libtorch目录]/include/torch/csrc/api/include/torch/**")
target_link_libraries(main ${TORCH_LIBRARIES})

set_property(TARGET PROJECT1 PROPERTY CXX_STANDARD 17)

launch.json 代码如下:

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "g++.exe - 生成和调试活动文件",
            "type": "cppdbg", //
            "request": "launch", 
            "program": "${fileDirname}\\${fileBasenameNoExtension}.exe",
            "args": [], //往可执行文件传参
            "stopAtEntry": false,
            "cwd": "${fileDirname}", //进入当前目录
            "environment": [],
            "externalConsole": false,
            "MIMode": "gdb",
            "miDebuggerPath": "C:\\Program Files (x86)\\mingw64\\bin\\gdb.exe", //调试器路径
            "setupCommands": [
                {
                    "description": "为 gdb 启用整齐打印",
                    "text": "-enable-pretty-printing",
                    "ignoreFailures": true
                }
            ],
            "preLaunchTask": "C/C++: g++.exe 生成活动文件"
            //在调试之前要做的工作,生成可执行文件
            //对应于tasks.json的label
        }
    ]
}

tasks.json配置如下:


{
    "tasks": [
        {
            "type": "cppbuild",
            "label": "C/C++: g++.exe 生成活动文件",
            "command": "g++",
            "args": [
                "-fdiagnostics-color=always",
                "-g",
                "${file}",
                "-o",
                "${fileDirname}\\${fileBasenameNoExtension}.exe"
            ],
            "options": {
                "cwd": "${fileDirname}"
            },
            "problemMatcher": [
                "$gcc"
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            },
            "detail": "调试器生成的任务。"
        },
        {
            "type": "cppbuild",
            "label": "C/C++: g++.exe build active file",
            "command": "C:\\Program Files (x86)\\mingw64\\bin\\g++.exe",
            "args": [
                "-fdiagnostics-color=always",
                "-g",
                "${file}",
                "-o",
                "${fileDirname}\\${fileBasenameNoExtension}.exe"
            ],
            "options": {
                "cwd": "${fileDirname}"
            },
            "problemMatcher": [
                "$gcc"
            ],
            "group": "build",
            "detail": "compiler: C:\\Program Files (x86)\\mingw64\\bin\\g++.exe"
        }
    ],
    "version": "2.0.0"
}

需要在c_cpp_properties.json中配置除workspaceFolder外的其他链接地址,"cStandard": "c17",选择C++ 17语言标准:

{
    "configurations": [
        {
            "name": "Win32",
            "includePath": [
                "${workspaceFolder}/**",
                "[你的libtorch地址]/include/torch/**",
                "[你的libtorch地址]/include/torch/csrc/api/include/torch/**"
            ],
            "defines": [
                "_DEBUG",
                "UNICODE",
                "_UNICODE"
            ],
            "compilerPath": "C:\\Program Files (x86)\\mingw64\\bin\\gcc.exe",
            "cStandard": "c17",
            "cppStandard": "gnu++14",
            "intelliSenseMode": "windows-gcc-x64"
        }
    ],
    "version": 4
}

VSCode是一款开源的跨平台代码编辑器,而MSVC是微软开发的一套C++编译器。在VSCode配置MSVC可以让我们在使用这个编辑器时也能进行C++的开发。下面是VSCode配置MSVC的步骤: 1. 首先,确保已经安装了MSVC,可以从微软的官网下载安装包并进行安装。 2. 在VSCode中打开"扩展"面板,搜索并安装"ms-vscode.cpptools"插件,该插件提供了与MSVC的集成支持。 3. 安装完插件后,重启VSCode,并打开一个C++项目。 4. 在项目根目录下创建一个名为".vscode"的文件夹,然后在该文件夹中创建一个名为"c_cpp_properties.json"的文件。 5. 在"c_cpp_properties.json"文件中,添加以下配置信息: ```json { "configurations": [ { "name": "MSVC", "includePath": [ "${workspaceFolder}/**" ], "defines": [], "compilerPath": "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.28.29910/bin/Hostx86/x86/cl.exe", "cStandard": "c11", "cppStandard": "c++17", "intelliSenseMode": "msvc-x86" } ], "version": 4 } ``` 注意,上述配置中的"compilerPath"路径可能需要根据你的实际安装路径进行修改。 6. 保存并关闭文件后,重新打开C++项目,VSCode会自动加载配置信息,并进行相关的语法检查和补全。 以上就是在VSCode配置MSVC的步骤,完成后我们就可以在VSCode中使用MSVC进行C++开发了。另外,还可以根据实际需要,在VSCode中通过设置调试器等进一步优化C++开发环境。
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值