30a31,32
> from __future__ import print_function
>
84c86
< print "Error: script doesn't take any positional arguments"
---
> print("Error: script doesn't take any positional arguments")
90,91c92,93
< print "Error: Number of testers %d limited to %d because of false sharing" \
< % (options.num_cpus, block_size)
---
> print("Error: Number of testers %d limited to %d because of false sharing"
> % (options.num_cpus, block_size))
186c188
< print 'Exiting @ tick', m5.curTick(), 'because', exit_event.getCause()
---
> print('Exiting @ tick', m5.curTick(), 'because', exit_event.getCause())