diff --git a/Jenkinsfile b/Jenkinsfile index 5173b01b2f..4fa420abaa 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,5 +1,5 @@ #!groovy dependenciesRevision='0dea8bf00d710a5d2da5d04eb5ae595d0df4ce47-1217' strategy='EQUAL' -allowedCD=274 +allowedCD=275 allowedF=4 diff --git a/runtime/dll/linux/drm_neo_create.cpp b/runtime/dll/linux/drm_neo_create.cpp index 1c85b3fcf1..ec0807f59f 100644 --- a/runtime/dll/linux/drm_neo_create.cpp +++ b/runtime/dll/linux/drm_neo_create.cpp @@ -6,6 +6,7 @@ */ #include "runtime/gmm_helper/gmm_helper.h" +#include "runtime/helpers/hw_helper.h" #include "runtime/helpers/hw_info.h" #include "runtime/helpers/options.h" #include "runtime/os_interface/debug_settings_manager.h" @@ -188,7 +189,9 @@ Drm *Drm::create(int32_t deviceOrdinal) { printDebugString(DebugManager.flags.PrintDebugMessages.get(), stderr, "%s", "WARNING: Failed to request OCL Turbo Boost\n"); } - drmObject->queryMemoryInfo(); + if (HwHelper::get(device->pHwInfo->pPlatform->eRenderCoreFamily).getEnableLocalMemory(*device->pHwInfo)) { + drmObject->queryMemoryInfo(); + } drms[deviceOrdinal % drms.size()] = drmObject.release(); return drms[deviceOrdinal % drms.size()];