| 58 | return opencl::ClKernelLibrary::get().program_name(kernel_name); |
| 59 | } |
| 60 | void CLKernelLibrary::init(std::string kernel_path, cl::Context context, cl::Device device) |
| 61 | { |
| 62 | _compile_context = CLCompileContext(context, device); |
| 63 | opencl::ClKernelLibrary::get().set_kernel_path(kernel_path); |
| 64 | } |
| 65 | void CLKernelLibrary::set_kernel_path(const std::string &kernel_path) |
| 66 | { |
| 67 | opencl::ClKernelLibrary::get().set_kernel_path(kernel_path); |
no test coverage detected