summaryrefslogtreecommitdiff
path: root/python/m5/objects/MemTest.mpy
diff options
context:
space:
mode:
authorNathan Binkert <binkertn@umich.edu>2005-03-11 18:32:36 -0500
committerNathan Binkert <binkertn@umich.edu>2005-03-11 18:32:36 -0500
commite6902a907e333c09d64d520f4c978edf7e098f6a (patch)
tree5b0acd0444285290365fbead19f081b8f3ebdd9a /python/m5/objects/MemTest.mpy
parentb1f41a7aa0f617014d2bf6d5d3675830ffac213c (diff)
parentfa1650a08e56b176c2b31cd5c3b8939820e93884 (diff)
downloadgem5-e6902a907e333c09d64d520f4c978edf7e098f6a.tar.xz
Merge zizzer.eecs.umich.edu:/z/m5/Bitkeeper/m5
into ziff.eecs.umich.edu:/z/binkertn/research/m5/current --HG-- extra : convert_revision : abc24d21097770ad323a2c0d537d3e9424db0d7d
Diffstat (limited to 'python/m5/objects/MemTest.mpy')
-rw-r--r--python/m5/objects/MemTest.mpy18
1 files changed, 18 insertions, 0 deletions
diff --git a/python/m5/objects/MemTest.mpy b/python/m5/objects/MemTest.mpy
new file mode 100644
index 000000000..af14ed9c3
--- /dev/null
+++ b/python/m5/objects/MemTest.mpy
@@ -0,0 +1,18 @@
+simobj MemTest(SimObject):
+ type = 'MemTest'
+ cache = Param.BaseCache("L1 cache")
+ check_mem = Param.FunctionalMemory("check memory")
+ main_mem = Param.FunctionalMemory("hierarchical memory")
+ max_loads = Param.Counter("number of loads to execute")
+ memory_size = Param.Int(65536, "memory size")
+ percent_copies = Param.Percent(0, "target copy percentage")
+ percent_dest_unaligned = Param.Percent(50,
+ "percent of copy dest address that are unaligned")
+ percent_reads = Param.Percent(65, "target read percentage")
+ percent_source_unaligned = Param.Percent(50,
+ "percent of copy source address that are unaligned")
+ percent_uncacheable = Param.Percent(10,
+ "target uncacheable percentage")
+ progress_interval = Param.Counter(1000000,
+ "progress report interval (in accesses)")
+ trace_addr = Param.Addr(0, "address to trace")