diff --git a/opencl/test/unit_test/aub_tests/xe2_hpg_core/lnl/copy_engine_aub_tests_lnl.cpp b/opencl/test/unit_test/aub_tests/xe2_hpg_core/lnl/copy_engine_aub_tests_lnl.cpp index 37f610bcb9..36d109682e 100644 --- a/opencl/test/unit_test/aub_tests/xe2_hpg_core/lnl/copy_engine_aub_tests_lnl.cpp +++ b/opencl/test/unit_test/aub_tests/xe2_hpg_core/lnl/copy_engine_aub_tests_lnl.cpp @@ -19,7 +19,7 @@ struct CopyEnginesLnlFixture : public CopyEngineXeHPAndLatergetHardwareInfo().featureTable; - return (ftrTable.flags.ftrFlatPhysCCS && ftrTable.flags.ftrXe2Compression); + return (ftrTable.flags.ftrFlatPhysCCS); } }; diff --git a/shared/source/xe2_hpg_core/windows/product_helper_lnl.cpp b/shared/source/xe2_hpg_core/windows/product_helper_lnl.cpp index 58f6a19ac1..639e192d43 100644 --- a/shared/source/xe2_hpg_core/windows/product_helper_lnl.cpp +++ b/shared/source/xe2_hpg_core/windows/product_helper_lnl.cpp @@ -52,6 +52,11 @@ bool ProductHelperHw::isDirectSubmissionSupported(ReleaseHelper *rel return true; } +template <> +bool ProductHelperHw::mitigateDcFlush() const { + return true; +} + template <> bool ProductHelperHw::restartDirectSubmissionForHostptrFree() const { return true; diff --git a/shared/test/unit_test/xe2_hpg_core/lnl/windows/product_helper_tests_lnl_windows.cpp b/shared/test/unit_test/xe2_hpg_core/lnl/windows/product_helper_tests_lnl_windows.cpp index daeeda244a..3b29ea3891 100644 --- a/shared/test/unit_test/xe2_hpg_core/lnl/windows/product_helper_tests_lnl_windows.cpp +++ b/shared/test/unit_test/xe2_hpg_core/lnl/windows/product_helper_tests_lnl_windows.cpp @@ -23,9 +23,9 @@ LNLTEST_F(LnlProductHelperWindows, givenProductHelperWhenCheckDirectSubmissionSu EXPECT_TRUE(productHelper->isDirectSubmissionSupported(releaseHelper)); } -LNLTEST_F(LnlProductHelperWindows, givenProductHelperWhenDcFlushMitigationThenReturnFalse) { - EXPECT_FALSE(productHelper->mitigateDcFlush()); - EXPECT_FALSE(productHelper->isDcFlushMitigated()); +LNLTEST_F(LnlProductHelperWindows, givenProductHelperWhenDcFlushMitigationThenReturnTrue) { + EXPECT_TRUE(productHelper->mitigateDcFlush()); + EXPECT_TRUE(productHelper->isDcFlushMitigated()); } LNLTEST_F(LnlProductHelperWindows, givenProductHelperWhenOverridePatIndexCalledThenCorrectValueIsReturned) {