Installing Intel Primitive IPP Performance

I installed Intel IPP on my computer, I followed the specific steps where you can find it here:

http://software.intel.com/en-us/articles/intel-integrated-performance-primitives-intel-ipp-for-linux-how-to-install-intel-ipp-for-linux/

and associated the library with my IDE, which is Eclipse, it compiles fine, but when I run the code, I got this error:

when loading shared libraries: libippcv.so.7.0: cannot open shared objects file: no such file or directory

any idea what could be the problem?

thanks

+5
source share
1 answer

You probably need to add the IPP library path to your ld.so.conf , and then run sudo ldconfig . You can verify the correct connection of the application by doing the following:

 ldd <your_app_name> 

Hope this helps!

+3
source

Source: https://habr.com/ru/post/1389072/


All Articles