Open
Description
I’ve noticed a code snippet in OpenBLAS/driver/level3/gemm.c that looks like this:
#ifdef PARAMTEST
#undef GEMM_P
#undef GEMM_Q
#undef GEMM_R
#define GEMM_P (args -> gemm_p)
#define GEMM_Q (args -> gemm_q)
#define GEMM_R (args -> gemm_r)
#endif
However, I’m unable to determine where args->gemm_p, args->gemm_q, and args->gemm_r are set.
I understand that the args structure is initialized in OpenBLAS/interface/gemm.c, but I cannot locate where these specific fields (args->gemm_p, args->gemm_q, args->gemm_r) are assigned values.
My goal is to use the PARAMTEST macro to search for optimal P, Q, and R values on a new RISC-V platform. Does anyone know of any existing code or projects that perform such parameter searches?
Or I can implement this function, and open a pr.
Metadata
Metadata
Assignees
Labels
No labels