[Mlir-commits] [mlir] df6a1d4 - [mlir][tensor] NFC: fully qualify verifyEncoding arguments.
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Thu Mar 21 04:32:16 PDT 2024
Author: Christian Sigg
Date: 2024-03-21T12:32:12+01:00
New Revision: df6a1d44094e187d7d5ea3ee5b54b9bccc8a4798
URL: https://github.com/llvm/llvm-project/commit/df6a1d44094e187d7d5ea3ee5b54b9bccc8a4798
DIFF: https://github.com/llvm/llvm-project/commit/df6a1d44094e187d7d5ea3ee5b54b9bccc8a4798.diff
LOG: [mlir][tensor] NFC: fully qualify verifyEncoding arguments.
Added:
Modified:
mlir/include/mlir/IR/TensorEncoding.td
Removed:
################################################################################
diff --git a/mlir/include/mlir/IR/TensorEncoding.td b/mlir/include/mlir/IR/TensorEncoding.td
index 3991520d72a5fe..4907dcbb5de964 100644
--- a/mlir/include/mlir/IR/TensorEncoding.td
+++ b/mlir/include/mlir/IR/TensorEncoding.td
@@ -34,8 +34,8 @@ def VerifiableTensorEncoding : AttrInterface<"VerifiableTensorEncoding"> {
/*retTy=*/"::mlir::LogicalResult",
/*methodName=*/"verifyEncoding",
/*args=*/(ins
- "ArrayRef<int64_t>":$shape,
- "Type":$elementType,
+ "::mlir::ArrayRef<int64_t>":$shape,
+ "::mlir::Type":$elementType,
"::llvm::function_ref<::mlir::InFlightDiagnostic()>":$emitError)
>,
];
More information about the Mlir-commits
mailing list