From 2f82b1feabad1d95678997802dbd1289c05c34aa Mon Sep 17 00:00:00 2001 From: AdityaAtulTewari Date: Mon, 29 Jul 2024 18:18:21 +0000 Subject: [PATCH] Update chiprtr so throughput scales correctly --- pando-drv/tests/drv_pandohammer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pando-drv/tests/drv_pandohammer.py b/pando-drv/tests/drv_pandohammer.py index d2f54c80..27a5c205 100644 --- a/pando-drv/tests/drv_pandohammer.py +++ b/pando-drv/tests/drv_pandohammer.py @@ -39,8 +39,8 @@ def MakePANDOHammer(make_tile): "num_ports" : PODS * (CORES + POD_L2_BANKS) + (1 if arguments.with_command_processor else 0) + PXN_MAINMEM_BANKS + PXNS - 1, # If number of PXNS is equal to 1 we do not need additional port. Hence -1 "topology" : "merlin.singlerouter", # performance models - "xbar_bw" : "256GB/s", - "link_bw" : "256GB/s", + "xbar_bw" : f"{PODS *(CORES + POD_L2_BANKS)}GB/s", + "link_bw" : f"{PODS *(CORES + POD_L2_BANKS)}GB/s", "flit_size" : "8B", "input_buf_size" : arguments.network_onchip_buffer_size, "output_buf_size" : arguments.network_onchip_buffer_size,