I'm using Visual Studio 2015, parallel studio xe 2016. I'm on a 64-bit Windows 10 box. I'm both compiling and attempting to run on the same box.
I've been trying for a few hours now to get some stuff to run GPU offloading, but I'm up against a wall with this error. Specifically it says:
"GFX(16:19:53): FATAL ERROR: error #-35: JITDLL version is older than ISA version
(L__ComputeClassForPoints_PerPixelDecisionTreeNative__QEAAPEAV_$vector_HV_$allo
cator_H_std___std__HPEAH0PEAUNativeFrameData__PEAUPerPixelDecisionTreeNode__HHH_
Z_PerPixelDecisionTreeNative_cpp_483_483__par_region0_2)"
Where the PerPixelDecisionTree is a function I'm writing that does machine learning.
The project is setup such that a .LIB file is compiled by the Intel C++ 16.0 compiler, and the resultant library is linked to a console application (which is also compiled with the Intel C++ 16.0 compiler). Within the LIB file are the definition of the functions I'm trying to use.
I've Googled for this error and found nothing. I hope someone out there can at least give me a clue as to what's going on, and how I can start to resolve this.