[Mlir-commits] [mlir] fe1c4f0 - [mlir][vector][nfc] Remove redundant "`"
Andrzej Warzynski
llvmlistbot at llvm.org
Mon Dec 2 01:43:49 PST 2024
Author: Andrzej Warzynski
Date: 2024-12-02T09:42:56Z
New Revision: fe1c4f0106fe4fd6d61c38ba46e71fda8f4d1573
URL: https://github.com/llvm/llvm-project/commit/fe1c4f0106fe4fd6d61c38ba46e71fda8f4d1573
DIFF: https://github.com/llvm/llvm-project/commit/fe1c4f0106fe4fd6d61c38ba46e71fda8f4d1573.diff
LOG: [mlir][vector][nfc] Remove redundant "`"
Added:
Modified:
mlir/include/mlir/Dialect/Vector/IR/VectorOps.td
Removed:
################################################################################
diff --git a/mlir/include/mlir/Dialect/Vector/IR/VectorOps.td b/mlir/include/mlir/Dialect/Vector/IR/VectorOps.td
index d35847034cb125..30a5b06374fad1 100644
--- a/mlir/include/mlir/Dialect/Vector/IR/VectorOps.td
+++ b/mlir/include/mlir/Dialect/Vector/IR/VectorOps.td
@@ -760,7 +760,7 @@ def Vector_FMAOp :
let summary = "vector fused multiply-add";
let description = [{
Multiply-add expressions operate on n-D vectors and compute a fused
- pointwise multiply-and-accumulate: `$result = `$lhs * $rhs + $acc`.
+ pointwise multiply-and-accumulate: `$result = $lhs * $rhs + $acc`.
All operands and result have the same vector type. The semantics
of the operation correspond to those of the `llvm.fma`
[intrinsic](https://llvm.org/docs/LangRef.html#int-fma). In the
More information about the Mlir-commits
mailing list