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.
This commit is contained in:
Field G. Van Zee
2021-03-19 13:03:17 -05:00
parent 4493cf516e
commit bf1b578ea3

View File

@@ -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 );