Change NUM_WAYS from 1 to 4

NUM_WAYS = 1 seem to be broken in Vortex.  This makes sgemm test pass
This commit is contained in:
Hansung Kim
2023-11-28 18:43:25 -08:00
parent d45cf835cf
commit 0d60180d0d

View File

@@ -403,7 +403,7 @@ class VX_cache_top(
CACHE_SIZE: Int = 16384 / 4, // <FIXME, divided by 4 for faster simulation
CACHE_LINE_SIZE: Int = 16,
NUM_BANKS: Int = 1,
NUM_WAYS: Int = 1,
NUM_WAYS: Int = 4,
// for single-bank configuration, set NUM_REQS = 1 and instead set
// WORD_SIZE to something wider than 4
WORD_SIZE: Int = 16,