This patch supports cache flushing in MOESI_hammer

This commit is contained in:
Somayeh Sardashti
2011-03-28 10:49:45 -05:00
parent ef987a4064
commit c8bbfed937
14 changed files with 508 additions and 28 deletions

View File

@@ -82,7 +82,14 @@ if args:
#
# Create the ruby random tester
#
tester = RubyTester(checks_to_complete = options.checks,
# Check the protocol
check_flush = False
if buildEnv['PROTOCOL'] == 'MOESI_hammer':
check_flush = True
tester = RubyTester(check_flush = check_flush,
checks_to_complete = options.checks,
wakeup_frequency = options.wakeup_freq)
#