From 81bed2a9a296ae5308f3a7624878046ef2950805 Mon Sep 17 00:00:00 2001 From: Uday Bondhugula Date: Sat, 25 Apr 2020 09:41:23 +0530 Subject: [PATCH] [MLIR]][DOC] Fix dimension validity constraint in affine dialect doc Fix affine dialect documentation on valid dimensional values: they also include affine.parallel IVs. Differential Revision: https://reviews.llvm.org/D78855 --- mlir/docs/Dialects/Affine.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mlir/docs/Dialects/Affine.md b/mlir/docs/Dialects/Affine.md index 4e4c7edf0e28..f2d9fdabab51 100644 --- a/mlir/docs/Dialects/Affine.md +++ b/mlir/docs/Dialects/Affine.md @@ -71,7 +71,9 @@ operation](Standard.md#dim-operation) on either a memref that is a function argument or a memref where the corresponding dimension is either static or a dynamic one in turn bound to a symbolic identifier. Dimensions may be bound not only to anything that a symbol is bound to, but also to induction variables of -enclosing [`affine.for` operations](#affinefor-operation), and the result of an +enclosing [`affine.for`](#affinefor-affineforop) and +[`afffine.parallel`](#affineparallel-affineparallelop) operations, and the +result of an [`affine.apply` operation](#affineapply-operation) (which recursively may use other dimensions and symbols).