diff --git a/shared/source/gen12lp/hw_info_config_adls.inl b/shared/source/gen12lp/hw_info_config_adls.inl deleted file mode 100644 index 2bd48ccc4e..0000000000 --- a/shared/source/gen12lp/hw_info_config_adls.inl +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (C) 2020-2022 Intel Corporation - * - * SPDX-License-Identifier: MIT - * - */ - -#include "shared/source/os_interface/hw_info_config.h" - -namespace NEO { - -template <> -int ProductHelperHw::configureHardwareCustom(HardwareInfo *hwInfo, OSInterface *osIface) { - if (nullptr == osIface) { - return 0; - } - - GT_SYSTEM_INFO *gtSystemInfo = &hwInfo->gtSystemInfo; - gtSystemInfo->SliceCount = 1; - GfxCoreHelper &gfxCoreHelper = GfxCoreHelper::get(hwInfo.platform.eRenderCoreFamily); - hwInfo->featureTable.flags.ftrGpGpuMidThreadLevelPreempt = (hwInfo->platform.usRevId >= gfxCoreHelper.getHwRevIdFromStepping(REVISION_C, *hwInfo)); - return 0; -} - -template class ProductHelperHw; -} // namespace NEO