Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(schedule): Inline non-output consumers when padding in TileWithTe…
…nsorIntrin In the TileWithTensorIntrin function, modified the inlining behavior of consumer blocks. Now, when padding is applied, the function inlines only non-output consumer blocks. This ensures that the padding and inlining process is correctly handled for both producers and consumers. Changes: - Added a check to ensure only non-output consumer blocks are inlined using tir::IsOutputBlock. - Updated the loop iterating over consumers to include the new check. This fix addresses issues where output blocks were being inappropriately inlined, maintaining the correct block shapes and dependencies.
- Loading branch information