| 2040 | } |
| 2041 | |
| 2042 | static cl_uint getDevicePlatformVersion(cl_device_id device) |
| 2043 | { |
| 2044 | cl_platform_id platform; |
| 2045 | clGetDeviceInfo(device, CL_DEVICE_PLATFORM, sizeof(platform), &platform, nullptr); |
| 2046 | return getPlatformVersion(platform); |
| 2047 | } |
| 2048 | |
| 2049 | static cl_uint getContextPlatformVersion(cl_context context) |
| 2050 | { |
no test coverage detected