Intel® oneAPI Math Kernel Library
Ask questions and share information with other developers who use Intel® Math Kernel Library.
Announcements
The Intel sign-in experience has changed to support enhanced security controls. If you sign in, click here for more information.
6743 Discussions

Can MKL FFTs work with User defined data types/structures

subramanian__vedapra
168 Views

I know that MKL FFT can work with std::complex

But I would like to know whether it can work with user defined data types. For example, If I replace std::complex with my own data type

struct Complex{

 float r;

float i;

// with all the operator overloading for *,-,+

};

Can MKL work with this struct complex?

0 Kudos
2 Replies
Gennady_F_Intel
Moderator
168 Views

mkl doen't officially support and validate such own data type.

Reply