Skip to content
This repository was archived by the owner on Feb 9, 2022. It is now read-only.

Commit 21a261f

Browse files
committed
Fix bugs in ccnuma_fs scripts: the simulated NUMA system is actually a simple NUMA system!
1 parent ba0b232 commit 21a261f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

configs/numa/ccnuma_FSConfig.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ class BaseTsunami(Tsunami):
8888
self.tsunami.ethernet.pio = self.iobus.master
8989
self.tsunami.ethernet.config = self.iobus.master
9090

91-
self.systembus = MemBus()
91+
self.systembus = IOXBar()
9292

9393
# By default the bridge responds to all addresses above the I/O
9494
# base address (including the PCI config space)

configs/numa/ccnuma_fs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def __init__(self, id = -1):
8787

8888
self.mem_ranges = [AddrRange(Addr(str(self.id * 512) + 'MB'), size = options.mem_size_per_domain)] # TODO: 512 should not be hardcoded
8989

90-
self.membus = SystemXBar()
90+
self.membus = MemBus()
9191

9292
def build_test_system(np):
9393
cmdline = cmd_line_template()

0 commit comments

Comments
 (0)