| 35 | namespace arm_compute |
| 36 | { |
| 37 | CLKernelLibrary::CLKernelLibrary() : _compile_context() |
| 38 | { |
| 39 | opencl_is_available(); // Make sure the OpenCL symbols are initialised *before* the CLKernelLibrary is built |
| 40 | } |
| 41 | CLKernelLibrary &CLKernelLibrary::get() |
| 42 | { |
| 43 | static CLKernelLibrary _kernel_library; |
nothing calls this directly
no test coverage detected