Disable FusedEus when debugger is used

Related-To: NEO-5961

Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
This commit is contained in:
Mateusz Hoppe
2021-06-18 15:23:10 +00:00
committed by Compute-Runtime-Automation
parent a30347cbc5
commit 438611be09
17 changed files with 70 additions and 14 deletions

View File

@ -79,7 +79,8 @@ const RuntimeCapabilityTable EHL::capabilityTable{
true, // hostPtrTrackingEnabled
false, // levelZeroSupported
true, // isIntegratedDevice
true // supportsMediaBlock
true, // supportsMediaBlock
false // fusedEuEnabled
};
WorkaroundTable EHL::workaroundTable = {};

View File

@ -80,7 +80,8 @@ const RuntimeCapabilityTable ICLLP::capabilityTable{
true, // hostPtrTrackingEnabled
true, // levelZeroSupported
true, // isIntegratedDevice
true // supportsMediaBlock
true, // supportsMediaBlock
false // fusedEuEnabled
};
WorkaroundTable ICLLP::workaroundTable = {};

View File

@ -79,7 +79,8 @@ const RuntimeCapabilityTable LKF::capabilityTable{
true, // hostPtrTrackingEnabled
false, // levelZeroSupported
true, // isIntegratedDevice
true // supportsMediaBlock
true, // supportsMediaBlock
false // fusedEuEnabled
};
WorkaroundTable LKF::workaroundTable = {};