| 967 | } |
| 968 | |
| 969 | cl_int clGetPlatformIDs(cl_uint num_entries, cl_platform_id *platforms, cl_uint *num_platforms) |
| 970 | { |
| 971 | arm_compute::CLSymbols::get().load_default(); |
| 972 | auto func = arm_compute::CLSymbols::get().clGetPlatformIDs_ptr; |
| 973 | if (func != nullptr) |
| 974 | { |
| 975 | return func(num_entries, platforms, num_platforms); |
| 976 | } |
| 977 | else |
| 978 | { |
| 979 | return CL_OUT_OF_RESOURCES; |
| 980 | } |
| 981 | } |
| 982 | |
| 983 | cl_int clGetKernelWorkGroupInfo(cl_kernel kernel, |
| 984 | cl_device_id device, |
no test coverage detected