@@ -36,14 +36,13 @@ namespace IGC
3636 bool allowLargeGRF;
3737 bool allowLoadSinking;
3838 bool forceIndirectCallsInSyncRT;
39- bool allowRaytracingSpillCompaction;
4039 unsigned nextState;
4140 };
4241
4342 static const RetryState RetryTable[] = {
44- // adrCl licm codSk AdrSk Slice PrivM VISAP URBWr Coals GRF loadSk, SyncRT, compactspills
45- { false , true , true , false , false , true , true , true , true , false , false , false , true , 1 },
46- { true , false , true , true , true , false , false , false , false , true , true , true , false , 500 }
43+ // adrCl licm codSk AdrSk Slice PrivM VISAP URBWr Coals GRF loadSk, SyncRT
44+ { false , true , true , false , false , true , true , true , true , false , false , false , 1 },
45+ { true , false , true , true , true , false , false , false , false , true , true , true , 500 }
4746 };
4847
4948 static constexpr size_t RetryTableSize = sizeof (RetryTable) / sizeof (RetryState);
@@ -163,13 +162,6 @@ namespace IGC
163162 return RetryTable[id].forceIndirectCallsInSyncRT ;
164163 }
165164
166- bool RetryManager::AllowRaytracingSpillCompaction () const
167- {
168- unsigned id = GetRetryId ();
169- IGC_ASSERT (id < RetryTableSize);
170- return RetryTable[id].allowRaytracingSpillCompaction ;
171- }
172-
173165 bool RetryManager::AllowLoadSinking (Function* F) const
174166 {
175167 unsigned id = GetPerFuncRetryStateId (F);
0 commit comments