Skip to content

Commit 63ad149

Browse files
committed
[mlir][NFC] Fix the MLIR example format to conform to SSA form.
1 parent cece058 commit 63ad149

File tree

1 file changed

+1
-1
lines changed
  • mlir/docs/Tutorials/transform

1 file changed

+1
-1
lines changed

mlir/docs/Tutorials/transform/Ch0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Sometimes it is necessary to add elements of a vector to obtain a scalar. Some p
3535
The Vector dialect in MLIR defines an operation to explicitly denote a within-vector reduction:
3636

3737
```mlir
38-
%0 = vector.reduction <add>, %0 : vector<8xf32> into f32
38+
%1 = vector.reduction <add>, %0 : vector<8xf32> into f32
3939
```
4040

4141
When no support is available, such an operation can be transformed into a loop:

0 commit comments

Comments
 (0)