File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -161,13 +161,10 @@ void MergeURBWrites::FillWriteList(BasicBlock &BB)
161
161
for (auto iit = BB.begin (); iit != BB.end (); ++iit, ++instCounter)
162
162
{
163
163
auto intrinsic = dyn_cast<GenIntrinsicInst>(iit);
164
- // if we have URBRead instructions in the same basic block, Merge the exisiting URB Write Instructions
165
- // and clear the writeList. This way we can start merging instructions after the read
166
164
if (intrinsic == nullptr ) continue ;
167
165
168
166
GenISAIntrinsic::ID IID = intrinsic->getIntrinsicID ();
169
- if ((IID == GenISAIntrinsic::GenISA_URBRead) ||
170
- (IID == GenISAIntrinsic::GenISA_HSURBPatchHeaderRead) ||
167
+ if ((IID == GenISAIntrinsic::GenISA_HSURBPatchHeaderRead) ||
171
168
(IID == GenISAIntrinsic::GenISA_DCL_HSOutputCntrlPtInputVec) ||
172
169
(IID == GenISAIntrinsic::GenISA_DCL_HSPatchConstInputVec) ||
173
170
(IID == GenISAIntrinsic::GenISA_threadgroupbarrier))
You can’t perform that action at this time.
0 commit comments