fix: use igc indirect detection v3

Update to use igc indirect detection v3. Fix for not detecting indirects
passed as implicit arguments.

Related-To: NEO-11396

Signed-off-by: Dominik Dabek <dominik.dabek@intel.com>
This commit is contained in:
Dominik Dabek
2024-05-14 15:22:42 +00:00
committed by Compute-Runtime-Automation
parent 4320be4593
commit fd47030ad6
10 changed files with 114 additions and 6 deletions

View File

@@ -838,8 +838,8 @@ HWTEST_F(ProductHelperTest, givenProductHelperWhenCheckDummyBlitWaRequiredThenRe
HWTEST_F(ProductHelperTest, givenProductHelperAndKernelBinaryFormatsWhenCheckingIsDetectIndirectAccessInKernelSupportedThenCorrectValueIsReturned) {
KernelDescriptor kernelDescriptor;
const uint32_t notAcceptedIndirectDetectionVersion = 0u;
const uint32_t acceptedIndirectDetectionVersion = 1u;
const uint32_t notAcceptedIndirectDetectionVersion = 2u;
const uint32_t acceptedIndirectDetectionVersion = 3u;
{
kernelDescriptor.kernelAttributes.binaryFormat = DeviceBinaryFormat::patchtokens;
kernelDescriptor.kernelAttributes.simdSize = 8u;