File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
third_party/intel/lib/TritonIntelGPUTransforms Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -690,15 +690,12 @@ class TritonIntelGPURewriteTensorPointerPass
690690 auto crtOp = *crtOpItr;
691691 LDBG (" Processing op: " << *crtOp);
692692 if (isa<tt::LoadOp, tt::StoreOp>(crtOp)) {
693- LDBG (" is load store, checking to see if we should remove make "
694- " tensor ptr op" );
695693 if (shouldRemove (makeTensorPtrOp,
696694 /* isUsedByStoreOp=*/ isa<tt::StoreOp>(crtOp),
697695 /* isBlockLoad=*/
698696 isa<tt::LoadOp>(crtOp) &&
699697 crtOp->hasAttr (ttgi::TritonIntelGPUDialect::
700698 getBlockIOAttrName ()))) {
701- LDBG (" Marking op for removal: " << result);
702699 tensorPointersToRemove.insert (makeTensorPtrOp);
703700 }
704701 } else if (auto forOp = dyn_cast<scf::ForOp>(crtOp)) {
@@ -782,7 +779,6 @@ class TritonIntelGPURewriteTensorPointerPass
782779 valueToRemove.clear ();
783780 while (!eraser.empty ()) {
784781 auto op = eraser.top ();
785- LDBG (" DELETING " << *op);
786782 eraser.pop ();
787783 op->erase ();
788784 }
You can’t perform that action at this time.
0 commit comments