From bf1b578ea32ea1c9dbf7cb3586969e8ae89aa5ef Mon Sep 17 00:00:00 2001 From: "Field G. Van Zee" Date: Fri, 19 Mar 2021 13:03:17 -0500 Subject: [PATCH] Reduced KC on skx from 384 to 256. Details: - Reduced the KC cache blocksize for double real on the skx subconfig from 384 to 256. The maximum (extended) KC was also reduced accordingly from 480 to 320. Thanks to Tze Meng Low for suggesting this change. --- config/skx/bli_cntx_init_skx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/skx/bli_cntx_init_skx.c b/config/skx/bli_cntx_init_skx.c index 4df681cf4..f18503a7a 100644 --- a/config/skx/bli_cntx_init_skx.c +++ b/config/skx/bli_cntx_init_skx.c @@ -106,8 +106,8 @@ void bli_cntx_init_skx( cntx_t* cntx ) bli_blksz_init_easy( &blkszs[ BLIS_MR ], 32, 16, -1, -1 ); bli_blksz_init_easy( &blkszs[ BLIS_NR ], 12, 14, -1, -1 ); bli_blksz_init_easy( &blkszs[ BLIS_MC ], 480, 240, -1, -1 ); - bli_blksz_init ( &blkszs[ BLIS_KC ], 384, 384, -1, -1, - 480, 480, -1, -1 ); + bli_blksz_init ( &blkszs[ BLIS_KC ], 384, 256, -1, -1, + 480, 320, -1, -1 ); bli_blksz_init_easy( &blkszs[ BLIS_NC ], 3072, 3752, -1, -1 ); bli_blksz_init_easy( &blkszs[ BLIS_AF ], 8, 8, -1, -1 ); bli_blksz_init_easy( &blkszs[ BLIS_DF ], 8, 8, -1, -1 );