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;