Searched refs:root (Results 151 - 175 of 184) sorted by relevance

12345678

/gem5/configs/example/
H A Dfs.py343 root = makeDualRoot(True, test_sys, drive_sys, options.etherdump) variable
346 root = makeDistRoot(test_sys, variable
357 root = Root(full_system=True, system=test_sys) variable
363 root.time_sync_enable = True
377 if hasattr(root, sysname):
378 sys = getattr(root, sysname)
382 Simulation.run(options, root, test_sys, FutureClass)
H A Druby_mem_test.py162 root = Root( full_system = False, system = system ) variable
163 root.system.mem_mode = 'timing'
H A Druby_gpu_random_test.py177 root = Root( full_system = False, system = system ) variable
178 root.system.mem_mode = 'timing'
H A Dgarnet_synth_traffic.py144 root = Root(full_system = False, system = system) variable
145 root.system.mem_mode = 'timing'
H A Dse.py280 root = Root(full_system = False, system = system) variable
281 Simulation.run(options, root, system, FutureClass)
/gem5/src/sim/
H A Dmathexpr.cc65 root = MathExpr::parse(expr);
66 panic_if(!root, "Invalid expression\n");
/gem5/util/systemc/gem5_within_systemc/
H A Dsc_gem5_control.cc257 /* Make the root object */
259 SimObject *root = root_manager->findObject("root", false); local
261 /* Make sure we don't traverse into root's children */
262 root_manager->objectsInOrder.push_back(root);
/gem5/configs/dram/
H A Dsweep.py181 root = Root(full_system = False, system = system) variable
182 root.system.mem_mode = 'timing'
H A Dlow_power_sweep.py238 root = Root(full_system = False, system = system) variable
239 root.system.mem_mode = 'timing'
H A Dlat_mem_rd.py303 root = Root(full_system = False, system = system) variable
304 root.system.mem_mode = 'timing'
/gem5/configs/example/arm/
H A Dstarter_fs.py166 # Tell Linux where to find the root disk image.
167 "root=/dev/vda1",
168 # Mount the root disk read-write by default.
232 root = Root(full_system=True)
233 root.system = create(args)
H A Dstarter_se.py209 # Create a single root node for gem5's object hierarchy. There can
210 # only exist one root node in the simulator at any given
213 root = Root(full_system=False)
215 # Populate the root node with a system. A system corresponds to a
217 root.system = create(args)
/gem5/util/
H A Dhgstyle.py161 verifiers = [v(ui, opts, base=repo.root) for v in all_verifiers]
165 if verifier.apply(joinpath(repo.root, fname), mod_regions):
H A Dcpt_upgrader.py211 if cpt.has_option('root','cpt_ver'):
212 cpt_ver = cpt.getint('root','cpt_ver')
222 cpt.remove_option('root', 'cpt_ver')
309 for root,dirs,files in os.walk(path):
312 process_file(osp.join(root,name), **vars(options))
/gem5/tests/configs/
H A Dgpu-ruby.py70 def run_test(root):
78 root.system.cpu[0].workload[0].map(0x10000000, 0x200000000, 4096)
349 root = Root(full_system = False, system = system) variable
351 root.system.mem_mode = 'timing'
H A Dtwosys-tsunami-simple-atomic.py103 root = FSConfig.makeDualRoot(True, test_sys, drive_sys, "ethertrace") variable
H A Dpc-simple-timing-ruby.py92 root = Root(full_system = True, system = system) variable
/gem5/configs/learning_gem5/part1/
H A Dsimple.py107 # set up the root SimObject and start the simulation
108 root = Root(full_system = False, system = system) variable
H A Dtwo_level.py150 # set up the root SimObject and start the simulation
151 root = Root(full_system = False, system = system) variable
/gem5/configs/learning_gem5/part2/
H A Dsimple_cache.py101 # set up the root SimObject and start the simulation
102 root = Root(full_system = False, system = system) variable
H A Dsimple_memobj.py99 # set up the root SimObject and start the simulation
100 root = Root(full_system = False, system = system) variable
/gem5/configs/common/
H A Dcpu2000.py49 for root, dirs, files in os.walk(srcdir):
50 root = normpath(root)
51 prefix = os.path.commonprefix([root, srcdir])
53 root = root[len(prefix):]
54 if root.startswith('/'):
55 root = root[1:]
58 newdir = joinpath(dstdir, root, entr
[all...]
/gem5/util/batch/
H A Djob.py39 for root, dirs, files in os.walk(dir, False):
41 os.remove(joinpath(root, name))
43 os.rmdir(joinpath(root, name))
/gem5/util/pbs/
H A Djob.py41 for root, dirs, files in os.walk(dir, False):
43 os.remove(joinpath(root, name))
45 os.rmdir(joinpath(root, name))
/gem5/tests/testing/
H A Dtests.py278 for root, dirs, files in os.walk(ref_dir, topdown=False):
280 fpath = os.path.join(root[len(ref_dir) + 1:], f)

Completed in 33 milliseconds

12345678