cbalint13 commented on code in PR #17161:
URL: https://github.com/apache/tvm/pull/17161#discussion_r1680883012


##########
src/tir/schedule/transform.cc:
##########
@@ -340,7 +340,9 @@ Optional<LoopRV> TileWithTensorIntrin(const tir::Schedule& 
sch, const tir::Block
     }
     auto consumers = sch->GetConsumers(block_rv);
     for (const auto& consumer : consumers) {
-      sch->ComputeInline(consumer);
+      auto sref = sch->GetSRef(consumer);
+      if (!tir::IsOutputBlock(sch->state(), sref, 
tir::GetScopeRoot(sch->state(), sref, true)))

Review Comment:
   @YXY-0922 
   
   Could add it as a simple testcase script e.g. for 
```tests/python/meta_schedule``` ?
   During a tuning process similar  (padding) issues might be overlooked, but a 
testcase always catch it in CI.
   
   



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to