| 935 | } |
| 936 | |
| 937 | cl_int clRetainEvent(cl_event event) |
| 938 | { |
| 939 | arm_compute::CLSymbols::get().load_default(); |
| 940 | auto func = arm_compute::CLSymbols::get().clRetainEvent_ptr; |
| 941 | if (func != nullptr) |
| 942 | { |
| 943 | return func(event); |
| 944 | } |
| 945 | else |
| 946 | { |
| 947 | return CL_OUT_OF_RESOURCES; |
| 948 | } |
| 949 | } |
| 950 | |
| 951 | cl_int clGetPlatformInfo(cl_platform_id platform, |
| 952 | cl_platform_info param_name, |