diff options
Diffstat (limited to 'configs/splash2')
-rw-r--r-- | configs/splash2/cluster.py | 1 | ||||
-rw-r--r-- | configs/splash2/run.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/configs/splash2/cluster.py b/configs/splash2/cluster.py index d7e32a414..1b9397d6d 100644 --- a/configs/splash2/cluster.py +++ b/configs/splash2/cluster.py @@ -214,6 +214,7 @@ else: system = System(cpu = all_cpus, l1_ = all_l1s, l1bus_ = all_l1buses, physmem = SimpleMemory(), membus = CoherentBus(clock = busFrequency)) +system.clock = '1GHz' system.toL2bus = CoherentBus(clock = busFrequency) system.l2 = L2(size = options.l2size, assoc = 8) diff --git a/configs/splash2/run.py b/configs/splash2/run.py index 48e255c52..6880f8db5 100644 --- a/configs/splash2/run.py +++ b/configs/splash2/run.py @@ -199,6 +199,7 @@ else: # ---------------------- system = System(cpu = cpus, physmem = SimpleMemory(), membus = CoherentBus(clock = busFrequency)) +system.clock = '1GHz' system.toL2bus = CoherentBus(clock = busFrequency) system.l2 = L2(size = options.l2size, assoc = 8) |