Commit 390a8e6
committed
Modify transform-op-hoist-pad/transform-op-hoist-pad-build-packing-loop-nest.mlir:
The change to not slice when tiling with domain size caused a tensor.extract_slice
on %arg1 to disappear. The previous tensor.extract_slice was actually a noop:
%extracted_slice_1 = tensor.extract_slice %arg1[0, 0] [12, 25] [1, 1] : tensor<12x25xf32> to tensor<12x25xf32>
while %arg1 is defined as: %arg1: tensor<12x25xf32>
Since the second operand of the matmul is no longer an extract slice but a block argument the emitted error
message also changed.1 parent e895262 commit 390a8e6
File tree
2 files changed
+5
-3
lines changed- mlir/test/Dialect/Linalg
2 files changed
+5
-3
lines changedLines changed: 3 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
| 9 | + | |
9 | 10 | | |
10 | 11 | | |
11 | 12 | | |
| |||
24 | 25 | | |
25 | 26 | | |
26 | 27 | | |
| 28 | + | |
27 | 29 | | |
28 | 30 | | |
29 | 31 | | |
30 | | - | |
| 32 | + | |
31 | 33 | | |
32 | 34 | | |
33 | 35 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| |||
25 | 25 | | |
26 | 26 | | |
27 | 27 | | |
28 | | - | |
| 28 | + | |
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
| |||
0 commit comments