diff --git a/shared/source/xe2_hpg_core/hw_info_lnl.cpp b/shared/source/xe2_hpg_core/hw_info_lnl.cpp index f65ef8529e..5fe99a3d7c 100644 --- a/shared/source/xe2_hpg_core/hw_info_lnl.cpp +++ b/shared/source/xe2_hpg_core/hw_info_lnl.cpp @@ -15,7 +15,6 @@ #include "shared/source/xe2_hpg_core/hw_cmds_lnl.h" #include "aubstream/engine_node.h" -#include "wmtp_setup_lnl.inl" namespace NEO { @@ -93,7 +92,7 @@ void LNL::setupFeatureAndWorkaroundTable(HardwareInfo *hwInfo) { featureTable->flags.ftrFlatPhysCCS = true; featureTable->flags.ftrE2ECompression = true; featureTable->flags.ftrTile64Optimization = true; - featureTable->flags.ftrWalkerMTP = wmtpSupported; + featureTable->flags.ftrWalkerMTP = true; featureTable->flags.ftrXe2Compression = true; featureTable->flags.ftrXe2PlusTiling = true; featureTable->flags.ftrPml5Support = true; diff --git a/shared/source/xe2_hpg_core/lnl/definitions/wmtp_setup_lnl.inl b/shared/source/xe2_hpg_core/lnl/definitions/wmtp_setup_lnl.inl deleted file mode 100644 index b072211123..0000000000 --- a/shared/source/xe2_hpg_core/lnl/definitions/wmtp_setup_lnl.inl +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (C) 2024 Intel Corporation - * - * SPDX-License-Identifier: MIT - * - */ - -namespace NEO { -constexpr bool wmtpSupported = false; -} // namespace NEO diff --git a/shared/test/unit_test/xe2_hpg_core/lnl/hw_info_tests_lnl.cpp b/shared/test/unit_test/xe2_hpg_core/lnl/hw_info_tests_lnl.cpp index c79296f1fe..b8570efc8c 100644 --- a/shared/test/unit_test/xe2_hpg_core/lnl/hw_info_tests_lnl.cpp +++ b/shared/test/unit_test/xe2_hpg_core/lnl/hw_info_tests_lnl.cpp @@ -17,8 +17,6 @@ #include "shared/test/common/test_macros/header/per_product_test_definitions.h" #include "shared/test/common/test_macros/test.h" -#include "wmtp_setup_lnl.inl" - using namespace NEO; using LnlHwInfoTest = ::testing::Test; @@ -67,7 +65,7 @@ LNLTEST_F(LnlHwInfoTest, givenBoolWhenCallLnlHardwareInfoSetupThenFeatureTableAn EXPECT_EQ(setParamBool, featureTable.flags.ftrXe2PlusTiling); EXPECT_EQ(setParamBool, featureTable.flags.ftrPml5Support); EXPECT_EQ(false, featureTable.flags.ftrTileY); - EXPECT_EQ(wmtpSupported && setParamBool, featureTable.flags.ftrWalkerMTP); + EXPECT_EQ(setParamBool, featureTable.flags.ftrWalkerMTP); EXPECT_EQ(setParamBool, workaroundTable.flags.wa4kAlignUVOffsetNV12LinearSurface); EXPECT_EQ(1u, featureTable.ftrBcsInfo.to_ulong()); }