Fix typo "tranpose" (#124929)

This commit is contained in:
Jay Foad
2025-01-29 17:49:54 +00:00
committed by GitHub
parent 27e01d1d74
commit aa2952165c
16 changed files with 27 additions and 27 deletions

View File

@@ -71,7 +71,7 @@ For example, a pattern that transform
outs(%init1 : tensor<2x1x3xf32>)
dimensions = [1, 0, 2]
%out = linalg.transpose
ins(%tranpose: tensor<2x1x3xf32>)
ins(%transpose: tensor<2x1x3xf32>)
outs(%init2 : tensor<3x1x2xf32>)
permutation = [2, 1, 0]
```