From: Tushar Krishna Date: Sat, 8 Oct 2016 03:56:48 +0000 (-0400) Subject: config: fix typo in cluster topology. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2e5e9085792b1a7c47c231a2adf0da6f7ff8f20d;p=gem5.git config: fix typo in cluster topology. --- diff --git a/configs/topologies/Cluster.py b/configs/topologies/Cluster.py index fad90856d..211647991 100644 --- a/configs/topologies/Cluster.py +++ b/configs/topologies/Cluster.py @@ -87,9 +87,9 @@ class Cluster(BaseTopology): # connect this cluster to the router link_out = IntLink(link_id=self.num_int_links(), src_node=self.router, - dst_node_=node.router) + dst_node=node.router) link_in = IntLink(link_id=self.num_int_links(), src_node=node.router, - dst_node_=self.router) + dst_node=self.router) if node.extBW: link_out.bandwidth_factor = node.extBW