MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / get_program

Method get_program

src/core/CL/CLKernelLibrary.cpp:113–117  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

111 return _compile_context.is_wbsm_supported();
112}
113std::pair<std::string, bool> CLKernelLibrary::get_program(const std::string &program_name) const
114{
115 auto program_info = opencl::ClKernelLibrary::get().program(program_name);
116 return std::make_pair(std::move(program_info.program), program_info.is_binary);
117}
118size_t CLKernelLibrary::max_local_workgroup_size(const cl::Kernel &kernel) const
119{
120 return _compile_context.max_local_workgroup_size(kernel);

Callers 1

TEST_CASEFunction · 0.80

Calls 1

programMethod · 0.80

Tested by

no test coverage detected