From b4fc6c89da215e19078512fdbf5debd54176d584 Mon Sep 17 00:00:00 2001 From: Lorenzo Leone Date: Mon, 28 Oct 2024 11:32:17 +0100 Subject: [PATCH] [TB]: Add more testing --- test/simulate.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/simulate.sh b/test/simulate.sh index 8fd30fe..a15d578 100755 --- a/test/simulate.sh +++ b/test/simulate.sh @@ -23,11 +23,11 @@ call_vsim() { grep "Errors: 0," vsim.log } -for PORTS in 1 ; do - for LATENCY in 1 ; do - for WORDS in 1024; do - for DWIDTH in 64; do - for BYTEWIDTH in 9; do +for PORTS in 1 2; do + for LATENCY in 0 1 2; do + for WORDS in 16 256 512 1024; do + for DWIDTH in 1 42 64; do + for BYTEWIDTH in 1 8 9; do for BANKS in 1 2 4 8; do call_vsim mem_multibank_pwrgate_tb -gNumPorts=$PORTS -gLatency=$LATENCY -gNumWords=$WORDS -gDataWidth=$DWIDTH -gByteWidth=$BYTEWIDTH -gNumLogicBanks=$BANKS done