[Mlir-commits] [clang] [llvm] [mlir] [openmp] [Clang][OpenMP] Canonicalize Intra-tiles in Loop Tiling (PR #191114)

Michael Kruse llvmlistbot at llvm.org
Fri Aug 28 04:37:36 PDT 2026


================
@@ -4877,6 +4877,15 @@ def OMPAssume : InheritableAttr {
   let Args = [StringArgument<"Assumption">];
 }
 
+def OMPInvariantPredicateBound : StmtAttr {
+  let Spellings = [];
+  let SemaHandler = 0;
+  let Subjects = SubjectList<[Stmt], ErrorDiag>;
+  let Args = [ExprArgument<"RectCond">, ExprArgument<"TileSize">,
+              ExprArgument<"Predicate", 1>];
----------------
Meinersbur wrote:

Could you add comments about what those three args mean?

https://github.com/llvm/llvm-project/pull/191114


More information about the Mlir-commits mailing list