1#pragma once
2
3/// Indicates the major version of LibTorch.
4#define TORCH_VERSION_MAJOR 2
5
6/// Indicates the minor version of LibTorch.
7#define TORCH_VERSION_MINOR 0
8
9/// Indicates the patch version of LibTorch.
10#define TORCH_VERSION_PATCH 0
11
12/// Indicates the version of LibTorch.
13#define TORCH_VERSION \
14 "2.0.0"
15