Revert "Add report of extension cl_intel_split_work_group_barrier"

This reverts commit 08a4df80e5.

Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
This commit is contained in:
Compute-Runtime-Validation
2022-03-18 21:53:40 +01:00
committed by Compute-Runtime-Automation
parent e870643c41
commit be9ce8ee12
2 changed files with 1 additions and 6 deletions

View File

@ -26,7 +26,6 @@ HWTEST2_F(Gen12LpDeviceCaps, givenGen12lpWhenCheckExtensionsThenSubgroupLocalBlo
const auto &caps = pClDevice->getDeviceInfo();
EXPECT_THAT(caps.deviceExtensions, testing::HasSubstr(std::string("cl_intel_subgroup_local_block_io")));
EXPECT_THAT(caps.deviceExtensions, testing::HasSubstr(std::string("cl_intel_split_work_group_barrier")));
}
HWTEST2_F(Gen12LpDeviceCaps, givenGen12lpWhenCheckExtensionsThenDeviceDoesNotReportClKhrSubgroupsExtension, IsTGLLP) {

View File

@ -118,11 +118,7 @@ EngineGroupType HwHelperHw<Family>::getEngineGroupType(aub_stream::EngineType en
template <>
std::string HwHelperHw<Family>::getExtensions() const {
std::string extensions;
extensions += "cl_intel_subgroup_local_block_io ";
extensions += "cl_intel_split_work_group_barrier ";
return extensions;
return "cl_intel_subgroup_local_block_io ";
}
template <>