Home
last modified time | relevance | path

Searched refs:kernel_path (Results 1 – 18 of 18) sorted by relevance

/external/igt-gpu-tools/scripts/
Dlist-workarounds110 kernel_path = None variable
112 if not len(args) and options.kernel_path == None and options.mesa_path == None:
117 kernel_path = args[0] variable
118 elif options.kernel_path != None:
119 kernel_path = options.kernel_path variable
121 if kernel_path != None:
123 kconfig = os.path.join(kernel_path, 'Kconfig')
126 % kernel_path)
130 print_workarounds(kernel_path, i915_dir, "kernel")
/external/ComputeLibrary/src/core/CL/
DCLKernelLibrary.cpp49 const std::string &kernel_path = CLKernelLibrary::get().get_kernel_path(); in create_kernel() local
50 …return _compile_context.create_kernel(kernel_name, program_name, program.program, kernel_path, bui… in create_kernel()
56 void CLKernelLibrary::init(std::string kernel_path, cl::Context context, cl::Device device) in init() argument
59 opencl::ClKernelLibrary::get().set_kernel_path(kernel_path); in init()
61 void CLKernelLibrary::set_kernel_path(const std::string &kernel_path) in set_kernel_path() argument
63 opencl::ClKernelLibrary::get().set_kernel_path(kernel_path); in set_kernel_path()
83 return opencl::ClKernelLibrary::get().kernel_path(); in get_kernel_path()
DCLCompileContext.cpp160 … const std::string &kernel_path, const StringSet &build_options_set, bool is_binary) const in create_kernel() argument
162 const std::string build_options = generate_build_options(build_options_set, kernel_path); in create_kernel()
232 …t::generate_build_options(const StringSet &build_options_set, const std::string &kernel_path) const in generate_build_options()
278 std::string build_options = stringify_set(build_options_set, kernel_path) + concat_str; in generate_build_options()
288 std::string CLCompileContext::stringify_set(const StringSet &s, const std::string &kernel_path) con… in stringify_set()
292 concat_set += "-I" + kernel_path + " "; in stringify_set()
294 ARM_COMPUTE_UNUSED(kernel_path); in stringify_set()
DCLHelpers.cpp410 const std::string kernel_path = klib.kernel_path(); in create_kernel() local
412 …rnel>(ctx.create_kernel(kernel_name, program_name, kernel_src.program, kernel_path, build_opts, ke… in create_kernel()
/external/crosvm/e2e_tests/fixture/src/
Dvm.rs67 pub(super) fn kernel_path() -> PathBuf { in kernel_path() function
263 let kernel_path = kernel_path(); in initialize_once() localVariable
265 if !kernel_path.exists() { in initialize_once()
266 download_file(&kernel_prebuilt_url(), &kernel_path).unwrap(); in initialize_once()
269 assert!(kernel_path.exists(), "{:?} does not exist", kernel_path); in initialize_once()
/external/ComputeLibrary/tests/validation/CL/UNIT/
DCompileContext.cpp54 const std::string kernel_path = CLKernelLibrary::get().get_kernel_path(); in TEST_SUITE() local
60 …compile_context.create_kernel(kernel_name, program_name, kernel_src.first, kernel_path, build_opts… in TEST_SUITE()
66 …compile_context.create_kernel(kernel_name, program_name, kernel_src.first, kernel_path, build_opts… in TEST_SUITE()
/external/autotest/client/cros/faft/utils/
Dkernel_handler.py95 def dump_kernel(self, section, kernel_path): argument
102 cmd = 'dd if=%s of=%s bs=%dM count=1' % (dev, kernel_path,
106 def write_kernel(self, section, kernel_path): argument
113 dd_cmd = 'dd if=%s of=%s bs=%dM count=1' % (kernel_path, dev,
Drootfs_handler.py36 kernel_path = self.os_if.join_part(self.root_dev,
42 'dd if=%s of=%s' % (kernel_path, self.kernel_dump_file))
/external/ComputeLibrary/src/gpu/cl/
DClKernelLibrary.h69 void set_kernel_path(std::string kernel_path);
72 const std::string &kernel_path() const;
DClKernelLibrary.cpp1001 void ClKernelLibrary::set_kernel_path(std::string kernel_path) in set_kernel_path() argument
1003 _kernel_path = std::move(kernel_path); in set_kernel_path()
1007 const std::string &ClKernelLibrary::kernel_path() const in kernel_path() function in arm_compute::opencl::ClKernelLibrary
/external/ComputeLibrary/arm_compute/core/CL/
DCLCompileContext.h254 … const std::string &kernel_path, const StringSet &build_options_set, bool is_binary) const;
335 …tring generate_build_options(const StringSet &build_options, const std::string &kernel_path) const;
344 std::string stringify_set(const StringSet &s, const std::string &kernel_path) const;
DCLKernelLibrary.h60 void init(std::string kernel_path, cl::Context context, cl::Device device);
65 void set_kernel_path(const std::string &kernel_path);
/external/crosvm/e2e_tests/fixture/src/sys/
Dunix.rs29 use crate::vm::kernel_path;
201 command.arg(kernel_path()); in append_config_args()
239 kernel_path().display(), in generate_json_config_file()
Dwindows.rs27 use crate::vm::kernel_path;
240 command.arg(kernel_path()); in append_config_args()
303 kernel_path().display(), in generate_json_config_file()
/external/autotest/client/cros/faft/
Drpc_functions.py709 def dump(self, section, kernel_path): argument
715 self._kernel_handler.dump_kernel(section, kernel_path)
717 def write(self, section, kernel_path): argument
723 self._kernel_handler.write_kernel(section, kernel_path)
/external/ComputeLibrary/src/dynamic_fusion/runtime/gpu/cl/
DClKernelRuntime.cpp46 … klib.kernel_path() /* Kernel path: Used in cases of embedded kernels */, in configure()
/external/crosvm/src/sys/
Dwindows.rs1391 Some(Executable::Kernel(ref kernel_path)) => VmImage::Kernel( in setup_vm_components()
1392 File::open(kernel_path).with_exit_context(Exit::OpenKernel, || { in setup_vm_components()
1393 format!("failed to open kernel image {}", kernel_path.display(),) in setup_vm_components()
/external/crosvm/src/crosvm/sys/
Dunix.rs1118 Some(Executable::Kernel(ref kernel_path)) => VmImage::Kernel( in setup_vm_components()
1119 open_file(kernel_path, OpenOptions::new().read(true)).with_context(|| { in setup_vm_components()
1120 format!("failed to open kernel image {}", kernel_path.display()) in setup_vm_components()