Searched refs:cpts (Results 1 - 3 of 3) sorted by relevance

/gem5/util/
H A Dcheckpoint_aggregator.py44 def aggregate(output_dir, cpts, no_compress, memory_size):
59 num_digits = len(str(len(cpts)-1))
61 for (i, arg) in enumerate(cpts):
65 config.readfp(open(cpts[i] + "/m5.cpt"))
89 if i == len(cpts)-1:
94 if i != len(cpts)-1:
102 f = open(cpts[i] + "/system.physmem.store0.pmem", "rb")
119 merged_config.set("system", "nextPID", len(cpts))
154 parser.add_argument("--cpts", nargs='+')
160 print options.cpts, le
[all...]
H A Dcheckpoint-tester.py105 cpts = [] variable
109 cpts.append(int(match.group(1)))
111 cpts.sort()
117 for i in range(1, len(cpts)):
118 print '===> Running test %d of %d.' % (i, len(cpts)-1)
123 cpt_name = 'cpt.%d' % cpts[i]
/gem5/configs/common/
H A DSimulation.py159 cpts = []
163 cpts.append(dir)
164 cpts.sort()
167 if cpt_num > len(cpts):
169 checkpoint_dir = joinpath(cptdir, cpts[cpt_num - 1])
170 match = expr.match(cpts[cpt_num - 1])
192 cpts = []
196 cpts.append(match.group(1))
198 cpts.sort(lambda a,b: cmp(long(a), long(b)))
201 if cpt_num > len(cpts)
[all...]

Completed in 6 milliseconds