[PATCH] D75771: [mlir] NFC - Add predicates and types for VectorOfRank
Nicolas Vasilache via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 9 10:14:40 PDT 2020
This revision was not accepted when it landed; it landed in state "Needs Review".
This revision was automatically updated to reflect the committed changes.
Closed by commit rGc494ff05ed59: [mlir] NFC - Add predicates and types for VectorOfRank (authored by nicolasvasilache).
Changed prior to commit:
https://reviews.llvm.org/D75771?vs=248831&id=249150#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D75771/new/
https://reviews.llvm.org/D75771
Files:
mlir/include/mlir/IR/OpBase.td
Index: mlir/include/mlir/IR/OpBase.td
===================================================================
--- mlir/include/mlir/IR/OpBase.td
+++ mlir/include/mlir/IR/OpBase.td
@@ -486,6 +486,29 @@
ShapedContainerType<allowedTypes, IsVectorTypePred, "vector">;
// Whether the number of elements of a vector is from the given
+// `allowedRanks` list
+class IsVectorOfRankPred<list<int> allowedRanks> :
+ And<[IsVectorTypePred,
+ Or<!foreach(allowedlength, allowedRanks,
+ CPred<[{$_self.cast<VectorType>().getRank()
+ == }]
+ # allowedlength>)>]>;
+
+// Any vector where the rank is from the given `allowedRanks` list
+class VectorOfRank<list<int> allowedRanks> : Type<
+ IsVectorOfRankPred<allowedRanks>,
+ " of ranks " # StrJoinInt<allowedRanks, "/">.result>;
+
+// Any vector where the rank is from the given `allowedRanks` list and the type
+// is from the given `allowedTypes` list
+class VectorOfRankAndType<list<int> allowedRanks,
+ list<Type> allowedTypes> : Type<
+ And<[VectorOf<allowedTypes>.predicate,
+ VectorOfRank<allowedRanks>.predicate]>,
+ VectorOf<allowedTypes>.description #
+ VectorOfRank<allowedRanks>.description>;
+
+// Whether the number of elements of a vector is from the given
// `allowedLengths` list
class IsVectorOfLengthPred<list<int> allowedLengths> :
And<[IsVectorTypePred,
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D75771.249150.patch
Type: text/x-patch
Size: 1428 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200309/5bc5a887/attachment.bin>
More information about the llvm-commits
mailing list