Does IPP thread safe when it linked to the non-threaded static library ?
Asked
Active
Viewed 290 times
1 Answers
-1
IPP does not care about threads, because it has little to no state information that would need to be protected.

Simon Richter
- 28,572
- 1
- 42
- 64
-
Not all IPP functions are threadsafe. https://software.intel.com/en-us/articles/intel-integrated-performance-primitives-intel-ipp-threading-openmp-faq#2 – SMir Jan 22 '15 at 20:28
-
The multithreaded functions are newer than my answer. Using the regular IPP functions requires you to do your own synchronisation if there is ever any shared data (which there normally isn't). – Simon Richter Jan 23 '15 at 10:07