mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
Increase KMD notify delay for DG1 platform
Related-To: NEO-4759 Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
This commit is contained in:

committed by
Compute-Runtime-Automation

parent
c6e81d3ed5
commit
24bc854f90
@ -30,5 +30,5 @@ DG1TEST_F(HwHelperTestGen12Lp, GivenDG1WhenConfigureHardwareCustomThenKmdNotifyI
|
||||
OSInterface osIface;
|
||||
hwInfoConfig->configureHardwareCustom(&hardwareInfo, &osIface);
|
||||
EXPECT_TRUE(hardwareInfo.capabilityTable.kmdNotifyProperties.enableKmdNotify);
|
||||
EXPECT_EQ(100ll, hardwareInfo.capabilityTable.kmdNotifyProperties.delayKmdNotifyMicroseconds);
|
||||
EXPECT_EQ(300ll, hardwareInfo.capabilityTable.kmdNotifyProperties.delayKmdNotifyMicroseconds);
|
||||
}
|
||||
|
@ -20,7 +20,7 @@ int HwInfoConfigHw<IGFX_DG1>::configureHardwareCustom(HardwareInfo *hwInfo, OSIn
|
||||
hwInfo->featureTable.ftrGpGpuMidThreadLevelPreempt = false;
|
||||
auto &kmdNotifyProperties = hwInfo->capabilityTable.kmdNotifyProperties;
|
||||
kmdNotifyProperties.enableKmdNotify = true;
|
||||
kmdNotifyProperties.delayKmdNotifyMicroseconds = 100;
|
||||
kmdNotifyProperties.delayKmdNotifyMicroseconds = 300;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user