Set KMD delay parameter for direct submission

Related-To: NEO-5845

Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
This commit is contained in:
Zbigniew Zdanowicz
2021-12-17 18:42:13 +00:00
committed by Compute-Runtime-Automation
parent 17beabc32d
commit 52f23f9768
6 changed files with 18 additions and 6 deletions

View File

@@ -42,7 +42,9 @@ int HwInfoConfigHw<gfxProduct>::configureHardwareCustom(HardwareInfo *hwInfo, OS
auto &kmdNotifyProperties = hwInfo->capabilityTable.kmdNotifyProperties;
kmdNotifyProperties.enableKmdNotify = true;
kmdNotifyProperties.delayKmdNotifyMicroseconds = 20;
kmdNotifyProperties.delayKmdNotifyMicroseconds = 150;
kmdNotifyProperties.enableQuickKmdSleepForDirectSubmission = true;
kmdNotifyProperties.delayQuickKmdSleepForDirectSubmissionMicroseconds = 20;
return 0;
}