diff --git a/opencl/test/unit_test/helpers/test_preamble_xehp_and_later.cpp b/opencl/test/unit_test/helpers/test_preamble_xehp_and_later.cpp index 5852705d21..a8163b7590 100644 --- a/opencl/test/unit_test/helpers/test_preamble_xehp_and_later.cpp +++ b/opencl/test/unit_test/helpers/test_preamble_xehp_and_later.cpp @@ -454,9 +454,6 @@ HWTEST2_F(PipelineSelectTest, WhenProgramPipelineSelectThenProperMaskIsSet, IsXe PreambleHelper::programPipelineSelect(&pipelineSelectStream, pipelineArgs, rootDeviceEnvironment); auto expectedMask = pipelineSelectEnablePipelineSelectMaskBits; - if constexpr (FamilyType::isUsingMediaSamplerDopClockGate) { - expectedMask |= pipelineSelectMediaSamplerDopClockGateMaskBits; - } if (pipelineArgs.systolicPipelineSelectSupport) { expectedMask |= pipelineSelectSystolicModeEnableMaskBits; diff --git a/shared/source/helpers/preamble_xe_hpg_and_xe_hpc.inl b/shared/source/helpers/preamble_xe_hpg_and_xe_hpc.inl index 9f082cd7ea..50dccae8e0 100644 --- a/shared/source/helpers/preamble_xe_hpg_and_xe_hpc.inl +++ b/shared/source/helpers/preamble_xe_hpg_and_xe_hpc.inl @@ -46,10 +46,6 @@ void PreambleHelper::programPipelineSelect(LinearStream *pCommandStream, auto mask = pipelineSelectEnablePipelineSelectMaskBits; cmd.setPipelineSelection(PIPELINE_SELECT::PIPELINE_SELECTION_GPGPU); - if constexpr (Family::isUsingMediaSamplerDopClockGate) { - mask |= pipelineSelectMediaSamplerDopClockGateMaskBits; - cmd.setMediaSamplerDopClockGateEnable(!pipelineSelectArgs.mediaSamplerRequired); - } bool systolicSupport = pipelineSelectArgs.systolicPipelineSelectSupport; bool systolicValue = pipelineSelectArgs.systolicPipelineSelectMode; diff --git a/shared/source/xe2_hpg_core/hw_cmds_base.h b/shared/source/xe2_hpg_core/hw_cmds_base.h index feebe7295d..e182aad7e5 100644 --- a/shared/source/xe2_hpg_core/hw_cmds_base.h +++ b/shared/source/xe2_hpg_core/hw_cmds_base.h @@ -27,7 +27,6 @@ struct Xe2HpgCore { static constexpr uint32_t stateComputeModeMemoryAllocationForScratchAndMidthreadPreemptionBuffersMask = (1u << 11); static constexpr bool isUsingL3Control = false; - static constexpr bool isUsingMediaSamplerDopClockGate = false; static constexpr bool supportsSampler = true; static constexpr bool isUsingGenericMediaStateClear = false; static constexpr bool isUsingMiMemFence = true; diff --git a/shared/source/xe3_core/hw_cmds_base.h b/shared/source/xe3_core/hw_cmds_base.h index f4c03f4790..b1988e89c8 100644 --- a/shared/source/xe3_core/hw_cmds_base.h +++ b/shared/source/xe3_core/hw_cmds_base.h @@ -30,7 +30,6 @@ struct Xe3Core { static constexpr uint32_t timestampPacketCount = 16u; static constexpr bool isUsingL3Control = false; - static constexpr bool isUsingMediaSamplerDopClockGate = false; static constexpr bool supportsSampler = true; static constexpr bool isUsingGenericMediaStateClear = false; static constexpr bool isUsingMiMemFence = true; diff --git a/shared/source/xe_hpc_core/hw_cmds_xe_hpc_core_base.h b/shared/source/xe_hpc_core/hw_cmds_xe_hpc_core_base.h index 4d1af082e5..de85af4f0f 100644 --- a/shared/source/xe_hpc_core/hw_cmds_xe_hpc_core_base.h +++ b/shared/source/xe_hpc_core/hw_cmds_xe_hpc_core_base.h @@ -31,7 +31,6 @@ struct XeHpcCore { static constexpr uint32_t timestampPacketCount = 16u; static constexpr bool isUsingL3Control = false; - static constexpr bool isUsingMediaSamplerDopClockGate = false; static constexpr bool supportsSampler = false; static constexpr bool isUsingGenericMediaStateClear = true; static constexpr bool isUsingMiMemFence = true; diff --git a/shared/source/xe_hpg_core/hw_cmds_xe_hpg_core_base.h b/shared/source/xe_hpg_core/hw_cmds_xe_hpg_core_base.h index f1c460f598..04116dd11f 100644 --- a/shared/source/xe_hpg_core/hw_cmds_xe_hpg_core_base.h +++ b/shared/source/xe_hpg_core/hw_cmds_xe_hpg_core_base.h @@ -31,7 +31,6 @@ struct XeHpgCore { static constexpr uint32_t timestampPacketCount = 1u; static constexpr bool isUsingL3Control = true; - static constexpr bool isUsingMediaSamplerDopClockGate = false; static constexpr bool supportsSampler = true; static constexpr bool isUsingGenericMediaStateClear = true; static constexpr bool isUsingMiMemFence = false;