aboutsummaryrefslogtreecommitdiff
path: root/mlir
diff options
context:
space:
mode:
authorChristian Sigg <chsigg@users.noreply.github.com>2024-03-21 12:32:12 +0100
committerGitHub <noreply@github.com>2024-03-21 12:32:12 +0100
commitdf6a1d44094e187d7d5ea3ee5b54b9bccc8a4798 (patch)
tree5f915283ebc33960e675c8d574531e5433762cbf /mlir
parent34f0a8aaba11bf703ddd2de92eee8ecbb77be5c8 (diff)
downloadllvm-df6a1d44094e187d7d5ea3ee5b54b9bccc8a4798.zip
llvm-df6a1d44094e187d7d5ea3ee5b54b9bccc8a4798.tar.gz
llvm-df6a1d44094e187d7d5ea3ee5b54b9bccc8a4798.tar.bz2
[mlir][tensor] NFC: fully qualify verifyEncoding arguments.
Diffstat (limited to 'mlir')
-rw-r--r--mlir/include/mlir/IR/TensorEncoding.td4
1 files changed, 2 insertions, 2 deletions
diff --git a/mlir/include/mlir/IR/TensorEncoding.td b/mlir/include/mlir/IR/TensorEncoding.td
index 3991520..4907dcb 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)
>,
];