diff options
author | Brad Beckmann <Brad.Beckmann@amd.com> | 2011-02-08 15:53:33 -0800 |
---|---|---|
committer | Brad Beckmann <Brad.Beckmann@amd.com> | 2011-02-08 15:53:33 -0800 |
commit | ea9d4c3a97b1570a3b30d2fd538514b53ac54944 (patch) | |
tree | 3b16bed042218c7762c895b8ac246c8d330d88d2 /tests/configs/memtest-ruby.py | |
parent | 6ebd7c390bd36129b092b115b5ddd0933634902f (diff) | |
download | gem5-ea9d4c3a97b1570a3b30d2fd538514b53ac54944.tar.xz |
memtest: due to contention increase, increased deadlock threshold
Diffstat (limited to 'tests/configs/memtest-ruby.py')
-rw-r--r-- | tests/configs/memtest-ruby.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/configs/memtest-ruby.py b/tests/configs/memtest-ruby.py index f1bb733dc..eb7a280f4 100644 --- a/tests/configs/memtest-ruby.py +++ b/tests/configs/memtest-ruby.py @@ -96,6 +96,12 @@ for (i, ruby_port) in enumerate(system.ruby.cpu_ruby_ports): # cpus[i].test = ruby_port.port cpus[i].functional = system.funcmem.port + + # + # Since the memtester is incredibly bursty, increase the deadlock + # threshold to 1 million cycles + # + ruby_port.deadlock_threshold = 1000000 # ----------------------- # run simulation |