From 65fd490bc946b12fded871be464c7b8087be06ae Mon Sep 17 00:00:00 2001 From: Nadezhda Samartseva <88769266+funch0za@users.noreply.github.com> Date: Thu, 27 Nov 2025 03:23:34 +0300 Subject: [PATCH] Registration for the profiling_timebase test has been changed: version 2.1 is now required. (#2584) This fix is necessary to install the minimum version of OpenCL in the profiling_timebase test. This test uses clGetDeviceAndHostTimer, available only since version 2.1. fix #2582 --- test_conformance/profiling/profiling_timebase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_conformance/profiling/profiling_timebase.cpp b/test_conformance/profiling/profiling_timebase.cpp index f26a9d89..23afcbb8 100644 --- a/test_conformance/profiling/profiling_timebase.cpp +++ b/test_conformance/profiling/profiling_timebase.cpp @@ -18,7 +18,7 @@ const char *kernelCode = "__kernel void kernel_empty(){}"; -REGISTER_TEST(profiling_timebase) +REGISTER_TEST_VERSION(profiling_timebase, Version(2, 1)) { Version version = get_device_cl_version(device); cl_platform_id platform = getPlatformFromDevice(device);