diff --git a/shared/source/xe3_core/ptl/os_agnostic_product_helper_ptl.inl b/shared/source/xe3_core/ptl/os_agnostic_product_helper_ptl.inl index 382788005b..abe663487f 100644 --- a/shared/source/xe3_core/ptl/os_agnostic_product_helper_ptl.inl +++ b/shared/source/xe3_core/ptl/os_agnostic_product_helper_ptl.inl @@ -21,7 +21,7 @@ std::optional ProductHelperHw::getAubStre template <> bool ProductHelperHw::isBufferPoolAllocatorSupported() const { - return false; + return true; } template <> diff --git a/shared/test/unit_test/xe3_core/product_helper_tests_xe3_core.cpp b/shared/test/unit_test/xe3_core/product_helper_tests_xe3_core.cpp index 86338a68fc..494f06af9a 100644 --- a/shared/test/unit_test/xe3_core/product_helper_tests_xe3_core.cpp +++ b/shared/test/unit_test/xe3_core/product_helper_tests_xe3_core.cpp @@ -76,10 +76,6 @@ XE3_CORETEST_F(Xe3CoreProductHelper, givenProductHelperWhenisResolvingSubDeviceI EXPECT_TRUE(productHelper->isResolvingSubDeviceIDNeeded(releaseHelper)); } -XE3_CORETEST_F(Xe3CoreProductHelper, givenProductHelperWhenCheckingIsBufferPoolAllocatorSupportedThenCorrectValueIsReturned) { - EXPECT_FALSE(productHelper->isBufferPoolAllocatorSupported()); -} - XE3_CORETEST_F(Xe3CoreProductHelper, givenProductHelperWhenCheckIsCopyBufferRectSplitSupportedThenReturnsTrue) { EXPECT_TRUE(productHelper->isCopyBufferRectSplitSupported()); } diff --git a/shared/test/unit_test/xe3_core/ptl/product_helper_tests_ptl.cpp b/shared/test/unit_test/xe3_core/ptl/product_helper_tests_ptl.cpp index fefc3a77a2..4e8b6d71d8 100644 --- a/shared/test/unit_test/xe3_core/ptl/product_helper_tests_ptl.cpp +++ b/shared/test/unit_test/xe3_core/ptl/product_helper_tests_ptl.cpp @@ -65,6 +65,10 @@ PTLTEST_F(PtlProductHelper, givenProductHelperWhenCallIsStagingBuffersEnabledThe EXPECT_TRUE(productHelper->isStagingBuffersEnabled()); } +PTLTEST_F(PtlProductHelper, givenProductHelperWhenCheckingIsBufferPoolAllocatorSupportedThenCorrectValueIsReturned) { + EXPECT_TRUE(productHelper->isBufferPoolAllocatorSupported()); +} + PTLTEST_F(PtlProductHelper, givenDebugFlagWhenCheckingIsResolveDependenciesByPipeControlsSupportedThenTheFlagDerivedValueIsReturned) { DebugManagerStateRestore restorer;