Mentions légales du service

Skip to content
Snippets Groups Projects
Commit b78665bc authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

include: add enum to define the multiple GEMM variants

parent a3edb22d
No related branches found
No related tags found
1 merge request!334SUMMA GEMM with A stationnary
...@@ -181,6 +181,16 @@ typedef enum chameleon_store_e { ...@@ -181,6 +181,16 @@ typedef enum chameleon_store_e {
ChamEltwise = 403, /**< Element by element storage */ ChamEltwise = 403, /**< Element by element storage */
} cham_store_t; } cham_store_t;
/**
* @brief Chameleon GEMM-like algorithms
*/
typedef enum chameleon_gemm_e {
ChamGemmAlgAuto = -1,
ChamGemmAlgGeneric,
ChamGemmAlgSummaA,
ChamGemmAlgSummaB,
ChamGemmAlgSummaC
} cham_gemm_t;
#define ChameleonTrd 1001 #define ChameleonTrd 1001
#define ChameleonBrd 1002 #define ChameleonBrd 1002
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment