diff --git a/level_zero/core/source/cmdlist/cmdlist_hw_skl_to_tgllp.inl b/level_zero/core/source/cmdlist/cmdlist_hw_skl_to_tgllp.inl index 399f7a6c3a..7d519174e7 100644 --- a/level_zero/core/source/cmdlist/cmdlist_hw_skl_to_tgllp.inl +++ b/level_zero/core/source/cmdlist/cmdlist_hw_skl_to_tgllp.inl @@ -167,7 +167,6 @@ ze_result_t CommandListCoreFamily::appendLaunchKernelWithParams(K commandListPreemptionMode, // preemptionMode 0, // partitionCount static_cast(Event::STATE_SIGNALED), // postSyncImmValue - false, // inOrderExecEnabled launchParams.isIndirect, // isIndirect launchParams.isPredicate, // isPredicate false, // isTimestampEvent diff --git a/level_zero/core/source/cmdlist/cmdlist_hw_xehp_and_later.inl b/level_zero/core/source/cmdlist/cmdlist_hw_xehp_and_later.inl index f4cc6b5ea7..333eda1cb8 100644 --- a/level_zero/core/source/cmdlist/cmdlist_hw_xehp_and_later.inl +++ b/level_zero/core/source/cmdlist/cmdlist_hw_xehp_and_later.inl @@ -263,7 +263,6 @@ ze_result_t CommandListCoreFamily::appendLaunchKernelWithParams(K kernelPreemptionMode, // preemptionMode this->partitionCount, // partitionCount static_cast(Event::STATE_SIGNALED), // postSyncImmValue - this->inOrderExecutionEnabled, // inOrderExecEnabled launchParams.isIndirect, // isIndirect launchParams.isPredicate, // isPredicate isTimestampEvent, // isTimestampEvent diff --git a/level_zero/core/test/unit_tests/sources/cmdlist/test_cmdlist_append_launch_kernel_1.cpp b/level_zero/core/test/unit_tests/sources/cmdlist/test_cmdlist_append_launch_kernel_1.cpp index 1f0ce5ab48..ff8e0f2378 100644 --- a/level_zero/core/test/unit_tests/sources/cmdlist/test_cmdlist_append_launch_kernel_1.cpp +++ b/level_zero/core/test/unit_tests/sources/cmdlist/test_cmdlist_append_launch_kernel_1.cpp @@ -199,8 +199,6 @@ HWTEST2_F(CommandListAppendLaunchKernel, givenNotEnoughSpaceInCommandStreamWhenA false, false, false, - false, - false, commandList->getDcFlushRequired(true)}; NEO::EncodeDispatchKernel::encode(commandContainer, dispatchKernelArgs, commandList->getLogicalStateHelper()); diff --git a/level_zero/core/test/unit_tests/sources/cmdlist/test_cmdlist_append_launch_kernel_3.cpp b/level_zero/core/test/unit_tests/sources/cmdlist/test_cmdlist_append_launch_kernel_3.cpp index e970fc61fd..a71de45d5e 100644 --- a/level_zero/core/test/unit_tests/sources/cmdlist/test_cmdlist_append_launch_kernel_3.cpp +++ b/level_zero/core/test/unit_tests/sources/cmdlist/test_cmdlist_append_launch_kernel_3.cpp @@ -634,7 +634,6 @@ HWTEST2_F(CommandListAppendLaunchKernel, givenNotEnoughSpaceInCommandStreamWhenA false, false, false, - false, commandList->getDcFlushRequired(true)}; NEO::EncodeDispatchKernel::encode(commandContainer, dispatchKernelArgs, nullptr); diff --git a/shared/source/command_container/command_encoder.h b/shared/source/command_container/command_encoder.h index ba0a9d1635..0310fa677e 100644 --- a/shared/source/command_container/command_encoder.h +++ b/shared/source/command_container/command_encoder.h @@ -53,7 +53,6 @@ struct EncodeDispatchKernelArgs { PreemptionMode preemptionMode = PreemptionMode::Initial; uint32_t partitionCount = 0u; uint32_t postSyncImmValue = 0; - bool inOrderExecEnabled = false; bool isIndirect = false; bool isPredicate = false; bool isTimestampEvent = false; diff --git a/shared/test/unit_test/encoders/test_encode_dispatch_kernel.cpp b/shared/test/unit_test/encoders/test_encode_dispatch_kernel.cpp index 8cc2f4c689..c33b60f331 100644 --- a/shared/test/unit_test/encoders/test_encode_dispatch_kernel.cpp +++ b/shared/test/unit_test/encoders/test_encode_dispatch_kernel.cpp @@ -1466,7 +1466,6 @@ HWTEST_F(BindlessCommandEncodeStatesTest, givenGlobalBindlessHeapsWhenDispatchin false, false, false, - false, requiresUncachedMocs, false, false, @@ -1518,7 +1517,6 @@ HWTEST_F(BindlessCommandEncodeStatesTest, givenBindlessModeDisabledelWithSampler false, false, false, - false, requiresUncachedMocs, false, false, diff --git a/shared/test/unit_test/fixtures/command_container_fixture.cpp b/shared/test/unit_test/fixtures/command_container_fixture.cpp index 6076a7f696..cedb7bbace 100644 --- a/shared/test/unit_test/fixtures/command_container_fixture.cpp +++ b/shared/test/unit_test/fixtures/command_container_fixture.cpp @@ -47,7 +47,6 @@ EncodeDispatchKernelArgs CommandEncodeStatesFixture::createDefaultDispatchKernel PreemptionMode::Disabled, // preemptionMode 1, // partitionCount 0, // postSyncImmValue - false, // inOrderExecEnabled false, // isIndirect false, // isPredicate false, // isTimestampEvent