Skip to content

Is there any project that uses the macro "PARAMTEST" to search for optimal P, Q, and R values? #5115

Open
@Rubiczhang

Description

@Rubiczhang

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions