config: removed unnecessary slashes
This patch removes unnecessary slashes from a couple of python scripts.
This commit is contained in:
parent
c86f849d5a
commit
0b7b3766af
2 changed files with 18 additions and 18 deletions
|
@ -96,12 +96,12 @@ if options.num_cpus > block_size:
|
|||
#
|
||||
# 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 @@ system = System(cpu = cpus,
|
|||
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
|
||||
|
|
|
@ -92,12 +92,12 @@ if options.num_cpus > block_size:
|
|||
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) ]
|
||||
|
||||
|
|
Loading…
Reference in a new issue