From 4c6fce8ba07129493fc521dac85eb48b90e99957 Mon Sep 17 00:00:00 2001 From: Ioannis Assiouras <38722728+iassiour@users.noreply.github.com> Date: Tue, 9 Sep 2025 03:24:48 +0100 Subject: [PATCH] SWDEV-546223 - Remove comgr query for image support from windows path (#861) --- projects/clr/rocclr/device/pal/palsettings.cpp | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/projects/clr/rocclr/device/pal/palsettings.cpp b/projects/clr/rocclr/device/pal/palsettings.cpp index 33e3ef97d4..c7c337e20a 100644 --- a/projects/clr/rocclr/device/pal/palsettings.cpp +++ b/projects/clr/rocclr/device/pal/palsettings.cpp @@ -292,13 +292,7 @@ bool Settings::create(const Pal::DeviceProperties& palProp, } imageSupport_ = true; - std::string imageSupport; - if (amd::device::getValueFromIsaMeta(isa.isaName(), "ImageSupport", imageSupport)) { - imageSupport_ = atoi(imageSupport.c_str()); - ClPrint(amd::LOG_INFO, amd::LOG_INIT, "imageSupport=%u", imageSupport_); - } else { - LogInfo("Can not get image support info from ISA meta"); - } + // Use kernels for blit if appropriate blitEngine_ = BlitEngineKernel;