Skip to content

Commit 9a65287

Browse files
fftzengigcbot
authored andcommitted
Enable dx9 simd early exit and remove registry key
Enable dx9 simd early exit and remove registry key
1 parent 5abfe48 commit 9a65287

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

IGC/Compiler/CISACodeGen/ShaderCodeGen.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -1246,8 +1246,7 @@ void CodeGen(DomainShaderContext* ctx, CShaderProgram::KernelShaderMap& shaders)
12461246
// check based on performance measures.
12471247
static bool SimdEarlyCheck(CodeGenContext* ctx)
12481248
{
1249-
if (IGC_IS_FLAG_ENABLED(SimdEarlyOut_9) &&
1250-
ctx->m_instrTypes.numPsInputs > 22 && ctx->m_instrTypes.numInsts > 1000)
1249+
if (ctx->m_instrTypes.numPsInputs > 22 && ctx->m_instrTypes.numInsts > 1000)
12511250
{
12521251
return false;
12531252
}

IGC/common/igc_flags.h

-1
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,6 @@ DECLARE_IGC_REGKEY(bool, DumpTimeStatsPerPass, false, "Collect Timing o
350350
DECLARE_IGC_REGKEY(bool, DumpHasNonKernelArgLdSt, false, "Print if hasNonKernelArg load/store to stderr", true)
351351
DECLARE_IGC_REGKEY(bool, PrintPsoDdiHash, true, "Print psoDDIHash in TimeStats_Shaders.csv file", true)
352352
DECLARE_IGC_REGKEY(bool, AddExtraIntfInfo, false, "Will add extra inteference info from .extraintf files from c:\\Intel\\IGC\\ShaderOverride", false)
353-
DECLARE_IGC_REGKEY(bool, SimdEarlyOut_9, false, "Force compiler simd early out for dx9", true)
354353

355354
DECLARE_IGC_GROUP("Debugging features")
356355
DECLARE_IGC_REGKEY(debugString, ForceAssignRhysicalReg, 0, "Force assigning dclId to phyiscal reg.", true)

0 commit comments

Comments
 (0)