Revert "performance: disable tlb flush on BMG Windows"

This reverts commit 3ffb51932f.

Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
This commit is contained in:
Compute-Runtime-Validation
2025-08-08 02:04:47 +02:00
committed by Compute-Runtime-Automation
parent 2ac75a3518
commit 964b84f484
3 changed files with 0 additions and 35 deletions

View File

@@ -22,10 +22,5 @@ bool ProductHelperHw<gfxProduct>::restartDirectSubmissionForHostptrFree() const
return true;
}
template <>
bool ProductHelperHw<gfxProduct>::isTlbFlushRequired() const {
return false;
}
template class ProductHelperHw<gfxProduct>;
} // namespace NEO

View File

@@ -1,9 +0,0 @@
#
# Copyright (C) 2025 Intel Corporation
#
# SPDX-License-Identifier: MIT
#
if(WIN32)
target_sources(neo_shared_tests PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/product_helper_tests_bmg_windows.cpp)
endif()

View File

@@ -1,21 +0,0 @@
/*
* Copyright (C) 2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/os_interface/product_helper.h"
#include "shared/source/xe2_hpg_core/hw_info_xe2_hpg_core.h"
#include "shared/test/common/helpers/debug_manager_state_restore.h"
#include "shared/test/unit_test/os_interface/product_helper_tests.h"
#include "per_product_test_definitions.h"
using namespace NEO;
using BmgProductHelperWindows = ProductHelperTest;
BMGTEST_F(BmgProductHelperWindows, givenProductHelperWhenAskedIfIsTlbFlushRequiredThenFalseIsReturned) {
EXPECT_FALSE(productHelper->isTlbFlushRequired());
}