diff --git a/shared/source/generated/xe3_core/hw_cmds_generated_xe3_core.inl b/shared/source/generated/xe3_core/hw_cmds_generated_xe3_core.inl index b3659e96bf..867d59c252 100644 --- a/shared/source/generated/xe3_core/hw_cmds_generated_xe3_core.inl +++ b/shared/source/generated/xe3_core/hw_cmds_generated_xe3_core.inl @@ -6989,10 +6989,7 @@ typedef struct tagSTATE_COMPUTE_MODE { uint32_t MidthreadPreemptionOverdispatchThreadGroupCount : BITFIELD_RANGE(3, 4); uint32_t MidthreadPreemptionOverdispatchTestMode : BITFIELD_RANGE(5, 5); uint32_t UavCoherencyMode : BITFIELD_RANGE(6, 6); - uint32_t OutOfBoundariesInTranslationExceptionEnable : BITFIELD_RANGE(7, 7); - uint32_t Reserved_72 : BITFIELD_RANGE(8, 10); - uint32_t MemoryAllocationForScratchAndMidthreadPreemptionBuffers : BITFIELD_RANGE(11, 11); - uint32_t Reserved_76 : BITFIELD_RANGE(12, 15); + uint32_t Reserved_76 : BITFIELD_RANGE(7, 15); uint32_t Mask2 : BITFIELD_RANGE(16, 31); } Common; uint32_t RawData[3]; @@ -7152,18 +7149,6 @@ typedef struct tagSTATE_COMPUTE_MODE { inline UAV_COHERENCY_MODE getUavCoherencyMode() const { return static_cast(TheStructure.Common.UavCoherencyMode); } - inline void setOutOfBoundariesInTranslationExceptionEnable(const bool value) { - TheStructure.Common.OutOfBoundariesInTranslationExceptionEnable = value; - } - inline bool getOutOfBoundariesInTranslationExceptionEnable() const { - return TheStructure.Common.OutOfBoundariesInTranslationExceptionEnable; - } - inline void setMemoryAllocationForScratchAndMidthreadPreemptionBuffers(const bool value) { - TheStructure.Common.MemoryAllocationForScratchAndMidthreadPreemptionBuffers = value; - } - inline bool getMemoryAllocationForScratchAndMidthreadPreemptionBuffers() const { - return TheStructure.Common.MemoryAllocationForScratchAndMidthreadPreemptionBuffers; - } inline void setMask2(const uint32_t value) { UNRECOVERABLE_IF(value > 0xffff); TheStructure.Common.Mask2 = value; diff --git a/shared/source/xe3_core/hw_cmds_base.h b/shared/source/xe3_core/hw_cmds_base.h index e24508ed31..63b70bc941 100644 --- a/shared/source/xe3_core/hw_cmds_base.h +++ b/shared/source/xe3_core/hw_cmds_base.h @@ -27,8 +27,6 @@ struct Xe3Core { static constexpr uint32_t stateComputeModeEuThreadSchedulingModeOverrideMask = (0b11u << 13); static constexpr uint32_t stateComputeModeLargeGrfModeMask = (1u << 15); // DW2 - static constexpr uint32_t stateComputeModeEnableOutOfBoundariesInTranslationExceptionMask = (1u << 7); - static constexpr uint32_t stateComputeModeMemoryAllocationForScratchAndMidthreadPreemptionBuffersMask = (1u << 11); static constexpr uint32_t bcsEngineCount = 9u; static constexpr uint32_t timestampPacketCount = 16u;