Skip to content

Commit

Permalink
[mlir] Fix typos (NFC)
Browse files Browse the repository at this point in the history
  • Loading branch information
chelini committed Apr 28, 2021
1 parent 9cc217a commit 41b86d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion mlir/docs/Tools/LinalgOpDsl.md
Expand Up @@ -48,7 +48,7 @@ T2 = TV.T2
def matmul(A=TensorDef(T1, S.M, S.K),
B=TensorDef(T2, S.K, S.N),
C=TensorDef(U, S.M, S.N, output=True)):
"""Performs a matrix multiplacation of two 2D inputs.
"""Performs a matrix multiplication of two 2D inputs.
Numeric casting is performed on the operands to the inner multiply, promoting
them to the same data type as the accumulator/output.
Expand Down
Expand Up @@ -3,7 +3,7 @@ metadata: !LinalgOpMetadata
name: matmul
cpp_op_name: MatmulOp
doc: |-
Performs a matrix multiplacation of two 2D inputs.
Performs a matrix multiplication of two 2D inputs.
Numeric casting is performed on the operands to the inner multiply, promoting
them to the same data type as the accumulator/output.
Expand Down Expand Up @@ -65,7 +65,7 @@ metadata: !LinalgOpMetadata
name: batch_matmul
cpp_op_name: BatchMatmulOp
doc: |-
Performs a batched matrix multiplacation of two 3D inputs.
Performs a batched matrix multiplication of two 3D inputs.
Numeric casting is performed on the operands to the inner multiply, promoting
them to the same data type as the accumulator/output.
Expand Down Expand Up @@ -189,7 +189,7 @@ metadata: !LinalgOpMetadata
name: vecmat
cpp_op_name: VecmatOp
doc: |-
Performs a vector-matrix multiplacation.
Performs a vector-matrix multiplication.
Numeric casting is performed on the operands to the inner multiply, promoting
them to the same data type as the accumulator/output.
Expand Down

0 comments on commit 41b86d8

Please sign in to comment.