Intel Performance Primitives
-
@d-healey a brain bender! following along ive tried all the above. ive also tried including the paths in the Additional Include Directories in the project properties (Project -> [project name] Properties, under C/C++ | General). but ho change
-
@Christoph-Hart @Adam_G I've found the root cause of the issue I think...
There are a few places like this in the source code
#if IPP_VERSION_MAJOR >= 2021 && IPP_VERSION_MINOR >= 10 #include <ipp/ippcore.h> #include <ipp/ipps.h> #else #include <ippcore.h> #include <ipps.h> #endif #define JUCE_IPP_AVAILABLE 1 #endif
And the version check is not working.
IPP_VERSION_MAJOR
has been set correctly to 2022 but the minor version is only 1 so it's going to the else and looking forippcore.h
instead ofipp/ippcore.h
If I replace the paths then it "seems" to work.
-
@d-healey ahhhh wow that was very impressive detective work!
-
@Adam_G said in Intel Performance Primitives:
wow that was very impressive detective work!
I just clicked the error message in visual studio ;)
-
@d-healey im watching a master at work
-
@d-healey said in Intel Performance Primitives:
#if IPP_VERSION_MAJOR >= 2021 && IPP_VERSION_MINOR >= 10
Looks like this was Christoph's attempt to support newer versions of IPP. @Christoph-Hart Please fix :D
My suggested fix
#if (IPP_VERSION_MAJOR >= 2021 && IPP_VERSION_MINOR >= 10) || IPP_VERSION_MAJOR >= 2022
-
could you point me where to edit oh wise one @d-healey
-
@Adam_G When building HISE just click each error message and it will jump you to the relevant spots in the source code. There were only 3 I think.
I'll try my suggested fix tomorrow, if Christoph doesn't get there first, and make a pull request.
-
@d-healey thank you
-
Yeah that worked, here's the PR