diff --git a/shared/source/xe_hpc_core/pvc/os_agnostic_hw_info_config_pvc.inl b/shared/source/xe_hpc_core/pvc/os_agnostic_hw_info_config_pvc.inl index 1db347b0b7..efb724bad4 100644 --- a/shared/source/xe_hpc_core/pvc/os_agnostic_hw_info_config_pvc.inl +++ b/shared/source/xe_hpc_core/pvc/os_agnostic_hw_info_config_pvc.inl @@ -163,11 +163,6 @@ bool ProductHelperHw::isBlitCopyRequiredForLocalMemory(const Hardwar return false; } -template <> -bool ProductHelperHw::isTlbFlushRequired() const { - return false; -} - template <> bool ProductHelperHw::isBlitSplitEnqueueWARequired(const HardwareInfo &hwInfo) const { return true; diff --git a/shared/test/unit_test/xe_hpc_core/pvc/test_hw_info_config_pvc.cpp b/shared/test/unit_test/xe_hpc_core/pvc/test_hw_info_config_pvc.cpp index f3b70a1867..3795964ed0 100644 --- a/shared/test/unit_test/xe_hpc_core/pvc/test_hw_info_config_pvc.cpp +++ b/shared/test/unit_test/xe_hpc_core/pvc/test_hw_info_config_pvc.cpp @@ -28,7 +28,7 @@ PVCTEST_F(PvcProductHelper, whenGettingAubstreamProductFamilyThenProperEnumValue } PVCTEST_F(PvcProductHelper, whenCheckIsTlbFlushRequiredThenReturnProperValue) { - EXPECT_FALSE(productHelper->isTlbFlushRequired()); + EXPECT_TRUE(productHelper->isTlbFlushRequired()); } PVCTEST_F(PvcProductHelper, givenPVCRevId3AndAboveWhenGettingThreadEuRatioForScratchThen16IsReturned) {