changeset 94c7423ecd87 in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=94c7423ecd87
description:
config: removed unnecessary slashes
This patch removes unnecessary slashes from a couple of python scripts.
diffstat:
configs/example/ruby_mem_test.py | 24 ++++++++++++------------
configs/example/ruby_network_test.py | 12 ++++++------
2 files changed, 18 insertions(+), 18 deletions(-)
diffs (63 lines):
diff -r 5648986156db -r 94c7423ecd87 configs/example/ruby_mem_test.py
--- a/configs/example/ruby_mem_test.py Thu Jun 30 19:49:26 2011 -0500
+++ b/configs/example/ruby_mem_test.py Thu Jun 30 19:54:02 2011 -0500
@@ -96,12 +96,12 @@
#
# Currently ruby does not support atomic or uncacheable accesses
#
-cpus = [ MemTest(atomic = False, \
- max_loads = options.maxloads, \
- issue_dmas = False, \
- percent_functional = options.functional, \
- percent_uncacheable = 0, \
- progress_interval = options.progress, \
+cpus = [ MemTest(atomic = False,
+ max_loads = options.maxloads,
+ issue_dmas = False,
+ percent_functional = options.functional,
+ percent_uncacheable = 0,
+ progress_interval = options.progress,
suppress_func_warnings = options.suppress_func_warnings) \
for i in xrange(options.num_cpus) ]
@@ -110,12 +110,12 @@
physmem = PhysicalMemory())
if options.num_dmas > 0:
- dmas = [ MemTest(atomic = False, \
- max_loads = options.maxloads, \
- issue_dmas = True, \
- percent_functional = 0, \
- percent_uncacheable = 0, \
- progress_interval = options.progress, \
+ dmas = [ MemTest(atomic = False,
+ max_loads = options.maxloads,
+ issue_dmas = True,
+ percent_functional = 0,
+ percent_uncacheable = 0,
+ progress_interval = options.progress,
warn_on_failure = options.warn_on_failure) \
for i in xrange(options.num_dmas) ]
system.dma_devices = dmas
diff -r 5648986156db -r 94c7423ecd87 configs/example/ruby_network_test.py
--- a/configs/example/ruby_network_test.py Thu Jun 30 19:49:26 2011 -0500
+++ b/configs/example/ruby_network_test.py Thu Jun 30 19:54:02 2011 -0500
@@ -92,12 +92,12 @@
sys.exit(1)
-cpus = [ NetworkTest(fixed_pkts=options.fixed_pkts, \
- max_packets=options.maxpackets, \
- sim_cycles=options.sim_cycles, \
- traffic_type=options.synthetic, \
- inj_rate=options.injectionrate, \
- precision=options.precision, \
+cpus = [ NetworkTest(fixed_pkts=options.fixed_pkts,
+ max_packets=options.maxpackets,
+ sim_cycles=options.sim_cycles,
+ traffic_type=options.synthetic,
+ inj_rate=options.injectionrate,
+ precision=options.precision,
num_memories=options.num_dirs) \
for i in xrange(options.num_cpus) ]
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev