Intel® oneAPI Math Kernel Library
Ask questions and share information with other developers who use Intel® Math Kernel Library.

Can MKL FFTs work with User defined data types/structures

subramanian__vedapra
259 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
259 Views

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

0 Kudos
Reply