| 637 | } |
| 638 | |
| 639 | CL_API_ENTRY cl_program CL_API_CALL |
| 640 | clCreateProgramWithSource(cl_context context, |
| 641 | cl_uint count, |
| 642 | const char **strings, |
| 643 | const size_t *lengths, |
| 644 | cl_int *errcode_ret) CL_API_SUFFIX__VERSION_1_0 { |
| 645 | return paddle::lite::CLWrapper::Global()->clCreateProgramWithSource()( |
| 646 | context, count, strings, lengths, errcode_ret); |
| 647 | } |
| 648 | |
| 649 | CL_API_ENTRY cl_int CL_API_CALL clReleaseKernel(cl_kernel kernel) |
| 650 | CL_API_SUFFIX__VERSION_1_0 { |
no test coverage detected