Skip to content

Commit 1362ec5

Browse files
iwwuigcbot
authored andcommitted
Fix lowerBoundGRF value in VRT
IGC computes the lowerBoundGRF, but sets vISA_MinGRFNum too late for vISA to retrieve in time. Move up the value setting to InitEncoder.
1 parent 2fc5049 commit 1362ec5

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

IGC/Compiler/CISACodeGen/CISABuilder.cpp

+6-1
Original file line numberDiff line numberDiff line change
@@ -5335,7 +5335,7 @@ namespace IGC
53355335
}
53365336
}
53375337

5338-
void CEncoder::InitEncoder(bool canAbortOnSpill, bool hasStackCall, bool hasInlineAsmCall, bool hasAdditionalVisaAsmToLink, int numThreadsPerEU, VISAKernel* prevKernel)
5338+
void CEncoder::InitEncoder(bool canAbortOnSpill, bool hasStackCall, bool hasInlineAsmCall, bool hasAdditionalVisaAsmToLink, int numThreadsPerEU, uint lowerBoundGRF, VISAKernel* prevKernel)
53395339
{
53405340
m_aliasesMap.clear();
53415341
m_encoderState.m_SubSpanDestination = false;
@@ -5399,6 +5399,11 @@ namespace IGC
53995399
SaveOption(vISA_AutoGRFSelection, true);
54005400
}
54015401

5402+
if (lowerBoundGRF > 0)
5403+
{
5404+
SaveOption(vISA_MinGRFNum, lowerBoundGRF);
5405+
}
5406+
54025407
// Pass all build options to builder
54035408
SetBuilderOptions(vbuilder);
54045409

IGC/Compiler/CISACodeGen/CISABuilder.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ namespace IGC
115115
class CEncoder
116116
{
117117
public:
118-
void InitEncoder(bool canAbortOnSpill, bool hasStackCall, bool hasInlineAsmCall, bool hasAdditionalVisaAsmToLink, int numThreadsPerEU, VISAKernel* prevKernel);
118+
void InitEncoder(bool canAbortOnSpill, bool hasStackCall, bool hasInlineAsmCall, bool hasAdditionalVisaAsmToLink, int numThreadsPerEU, uint lowerBoundGRF, VISAKernel* prevKernel);
119119
void InitBuildParams(llvm::SmallVector<std::unique_ptr< char, std::function<void(char*)>>, 10> & params);
120120
void InitVISABuilderOptions(TARGET_PLATFORM VISAPlatform, bool canAbortOnSpill, bool hasStackCall, bool enableVISA_IR);
121121
SEncoderState CopyEncoderState();

IGC/Compiler/CISACodeGen/EmitVISAPass.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -813,14 +813,17 @@ bool EmitPass::runOnFunction(llvm::Function& F)
813813
hasAdditionalVisaAsmToLink = true;
814814
}
815815
}
816+
817+
uint lowerBoundGRF = 0;
816818
int numThreadsPerEU = -1;
817819
if (F.hasFnAttribute("num-thread-per-eu"))
818820
{
819821
numThreadsPerEU = std::stoi(
820822
F.getFnAttribute("num-thread-per-eu").getValueAsString().str());
821823
}
822824
// call builder after pre-analysis pass where scratchspace offset to VISA is calculated
823-
m_encoder->InitEncoder(m_canAbortOnSpill, m_currShader->HasStackCalls(), hasInlineAsmCall, hasAdditionalVisaAsmToLink, numThreadsPerEU, prevKernel);
825+
m_encoder->InitEncoder(m_canAbortOnSpill, m_currShader->HasStackCalls(), hasInlineAsmCall, hasAdditionalVisaAsmToLink,
826+
numThreadsPerEU, lowerBoundGRF, prevKernel);
824827

825828
if (!m_encoder->IsCodePatchCandidate())
826829
createVMaskPred(m_vMaskPredForSubplane);

0 commit comments

Comments
 (0)