From d22b2a8a3876566b08f7612804f58c8e80a1bfb1 Mon Sep 17 00:00:00 2001 From: Compute-Runtime-Validation Date: Thu, 15 Feb 2024 05:04:36 +0100 Subject: [PATCH] Revert "feature: add support for the cl_khr_extended_bit_ops extension" This reverts commit 6dec2143df82f7637dec3f46963fa11235748b06. Signed-off-by: Compute-Runtime-Validation --- opencl/test/unit_test/device/device_caps_tests.cpp | 7 ------- shared/source/helpers/compiler_product_helper_base.inl | 1 - 2 files changed, 8 deletions(-) diff --git a/opencl/test/unit_test/device/device_caps_tests.cpp b/opencl/test/unit_test/device/device_caps_tests.cpp index 34f724767c..2dfd7610aa 100644 --- a/opencl/test/unit_test/device/device_caps_tests.cpp +++ b/opencl/test/unit_test/device/device_caps_tests.cpp @@ -858,13 +858,6 @@ TEST_F(DeviceGetCapsTest, WhenDeviceIsCreatedThenCreateCommandQueueExtensionIsRe EXPECT_TRUE(hasSubstr(caps.deviceExtensions, std::string("cl_khr_create_command_queue"))); } -TEST_F(DeviceGetCapsTest, WhenDeviceIsCreatedThenExtendedBitOpsExtensionIsReported) { - auto device = std::make_unique(MockDevice::createWithNewExecutionEnvironment(defaultHwInfo.get())); - const auto &caps = device->getDeviceInfo(); - - EXPECT_TRUE(hasSubstr(caps.deviceExtensions, std::string("cl_khr_extended_bit_ops"))); -} - TEST_F(DeviceGetCapsTest, WhenDeviceIsCreatedThenThrottleHintsExtensionIsReported) { auto device = std::make_unique(MockDevice::createWithNewExecutionEnvironment(defaultHwInfo.get())); const auto &caps = device->getDeviceInfo(); diff --git a/shared/source/helpers/compiler_product_helper_base.inl b/shared/source/helpers/compiler_product_helper_base.inl index e5f3f28e47..129cd99f1d 100644 --- a/shared/source/helpers/compiler_product_helper_base.inl +++ b/shared/source/helpers/compiler_product_helper_base.inl @@ -78,7 +78,6 @@ std::string CompilerProductHelperHw::getDeviceExtensions(const Hardw "cl_khr_subgroup_shuffle_relative " "cl_khr_subgroup_clustered_reduce " "cl_intel_device_attribute_query " - "cl_khr_extended_bit_ops " "cl_khr_suggested_local_work_size " "cl_intel_split_work_group_barrier ";