- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
In the C version of MKL's tutorial, source file dgemm_example.c, line 71:
cblas_dgemm(CblasRowMajor, CblasNoTrans, CblasNoTrans, m, n, p, alpha, A, p, B, n, beta, C, n);
Where is the varialble `CblasRowMajor` declared and where is the value of this variable set? I couldn't find any clue about it in the source file. Thank you for your help.
1 Solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
These declarations you may see into header files, e.x. - mkl_cblas.h:
typedef enum {CblasRowMajor=101, CblasColMajor=102} CBLAS_LAYOUT;
Link Copied
2 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
These declarations you may see into header files, e.x. - mkl_cblas.h:
typedef enum {CblasRowMajor=101, CblasColMajor=102} CBLAS_LAYOUT;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you, Gennady. I had thought it is a variable; turns out that it is an enum constant ...

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