[Mlir-commits] [mlir] [MLIR][NFC] Fixed a typo of member variable static_basis (PR #117678)
Abdul Raheem
llvmlistbot at llvm.org
Sun Dec 1 11:34:38 PST 2024
https://github.com/abdulraheembeigh updated https://github.com/llvm/llvm-project/pull/117678
>From 7dbd20409cbcca29deee6c8491af91098495bb63 Mon Sep 17 00:00:00 2001
From: Abdul Raheem <55028856+abdulraheembeigh at users.noreply.github.com>
Date: Tue, 26 Nov 2024 12:50:13 +0530
Subject: [PATCH] [MLIR][NFC] Fixed a Typo
-- Fixed a typo of member variable static_basis of AffineDelinearizeIndexOp operation in AffineOps.td
Signed-off: Abdul Raheem Beigh <abdulraheembeigh at gmail.com>
---
mlir/include/mlir/Dialect/Affine/IR/AffineOps.td | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mlir/include/mlir/Dialect/Affine/IR/AffineOps.td b/mlir/include/mlir/Dialect/Affine/IR/AffineOps.td
index 76d97f106dcb88..18ff603c7dea7b 100644
--- a/mlir/include/mlir/Dialect/Affine/IR/AffineOps.td
+++ b/mlir/include/mlir/Dialect/Affine/IR/AffineOps.td
@@ -1115,7 +1115,7 @@ def AffineDelinearizeIndexOp : Affine_Op<"delinearize_index", [Pure]> {
}];
let builders = [
- OpBuilder<(ins "Value":$linear_index, "ValueRange":$dynamic_basis, "ArrayRef<int64_t>":$static_asis, CArg<"bool", "true">:$hasOuterBound)>,
+ OpBuilder<(ins "Value":$linear_index, "ValueRange":$dynamic_basis, "ArrayRef<int64_t>":$static_basis, CArg<"bool", "true">:$hasOuterBound)>,
OpBuilder<(ins "Value":$linear_index, "ValueRange":$basis, CArg<"bool", "true">:$hasOuterBound)>,
OpBuilder<(ins "Value":$linear_index, "ArrayRef<OpFoldResult>":$basis, CArg<"bool", "true">:$hasOuterBound)>,
OpBuilder<(ins "Value":$linear_index, "ArrayRef<int64_t>":$basis, CArg<"bool", "true">:$hasOuterBound)>
More information about the Mlir-commits
mailing list