I am getting an access violation when calling ippsExp_64fc_A53 in IPP 2018.0.124
Code to reproduce:
Ipp64fc* b1{ ippsMalloc_64fc(1025) }; Ipp64fc* b2{ ippsMalloc_64fc(1025) }; for (int i = 0; i < 1025; i++) { b1[i].re = 1; b1[i].im = 0; } ippsExp_64fc_A53(b1, b2, 1025); ippsFree(b1); ippsFree(b2);
My machine specs:
OS: Windows 10 Professional
IPP version: 2018.0.124
Processor: Intel Core i7-4790
Memory: 32 GB RAM
IDE: Visual Studio 2017 (debug build 64-bits)
The fix is to use ippsExp_64fc_A50 which works.