[Mlir-commits] [mlir] [MLIR][OpenMP]Adding MLIR Op definition for scan (PR #107925)

Sergio Afonso llvmlistbot at llvm.org
Fri Sep 13 04:59:22 PDT 2024


================
@@ -1202,6 +1202,20 @@ def OrderedRegionOp : OpenMP_Op<"ordered.region", clauses = [
   let hasVerifier = 1;
 }
 
+def ScanOp : OpenMP_Op<"scan", traits = [
+    AttrSizedOperandSegments
+  ], clauses = [OpenMP_InclusiveClause, OpenMP_ExclusiveClause]> {
+  let summary = "scan construct with the region";
+  let description = [{
+    The scan without region is a stand-alone directive that
----------------
skatrak wrote:

It looks like the description is not complete.

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


More information about the Mlir-commits mailing list