Revert "feature: enable WMTP support on LNL"

This reverts commit fa4a1a5f1f.

Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
This commit is contained in:
Compute-Runtime-Validation
2024-09-24 16:25:49 +02:00
committed by Compute-Runtime-Automation
parent 9185760a0e
commit 297d98e456
3 changed files with 15 additions and 2 deletions

View File

@@ -15,6 +15,7 @@
#include "shared/source/xe2_hpg_core/hw_cmds_lnl.h"
#include "aubstream/engine_node.h"
#include "wmtp_setup_lnl.inl"
namespace NEO {
@@ -92,7 +93,7 @@ void LNL::setupFeatureAndWorkaroundTable(HardwareInfo *hwInfo) {
featureTable->flags.ftrFlatPhysCCS = true;
featureTable->flags.ftrE2ECompression = true;
featureTable->flags.ftrTile64Optimization = true;
featureTable->flags.ftrWalkerMTP = true;
featureTable->flags.ftrWalkerMTP = wmtpSupported;
featureTable->flags.ftrXe2Compression = true;
featureTable->flags.ftrXe2PlusTiling = true;
featureTable->flags.ftrPml5Support = true;

View File

@@ -0,0 +1,10 @@
/*
* Copyright (C) 2024 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
namespace NEO {
constexpr bool wmtpSupported = false;
} // namespace NEO

View File

@@ -17,6 +17,8 @@
#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;
@@ -65,7 +67,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(setParamBool, featureTable.flags.ftrWalkerMTP);
EXPECT_EQ(wmtpSupported && setParamBool, featureTable.flags.ftrWalkerMTP);
EXPECT_EQ(setParamBool, workaroundTable.flags.wa4kAlignUVOffsetNV12LinearSurface);
EXPECT_EQ(1u, featureTable.ftrBcsInfo.to_ulong());
}