- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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]
#define A(i,j) a[i - 1 + (j - 1)*adim1]

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page