vs2017调用libtorch 报一堆错误
Posted xdk1002
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vs2017调用libtorch 报一堆错误相关的知识,希望对你有一定的参考价值。
严重性 代码 说明 项目 文件 行 禁止显示状态
错误 C7525 内联变量至少需要 "/std:c++17" libtorch-win-shared-with-deps-1.5.1libtorchincludec10utilfloat16-inl.h 66
严重性 代码 说明 项目 文件 行 禁止显示状态
错误 C2365 “std::c10::BFloat16”: 重定义;以前的定义是“函数” libtorch-win-shared-with-deps-1.5.1libtorchincludec10utilfloat16-inl.h 66
解决办法:
include的顺序问题
错误顺序
#include <torch/torch.h>
#include <torch/script.h> // One-stop header.
#include <opencv2/opencv.hpp>
#include <string>
#include <vector>
#include <memory>
正确顺序
#include <opencv2/opencv.hpp>
#include <string>
#include <vector>
#include <memory>
#include <torch/torch.h>
#include <torch/script.h> // One-stop header.
以上是关于vs2017调用libtorch 报一堆错误的主要内容,如果未能解决你的问题,请参考以下文章
关于windows10用c++部署libtorch过程中遇到的一些问题
尽管在 CMake 中指定了库,但未定义的引用错误(与 libtorch 链接的问题(C++11 ABI?)