I want to deploy a CNN model in Windows XP 32 bit, and here are my operations:
compile LibTorch-1.4.0 32bit with VS2017;
finish the C++11 code and the .exe run successfully in win10 and win7 32bit;
The code fails in XP which reports “MSVCP140.dll is invalid”.
I want to use VS2015_XP to compile and avoid the error in XP. However, the LibTorch uses C++11/14 which is not supported by VS2015. So, what should I do to run successfully in XP 32bit?
Need help! TAT