summaryrefslogtreecommitdiff
path: root/mlir/docs
diff options
context:
space:
mode:
authorAviad Cohen <aviadcohen7@gmail.com>2023-02-05 07:51:45 +0200
committerAviad Cohen <aviadcohen7@gmail.com>2023-02-07 08:03:20 +0200
commitdcfd35d7042e7979d7da4858542acbaa8600acc1 (patch)
tree04139c678ced3022939f1cca987106be210a87ea /mlir/docs
parentd7eda3ca1087978ed74225953436f75c2c220b77 (diff)
downloadllvm-dcfd35d7042e7979d7da4858542acbaa8600acc1.tar.gz
[mlir]: Added IntArrayNthElemMaxValue & IntArrayNthElemInRange predicates (NFC)
Reviewed By: rriddle Differential Revision: https://reviews.llvm.org/D143331
Diffstat (limited to 'mlir/docs')
-rw-r--r--mlir/docs/DefiningDialects/Operations.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/mlir/docs/DefiningDialects/Operations.md b/mlir/docs/DefiningDialects/Operations.md
index 4b2208482249..03a2adbfcfd5 100644
--- a/mlir/docs/DefiningDialects/Operations.md
+++ b/mlir/docs/DefiningDialects/Operations.md
@@ -296,6 +296,10 @@ Right now, the following primitive constraints are supported:
element to be equal to `N`
* `IntArrayNthElemMinValue<I, N>`: Specifying an integer array attribute's
`I`-th element to be greater than or equal to `N`
+* `IntArrayNthElemMaxValue<I, N>`: Specifying an integer array attribute's
+ `I`-th element to be less than or equal to `N`
+* `IntArrayNthElemInRange<I, M, N>`: Specifying an integer array attribute's
+ `I`-th element to be greater than or equal to `M` and less than or equal to `N`
TODO: Design and implement more primitive constraints