Skip to content

Commit 24bc854

Browse files
Increase KMD notify delay for DG1 platform
Related-To: NEO-4759 Signed-off-by: Zbigniew Zdanowicz <[email protected]>
1 parent c6e81d3 commit 24bc854

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

opencl/test/unit_test/gen12lp/dg1/linux/hw_info_config_tests_dg1.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ DG1TEST_F(HwHelperTestGen12Lp, GivenDG1WhenConfigureHardwareCustomThenKmdNotifyI
3030
OSInterface osIface;
3131
hwInfoConfig->configureHardwareCustom(&hardwareInfo, &osIface);
3232
EXPECT_TRUE(hardwareInfo.capabilityTable.kmdNotifyProperties.enableKmdNotify);
33-
EXPECT_EQ(100ll, hardwareInfo.capabilityTable.kmdNotifyProperties.delayKmdNotifyMicroseconds);
33+
EXPECT_EQ(300ll, hardwareInfo.capabilityTable.kmdNotifyProperties.delayKmdNotifyMicroseconds);
3434
}

shared/source/gen12lp/linux/hw_info_config_dg1.inl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ int HwInfoConfigHw<IGFX_DG1>::configureHardwareCustom(HardwareInfo *hwInfo, OSIn
2020
hwInfo->featureTable.ftrGpGpuMidThreadLevelPreempt = false;
2121
auto &kmdNotifyProperties = hwInfo->capabilityTable.kmdNotifyProperties;
2222
kmdNotifyProperties.enableKmdNotify = true;
23-
kmdNotifyProperties.delayKmdNotifyMicroseconds = 100;
23+
kmdNotifyProperties.delayKmdNotifyMicroseconds = 300;
2424
return 0;
2525
}
2626

0 commit comments

Comments
 (0)