[L0][XE_HPC]Perform memcpy on CPU by default

Related-To: NEO-7237

Signed-off-by: Szymon Morek <szymon.morek@intel.com>
This commit is contained in:
Szymon Morek
2022-10-04 10:09:25 +00:00
committed by Compute-Runtime-Automation
parent c70df154a3
commit 383f33b482
12 changed files with 47 additions and 21 deletions

View File

@@ -720,6 +720,9 @@ bool HwHelperHw<GfxFamily>::isPatIndexFallbackWaRequired() const {
template <typename gfxProduct>
bool HwHelperHw<gfxProduct>::copyThroughLockedPtrEnabled() const {
if (DebugManager.flags.ExperimentalCopyThroughLock.get() != -1) {
return DebugManager.flags.ExperimentalCopyThroughLock.get() == 1;
}
return false;
}