[Mlir-commits] [mlir] 63f5c6a - [mlir][complex][NFC] Fix typo in PowOp (#137240)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Thu Apr 24 12:54:29 PDT 2025
Author: Valentin Clement (バレンタイン クレメン)
Date: 2025-04-24T12:54:25-07:00
New Revision: 63f5c6ae0b71189e717aca7aa4ef16d856de7e32
URL: https://github.com/llvm/llvm-project/commit/63f5c6ae0b71189e717aca7aa4ef16d856de7e32
DIFF: https://github.com/llvm/llvm-project/commit/63f5c6ae0b71189e717aca7aa4ef16d856de7e32.diff
LOG: [mlir][complex][NFC] Fix typo in PowOp (#137240)
Added:
Modified:
mlir/include/mlir/Dialect/Complex/IR/ComplexOps.td
Removed:
################################################################################
diff --git a/mlir/include/mlir/Dialect/Complex/IR/ComplexOps.td b/mlir/include/mlir/Dialect/Complex/IR/ComplexOps.td
index d660292478b19..44590406301eb 100644
--- a/mlir/include/mlir/Dialect/Complex/IR/ComplexOps.td
+++ b/mlir/include/mlir/Dialect/Complex/IR/ComplexOps.td
@@ -432,7 +432,7 @@ def NotEqualOp : Complex_Op<"neq",
def PowOp : ComplexArithmeticOp<"pow"> {
let summary = "complex power function";
let description = [{
- The `sqrt` operation takes a complex number raises it to the given complex
+ The `pow` operation takes a complex number raises it to the given complex
exponent.
Example:
More information about the Mlir-commits
mailing list