From 82406b77406c051b4f0b152b3ea06eb0fb2cc461 Mon Sep 17 00:00:00 2001 From: Daecheol You Date: Tue, 20 Sep 2022 11:45:40 +0900 Subject: [PATCH] configs: bug fix for misc node distribution Wrong parameter is removed from the distributeNodes calling Change-Id: I84cdf3e993d6b7852c4f134441d77a4b295e8574 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/63731 Maintainer: Jason Lowe-Power Tested-by: kokoro Reviewed-by: Jason Lowe-Power Reviewed-by: Tiago Muck --- configs/topologies/CustomMesh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/topologies/CustomMesh.py b/configs/topologies/CustomMesh.py index 2e10fdca2f..545ba4b326 100644 --- a/configs/topologies/CustomMesh.py +++ b/configs/topologies/CustomMesh.py @@ -357,7 +357,7 @@ class CustomMesh(SimpleTopology): self.distributeNodes(hnf_params, hnf_nodes) # Place CHI_MN on the mesh - self.distributeNodes(options, mn_params, mn_nodes) + self.distributeNodes(mn_params, mn_nodes) # Place CHI_SNF_MainMem on the mesh self.distributeNodes(mem_params, mem_nodes)