ubuntu20.04 使用libtorch

2022/1/25 7:07:40

本文主要是介绍ubuntu20.04 使用libtorch,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

一、官网下载文件

https://pytorch.org/get-started/locally/

选择下载Stable(1.10.1) C++ CPU(cxx 11 ABI)

解压.zip压缩包,将libtorch移动到存放第三方库的位置

二、使用

2.1 创建torch_ws文件夹,然后创建如下两文件

example-app.cpp

#include "torch/torch.h"
#include <iostream>

int main() {
  torch::Tensor tensor = torch::rand({2, 3});
  std::cout << tensor << std::endl;
}

 CMakeLists.txt

cmake_minimum_required(VERSION 3.5)
project(test_pytorch)
set(CMAKE_CXX_STANDARD 14)
set(Torch_DIR /home/chenjian/Downloads/torch_ws/libtorch/share/cmake/Torch) 
find_package(Torch REQUIRED)    
add_executable(example-app example-app.cpp)
target_link_libraries(example-app "${TORCH_LIBRARIES}")

 



这篇关于ubuntu20.04 使用libtorch的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程