[Mlir-commits] [mlir] [MLIR][OpenMP]Add order-modifier support to Order clause (PR #93805)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Sat Jun 1 21:39:51 PDT 2024


================
@@ -433,6 +433,47 @@ static void printScheduleClause(OpAsmPrinter &p, Operation *op,
     p << ", simd";
 }
 
+//===----------------------------------------------------------------------===//
+// Parser and printer for Order Clause
+//===----------------------------------------------------------------------===//
+
+// order ::= `order` `(` [order-modiļ¬er ':'] concurrent `)`
----------------
shraiysh wrote:

The grammar seems inaccurate. In the testcases it seems that the second value can be both `default` and `concurrent`. Can you check this once?

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


More information about the Mlir-commits mailing list