We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7717667 commit 9d0fefeCopy full SHA for 9d0fefe
IGC/Compiler/CISACodeGen/Platform.hpp
@@ -485,9 +485,11 @@ namespace IGC
485
486
bool WaDisableSendSrcDstOverlap() const
487
{
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
491
return (!IGC_IS_FLAG_ENABLED(DisableSendSrcDstOverlapWA)) &&
- (m_SkuTable.FtrWddm2Svm != 0 || m_platformInfo.eRenderCoreFamily == IGFX_GEN10_CORE ||
- m_platformInfo.eRenderCoreFamily == IGFX_GEN11_CORE);
492
+ (m_SkuTable.FtrWddm2Svm != 0 || m_platformInfo.eRenderCoreFamily <= IGFX_GEN11_CORE);
493
494
}
495
0 commit comments