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

matrix manipulation

Intel_C_Intel
Employee
234 Views

I am new to MKL so I appologize if this question is naive and banal - is there an easy way in MKL to work with matrices - something like what boost ublas::matrix provides - or do I have to treat them as one dimensional arrays ?

Thank you.

0 Kudos
1 Reply
TimP
Honored Contributor III
234 Views
MKL BLAS uses the same data format as netlib blas (Fortran oriented). If you are talking about C or C++, no doubt you are aware of a variety of ways to access matrices, not necessarily as basic as a macro
#define A(i,j) a[i - 1 + (j - 1)*adim1]
0 Kudos
Reply