Skip to content

Commit 9d0fefe

Browse files
jsantillan2017sys_zuul
authored andcommitted
Changing condition for WaDisableSendSrcDstOverlap to be enabled for all platforms less then or equal to gen11.
Change-Id: I0e8e1ef126442e19a57d3ae77ceb833af87187f1
1 parent 7717667 commit 9d0fefe

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

IGC/Compiler/CISACodeGen/Platform.hpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -485,9 +485,11 @@ namespace IGC
485485

486486
bool WaDisableSendSrcDstOverlap() const
487487
{
488+
// originally implemented due to HW restriction when pagefault was enabled
489+
// however there seems to be an issue with overlap regardless
490+
// So enabling for all platforms less than or equal to gen11
488491
return (!IGC_IS_FLAG_ENABLED(DisableSendSrcDstOverlapWA)) &&
489-
(m_SkuTable.FtrWddm2Svm != 0 || m_platformInfo.eRenderCoreFamily == IGFX_GEN10_CORE ||
490-
m_platformInfo.eRenderCoreFamily == IGFX_GEN11_CORE);
492+
(m_SkuTable.FtrWddm2Svm != 0 || m_platformInfo.eRenderCoreFamily <= IGFX_GEN11_CORE);
491493

492494
}
493495

0 commit comments

Comments
 (0)