test: Use SimpleMemory for atomic full-system tests
Keep it simple and use the SimpleMemory rather than the DRAM controller model for atomic full-system tests.
This commit is contained in:
parent
c9a8b7b147
commit
9145e2cfd4
6 changed files with 6 additions and 6 deletions
|
@ -39,5 +39,5 @@ from m5.objects import *
|
|||
from x86_generic import *
|
||||
|
||||
root = LinuxX86FSSystemUniprocessor(mem_mode='atomic',
|
||||
mem_class=DDR3_1600_x64,
|
||||
mem_class=SimpleMemory,
|
||||
cpu_class=AtomicSimpleCPU).create_root()
|
||||
|
|
|
@ -39,6 +39,6 @@ from m5.objects import *
|
|||
from arm_generic import *
|
||||
|
||||
root = LinuxArmFSSystem(mem_mode='atomic',
|
||||
mem_class=DDR3_1600_x64,
|
||||
mem_class=SimpleMemory,
|
||||
cpu_class=AtomicSimpleCPU,
|
||||
num_cpus=2).create_root()
|
||||
|
|
|
@ -39,6 +39,6 @@ from m5.objects import *
|
|||
from arm_generic import *
|
||||
|
||||
root = LinuxArmFSSystemUniprocessor(mem_mode='atomic',
|
||||
mem_class=DDR3_1600_x64,
|
||||
mem_class=SimpleMemory,
|
||||
cpu_class=AtomicSimpleCPU).create_root()
|
||||
|
||||
|
|
|
@ -40,7 +40,7 @@ from arm_generic import *
|
|||
import switcheroo
|
||||
|
||||
root = LinuxArmFSSwitcheroo(
|
||||
mem_class=DDR3_1600_x64,
|
||||
mem_class=SimpleMemory,
|
||||
cpu_classes=(AtomicSimpleCPU, AtomicSimpleCPU)
|
||||
).create_root()
|
||||
|
||||
|
|
|
@ -39,6 +39,6 @@ from m5.objects import *
|
|||
from alpha_generic import *
|
||||
|
||||
root = LinuxAlphaFSSystem(mem_mode='atomic',
|
||||
mem_class=DDR3_1600_x64,
|
||||
mem_class=SimpleMemory,
|
||||
cpu_class=AtomicSimpleCPU,
|
||||
num_cpus=2).create_root()
|
||||
|
|
|
@ -39,5 +39,5 @@ from m5.objects import *
|
|||
from alpha_generic import *
|
||||
|
||||
root = LinuxAlphaFSSystemUniprocessor(mem_mode='atomic',
|
||||
mem_class=DDR3_1600_x64,
|
||||
mem_class=SimpleMemory,
|
||||
cpu_class=AtomicSimpleCPU).create_root()
|
||||
|
|
Loading…
Reference in a new issue