revert: disabled deferred deleter on DG2

Related-To: NEO-7532

Signed-off-by: Dominik Dabek <dominik.dabek@intel.com>
This commit is contained in:
Dominik Dabek
2023-02-13 10:36:04 +00:00
committed by Compute-Runtime-Automation
parent e6181d7933
commit 6b6e112412
2 changed files with 3 additions and 3 deletions

View File

@@ -41,7 +41,7 @@ int ProductHelperHw<gfxProduct>::configureHardwareCustom(HardwareInfo *hwInfo, O
template <>
bool ProductHelperHw<gfxProduct>::isMultiContextResourceDeferDeletionSupported() const {
return true;
return false;
}
template class ProductHelperHw<gfxProduct>;

View File

@@ -13,6 +13,6 @@ using Dg2ProductHelperWindows = ProductHelperTestWindows;
HWTEST_EXCLUDE_PRODUCT(ProductHelperTest, givenProductHelperWhenCheckingIsMultiContextResourceDeferDeletionSupportedThenReturnFalse, IGFX_DG2);
HWTEST2_F(Dg2ProductHelperWindows, givenProductHelperWhenCheckingIsMultiContextResourceDeferDeletionSupportedThenReturnTrue, IsDG2) {
EXPECT_TRUE(productHelper->isMultiContextResourceDeferDeletionSupported());
HWTEST2_F(Dg2ProductHelperWindows, givenProductHelperWhenCheckingIsMultiContextResourceDeferDeletionSupportedThenReturnFalse, IsDG2) {
EXPECT_FALSE(productHelper->isMultiContextResourceDeferDeletionSupported());
}