Libtorch는 Pytorch의 C++ API로 Visual Studio 환경에서 script를 실행하거나 네트워크 모델을 작성하여 실행 할 수 있다.
인터넷 검색을 libtorch로 해도 자료는 Pytorch 자료로 나오는 만큼 자료가 부족하다고 느낀다.
나는 Windows를 이용하고, Visual Studio 2022를 사용한다.
개인적으로 프로젝트 구성시 선호하는 폴더 트리 구성은 다음과 같다.
Pytorch 사이트(https://pytorch.org/)에서 다음과 같이 C++ Cuda 버전을 다운로드한다.
위 환경을 완료하고 아래 코드를 콘솔로 실행하면 Cuda 사용이 가능하다는 메시지를 확인할 수 있다.
#include <torch/script.h>
#include <torch/torch.h>
#include <iostream>
int main()
{
torch::Device device = torch::kCPU;
std::cout << "CUDA DEVICE COUNT: " << torch::cuda::device_count() << std::endl;
if (torch::cuda::is_available())
{
std::cout << "CUDA is available! Training on GPU." << std::endl;
device = torch::kCUDA;
}
}