feature: Disable nonblocking exec support on Xe HPC

When receiving EAGAIN, UMD should retry the submission again.
On scenarios where KMD runs out of ring-space, an error
should be propagated up to the user. Those scenarios are
more rare, but still we will need KMD support in the future
to differentiate those two cases: retry and propagate error to
user, since right now, KMD returns the same error code.

Related-To: NEO-8040

Signed-off-by: Jaime Arteaga <jaime.a.arteaga.molina@intel.com>
This commit is contained in:
Jaime Arteaga
2023-06-05 18:20:57 +00:00
committed by Compute-Runtime-Automation
parent 0c7a36bc8f
commit 09fcfbba6b
2 changed files with 37 additions and 5 deletions

View File

@@ -31,7 +31,7 @@ int ProductHelperHw<gfxProduct>::configureHardwareCustom(HardwareInfo *hwInfo, O
template <>
bool ProductHelperHw<gfxProduct>::isNonBlockingGpuSubmissionSupported() const {
return true;
return false;
}
} // namespace NEO