Skip to content

Commit

Permalink
[TIR] Fix the error example in the documentation for pad_einsum (#15906)
Browse files Browse the repository at this point in the history
fix the error example in pad_einsum documentation
  • Loading branch information
HongHongHongL authored Oct 11, 2023
1 parent eb2a4bc commit 4e9866f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tvm/tir/schedule/schedule.py
Original file line number Diff line number Diff line change
Expand Up @@ -3592,7 +3592,7 @@ def before_pad_einsum(
sch = tir.Schedule(before_pad_einsum, debug_mask="all")
block = sch.get_block("C_shared")
sch.pad_einsum(block, [0, 1, 1])
sch.pad_einsum(block, [32, 32, 32])
print(sch.mod["main"].script())
After applying decompose-padding, the IR becomes:
Expand Down

0 comments on commit 4e9866f

Please sign in to comment.