Revert "performance: enable staging copy in L0"

This reverts commit 57e4cc025f.

Signed-off-by: Szymon Morek <szymon.morek@intel.com>
This commit is contained in:
Szymon Morek
2025-07-23 13:43:22 +00:00
committed by Compute-Runtime-Automation
parent 6a572cd61c
commit 6526a7fb66
2 changed files with 3 additions and 1 deletions

View File

@@ -1913,6 +1913,9 @@ ze_result_t CommandListCoreFamilyImmediate<gfxCoreFamily>::appendStagingMemoryCo
template <GFXCORE_FAMILY gfxCoreFamily>
bool CommandListCoreFamilyImmediate<gfxCoreFamily>::isValidForStagingTransfer(const void *dstptr, const void *srcptr, size_t size, bool hasDependencies) {
if (NEO::debugManager.flags.EnableCopyWithStagingBuffers.get() != 1) {
return false;
}
if (this->useAdditionalBlitProperties) {
return false;
}