Skip to content

add level3 defaults for x86 #5418

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions param.h
Original file line number Diff line number Diff line change
Expand Up @@ -4274,5 +4274,38 @@ Until then, just keep it different than DGEMM_DEFAULT_UNROLL_N to keep copy rout
#define SHUFPS_39 shufps $0x39,
#endif

#if defined(ARCH_X86)
#ifndef CGEMM3M_DEFAULT_R
#define CGEMM3M_DEFAULT_R 12288
#endif

#ifndef CGEMM3M_DEFAULT_UNROLL_M
#define CGEMM3M_DEFAULT_UNROLL_M 8
#endif

#ifndef CGEMM3M_DEFAULT_P
#define CGEMM3M_DEFAULT_P 320
#endif

#ifndef CGEMM3M_DEFAULT_Q
#define CGEMM3M_DEFAULT_Q 224
#endif

#ifndef ZGEMM3M_DEFAULT_R
#define ZGEMM3M_DEFAULT_R 12288
#endif

#ifndef ZGEMM3M_DEFAULT_Q
#define ZGEMM3M_DEFAULT_Q 224
#endif

#ifndef ZGEMM3M_DEFAULT_P
#define ZGEMM3M_DEFAULT_P 224
#endif

#ifndef ZGEMM3M_DEFAULT_UNROLL_M
#define ZGEMM3M_DEFAULT_UNROLL_M 4
#endif
#endif

#endif
Loading