Searched refs:executable (Results 1 - 19 of 19) sorted by relevance

/gem5/tests/quick/se/02.insttest/
H A Dtest.py30 executable = binpath('insttest')) variable
/gem5/tests/quick/se/01.hello-2T-smt/
H A Dtest.py29 process1 = Process(cmd = 'hello', executable = binpath('hello'), pid = 100)
30 process2 = Process(cmd = 'hello', executable = binpath('hello'),
/gem5/tests/quick/se/04.gpu/
H A Dtest.py38 executable = binpath('gpu-hello') variable
39 kernel_path = os.path.dirname(executable)
49 executable = binpath('gpu-hello'), variable
/gem5/tests/quick/se/40.m5threads-test-atomic/
H A Dtest.py1 process = Process(executable = binpath('m5threads', 'test_atomic'),
/gem5/tests/quick/se/00.hello/
H A Dtest.py30 executable = binpath('hello')) variable
/gem5/tests/quick/se/00.hello.mp/
H A Dtest.py39 p.executable = benchmarks[i*2]
44 # executable = binpath('hello'))
/gem5/configs/splash2/
H A Drun.py85 executable = options.rootdir + '/kernels/cholesky/CHOLESKY' variable in class:Cholesky
91 executable = options.rootdir + '/kernels/fft/FFT' variable in class:FFT
95 executable = options.rootdir + '/kernels/lu/contiguous_blocks/LU' variable in class:LU_contig
100 executable = options.rootdir + '/kernels/lu/non_contiguous_blocks/LU' variable in class:LU_noncontig
105 executable = options.rootdir + '/kernels/radix/RADIX' variable in class:Radix
110 executable = options.rootdir + '/apps/barnes/BARNES' variable in class:Barnes
116 executable = options.rootdir + '/apps/fmm/FMM' variable in class:FMM
125 executable = options.rootdir + '/apps/ocean/contiguous_partitions/OCEAN' variable in class:Ocean_contig
130 executable = options.rootdir + '/apps/ocean/non_contiguous_partitions/OCEAN' variable in class:Ocean_noncontig
135 executable variable in class:Raytrace
141 executable = options.rootdir + '/apps/water-nsquared/WATER-NSQUARED' variable in class:Water_nsquared
150 executable = options.rootdir + '/apps/water-spatial/WATER-SPATIAL' variable in class:Water_spatial
[all...]
H A Dcluster.py83 executable = options.rootdir + '/kernels/cholesky/CHOLESKY' variable in class:Cholesky
88 executable = options.rootdir + 'kernels/fft/FFT' variable in class:FFT
92 executable = options.rootdir + 'kernels/lu/contiguous_blocks/LU' variable in class:LU_contig
96 executable = options.rootdir + 'kernels/lu/non_contiguous_blocks/LU' variable in class:LU_noncontig
100 executable = options.rootdir + 'kernels/radix/RADIX' variable in class:Radix
104 executable = options.rootdir + 'apps/barnes/BARNES' variable in class:Barnes
109 executable = options.rootdir + 'apps/fmm/FMM' variable in class:FMM
114 executable = options.rootdir + 'apps/ocean/contiguous_partitions/OCEAN' variable in class:Ocean_contig
118 executable = options.rootdir + 'apps/ocean/non_contiguous_partitions/OCEAN' variable in class:Ocean_noncontig
122 executable variable in class:Raytrace
127 executable = options.rootdir + 'apps/water-nsquared/WATER-NSQUARED' variable in class:Water_nsquared
132 executable = options.rootdir + 'apps/water-spatial/WATER-SPATIAL' variable in class:Water_spatial
[all...]
/gem5/tests/legacy-configs/
H A Drun.py74 parser.add_argument('--executable',
85 executable = args.executable variable
110 # TODO: Might want to automatically place the cmd and executable on the
/gem5/src/sim/
H A DProcess.py59 executable = Param.String('', "executable (overrides cmd[0] if set)") variable in class:Process
60 cmd = VectorParam.String("command line (executable plus arguments)")
H A Dprocess.cc97 executable(params->executable),
532 // If not specified, set the executable parameter equal to the
534 if (executable == "") {
535 executable = cmd[0];
538 ObjectFile *obj_file = createObjectFile(executable);
539 fatal_if(!obj_file, "Cannot load object file %s.", executable);
H A Dprocess.hh93 const char *progName() const { return executable.c_str(); }
187 std::string executable; member in class:Process
H A Dsyscall_emul.hh1539 pp->executable.assign(*(new std::string(p->progName())));
2168 pp->executable = path;
/gem5/ext/ply/test/
H A Dtestlex.py320 p = subprocess.Popen([sys.executable,'-O','lex_optimize.py'],
331 p = subprocess.Popen([sys.executable,'-OO','lex_optimize.py'],
373 p = subprocess.Popen([sys.executable,'-O','lex_optimize2.py'],
382 p = subprocess.Popen([sys.executable,'-OO','lex_optimize2.py'],
421 p = subprocess.Popen([sys.executable,'-O','lex_optimize3.py'],
430 p = subprocess.Popen([sys.executable,'-OO','lex_optimize3.py'],
464 p = subprocess.Popen([sys.executable,'-O','lex_opt_alias.py'],
473 p = subprocess.Popen([sys.executable,'-OO','lex_opt_alias.py'],
521 p = subprocess.Popen([sys.executable,'-O','lex_many_tokens.py'],
/gem5/configs/example/
H A Dapu_se.py374 executable = find_path(benchmark_path, options.cmd, os.path.exists) variable
376 # name as the executable, so we handle that automatically
377 if os.path.isdir(executable):
378 benchmark_path = [executable]
379 executable = find_file(benchmark_path, options.cmd)
385 # in the same directory as the executable
386 kernel_path = os.path.dirname(executable)
397 cpu.workload = Process(executable = executable,
H A Dse.py93 process.executable = wrkld
/gem5/configs/example/arm/
H A Dstarter_se.py149 process = Process(pid=100 + idx, cwd=cwd, cmd=argv, executable=argv[0])
/gem5/ext/googletest/googletest/test/
H A Dgtest_filter_unittest.py64 [sys.executable, '-c', 'import os; print(\'EMPTY_VAR\' in os.environ)'])
77 [sys.executable, '-c', 'import os; print(\'UNSET_VAR\' not in os.environ)'])
/gem5/configs/common/
H A Dcpu2000.py101 executable = joinpath(spec_dist, 'binaries', isa, os, self.binary)
102 if not isfile(executable):
103 raise AttributeError('%s not found' % executable)
104 self.executable = executable
141 process_args['executable'] = self.executable

Completed in 44 milliseconds