From 49270801d4741b34d2d5cd27ca22b52ba0611db6 Mon Sep 17 00:00:00 2001 From: "Wawiorko, Grzegorz" Date: Thu, 25 May 2023 15:01:20 +0000 Subject: [PATCH] fix: Update CL_DEVICE_LATEST_CONFORMANCE_VERSION_PASSED value Signed-off-by: Wawiorko, Grzegorz --- opencl/source/cl_device/cl_device_caps.cpp | 2 +- opencl/test/unit_test/device/device_caps_tests.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/opencl/source/cl_device/cl_device_caps.cpp b/opencl/source/cl_device/cl_device_caps.cpp index acd27064ba..474ff8eed7 100644 --- a/opencl/source/cl_device/cl_device_caps.cpp +++ b/opencl/source/cl_device/cl_device_caps.cpp @@ -30,7 +30,7 @@ static std::string vendor = "Intel(R) Corporation"; static std::string profile = "FULL_PROFILE"; static std::string spirVersions = "1.2 "; static std::string spirvName = "SPIR-V"; -const char *latestConformanceVersionPassed = "v2022-04-22-00"; +const char *latestConformanceVersionPassed = "v2023-05-16-00"; #define QTR(a) #a #define TOSTR(b) QTR(b) static std::string driverVersion = TOSTR(NEO_OCL_DRIVER_VERSION); diff --git a/opencl/test/unit_test/device/device_caps_tests.cpp b/opencl/test/unit_test/device/device_caps_tests.cpp index ff94c1f3c8..de934cd1f3 100644 --- a/opencl/test/unit_test/device/device_caps_tests.cpp +++ b/opencl/test/unit_test/device/device_caps_tests.cpp @@ -155,7 +155,7 @@ TEST_F(DeviceGetCapsTest, WhenCreatingDeviceThenCapsArePopulatedCorrectly) { EXPECT_GT(caps.openclCAllVersions.size(), 0u); EXPECT_GT(caps.openclCFeatures.size(), 0u); EXPECT_EQ(caps.extensionsWithVersion.size(), 0u); - EXPECT_STREQ("v2022-04-22-00", caps.latestConformanceVersionPassed); + EXPECT_STREQ("v2023-05-16-00", caps.latestConformanceVersionPassed); EXPECT_NE(nullptr, caps.spirVersions); EXPECT_NE(nullptr, caps.deviceExtensions);