fix: disable OOOS

Related-To: NEO-7458

Signed-off-by: Lukasz Jobczyk <lukasz.jobczyk@intel.com>
This commit is contained in:
Lukasz Jobczyk 2023-06-13 13:20:34 +00:00 committed by Compute-Runtime-Automation
parent 7cb3278eb3
commit 694e731a01
3 changed files with 7 additions and 4 deletions

View File

@ -646,6 +646,8 @@ HWTEST2_F(CommandQueueCommandsXeHpc, givenFlushTaskSubmissionEnabledAndSplitBcsC
DebugManagerStateRestore restorer;
DebugManager.flags.SplitBcsCopy.set(1);
DebugManager.flags.DirectSubmissionRelaxedOrdering.set(1);
DebugManager.flags.DirectSubmissionRelaxedOrderingForBcs.set(1);
ze_result_t returnValue;
auto hwInfo = *NEO::defaultHwInfo;

View File

@ -425,7 +425,7 @@ uint32_t GfxCoreHelperHw<Family>::getAmountOfAllocationsToFill() const {
template <>
bool GfxCoreHelperHw<Family>::isRelaxedOrderingSupported() const {
return true;
return false;
}
} // namespace NEO

View File

@ -93,8 +93,9 @@ XE_HPC_CORETEST_F(GfxCoreHelperTest, givenGfxCoreHelperWhenCallGetAmountOfAlloca
HWTEST_EXCLUDE_PRODUCT(GfxCoreHelperTest, givenGfxCoreHelperWhenAskingForRelaxedOrderingSupportThenReturnFalse, IGFX_XE_HPC_CORE);
XE_HPC_CORETEST_F(GfxCoreHelperTest, givenGfxCoreHelperWhenAskingForRelaxedOrderingSupportThenReturnTrue) {
auto &gfxCoreHelper = getHelper<GfxCoreHelper>();
XE_HPC_CORETEST_F(GfxCoreHelperXeHpcCoreTest, givenGfxCoreHelperWhenAskingForRelaxedOrderingSupportThenReturnFalse) {
MockExecutionEnvironment mockExecutionEnvironment{};
auto &gfxCoreHelper = mockExecutionEnvironment.rootDeviceEnvironments[0]->getHelper<GfxCoreHelper>();
EXPECT_TRUE(gfxCoreHelper.isRelaxedOrderingSupported());
EXPECT_FALSE(gfxCoreHelper.isRelaxedOrderingSupported());
}