Intel® Integrated Performance Primitives
Deliberate problems developing high-performance vision, signal, security, and storage applications.

ippMalloc, do i need it?

chris-ruth
Beginner
320 Views
Doi need to use the ippMalloc functions instead of 'new'? The calls to ipp functions seemed to work both ways with no difference in timing.
0 Kudos
1 Reply
Vladimir_Dudnik
Employee
320 Views
It is better to use aligned memory blocks if you are wonder about performance. The ippMalloc function provides such memory allocation. But it is possible to use just new operator (or CRT malloc function). No problem with functionality or robustness of IPP code for that case. But be aware that in this case you will not able to reach the maximum performance of your code.
Regards,
Vladimir
0 Kudos
Reply