Searched refs:program (Results 1 - 6 of 6) sorted by relevance

/gem5/src/sim/
H A Dmain.cc49 std::unique_ptr<wchar_t[], decltype(&PyMem_RawFree)> program(
52 Py_SetProgramName(program.get());
/gem5/tests/test-progs/gpu-hello/src/
H A Dgpu-hello.cpp57 cl_program program; variable
184 program = clCreateProgramWithSource(context, 1, &source, sourceSize,
191 status = clBuildProgram(program, 1, devices, NULL, NULL, NULL);
197 readKernel = clCreateKernel(program, "read_kernel", &status);
199 printf("Error: Creating readKernel from program. (clCreateKernel)\n");
297 status = clReleaseProgram(program);
329 // Run the CL program
/gem5/util/
H A Dgen_arm_fs_files.py121 for program in needed_programs:
122 if not spawn.find_executable(program):
123 print "Error: command %s not found in $PATH" % program
H A Dgem5img.py90 # Find the path to a program.
91 def findProg(program, cleanupDev=None):
92 (out, returncode) = getOutput(['which', program])
96 exit("Unable to find program %s, check your PATH variable." % program)
/gem5/util/tap/
H A Dtap.cc59 const char *program = "ethertap"; variable
67 program, program);
242 bpf_program program; local
249 if (pcap_compile(pcap, &program, filter, 1, netmask) == -1)
252 if (pcap_setfilter(pcap, &program) == -1)
331 program = basename(argv[0]);
/gem5/tests/gem5/
H A Dfixture.py229 def __init__(self, program, isa, os, recompile=False):
230 make_dir = joinpath('test-progs', program)
232 target = joinpath('bin', isa, os, program)
238 # Check if the program exists if it does then only compile if

Completed in 9 milliseconds