feature: Enable support for cl_intel_subgroup_2d_block_io

This change enables support for cl_intel_subgroup_2d_block_io extension for
PVC and later.

Related-To: GSD-7825
Signed-off-by: Ratajewski, Andrzej <andrzej.ratajewski@intel.com>
This commit is contained in:
Ratajewski, Andrzej
2024-05-10 12:38:23 +02:00
committed by Compute-Runtime-Automation
parent 014720fc29
commit 0b0f7bd4cd
6 changed files with 30 additions and 2 deletions

View File

@@ -192,6 +192,9 @@ std::string CompilerProductHelperHw<gfxProduct>::getDeviceExtensions(const Hardw
if (isSubgroupExtendedBlockReadSupported()) {
extensions += "cl_intel_subgroup_extended_block_read ";
}
if (isSubgroup2DBlockIOSupported()) {
extensions += "cl_intel_subgroup_2d_block_io ";
}
if (isDotIntegerProductExtensionSupported()) {
extensions += "cl_khr_integer_dot_product ";
}