refactor: Change FinalizerInputType debug var to string

Signed-off-by: Chodor, Jaroslaw <jaroslaw.chodor@intel.com>
This commit is contained in:
Chodor, Jaroslaw
2025-04-16 08:08:00 +00:00
committed by Compute-Runtime-Automation
parent 7744251995
commit b423084861
3 changed files with 5 additions and 5 deletions

View File

@@ -46,8 +46,8 @@ void TranslationOutput::makeCopy(MemAndSize &dst, CIF::Builtins::BufferSimple *s
CompilerInterface::CompilerInterface()
: cache() {
if (debugManager.flags.FinalizerInputType.get() != 0) {
this->finalizerInputType = debugManager.flags.FinalizerInputType.get();
if (debugManager.flags.FinalizerInputType.get() != "unk") {
this->finalizerInputType = IGC::CodeType::CodeTypeCoder::Enc(debugManager.flags.FinalizerInputType.get().c_str());
}
}
CompilerInterface::~CompilerInterface() = default;