fix: Add new debug sip kernel type for heapless

Related-to: NEO-7979

Signed-off-by: Brandon Yates <brandon.yates@intel.com>
This commit is contained in:
Brandon Yates
2024-09-09 14:49:02 +00:00
committed by Compute-Runtime-Automation
parent 48dc0a823d
commit 7f0a0ae034
5 changed files with 38 additions and 2 deletions

View File

@@ -344,6 +344,10 @@ TranslationOutput::ErrorCode CompilerInterface::getSipKernelBinary(NEO::Device &
typeOfSystemRoutine = IGC::SystemRoutineType::debug;
bindlessSip = true;
break;
case SipKernelType::dbgHeapless:
typeOfSystemRoutine = IGC::SystemRoutineType::debug;
bindlessSip = false;
break;
default:
break;
}