Skip to content

Commit 90e858e

Browse files
Update latest conformance version passed
Change-Id: I17b77b84a47a6e383082b0b35487bca8aaec05bf Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
1 parent 269bb21 commit 90e858e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

opencl/source/cl_device/cl_device_caps.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ static std::string vendor = "Intel(R) Corporation";
2727
static std::string profile = "FULL_PROFILE";
2828
static std::string spirVersions = "1.2 ";
2929
static std::string spirvName = "SPIR-V";
30-
const char *latestConformanceVersionPassed = "1.0";
30+
const char *latestConformanceVersionPassed = "v2020-10-01-00";
3131
#define QTR(a) #a
3232
#define TOSTR(b) QTR(b)
3333
static std::string driverVersion = TOSTR(NEO_OCL_DRIVER_VERSION);

opencl/test/unit_test/device/device_caps_tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ TEST_F(DeviceGetCapsTest, WhenCreatingDeviceThenCapsArePopulatedCorrectly) {
129129
EXPECT_GT(caps.openclCAllVersions.size(), 0u);
130130
EXPECT_GT(caps.openclCFeatures.size(), 0u);
131131
EXPECT_EQ(caps.extensionsWithVersion.size(), 0u);
132-
EXPECT_STREQ("1.0", caps.latestConformanceVersionPassed);
132+
EXPECT_STREQ("v2020-10-01-00", caps.latestConformanceVersionPassed);
133133

134134
EXPECT_NE(nullptr, caps.spirVersions);
135135
EXPECT_NE(nullptr, caps.deviceExtensions);

0 commit comments

Comments
 (0)