[Mlir-commits] [mlir] [mlir][acc] Introduce acc data bounds accessors (PR #156545)
Razvan Lupusoru
llvmlistbot at llvm.org
Tue Sep 2 15:58:44 PDT 2025
================
@@ -505,6 +505,84 @@ def OpenACC_DataBoundsOp : OpenACC_Op<"bounds",
];
}
+//===----------------------------------------------------------------------===//
+// DataBounds accessor operations
+//===----------------------------------------------------------------------===//
+
+def OpenACC_GetLowerboundOp : OpenACC_Op<"get_lowerbound", [NoMemoryEffect]> {
+ let summary = "Extract lowerbound from OpenACC data bounds.";
+ let description = [{
+ This operation extracts the lowerbound value from an `acc.bounds` value.
+ If the data bounds does not have a lowerbound specified, it means it is zero.
+
+ Example:
+ ```mlir
+ %lb = acc.get_lowerbound %bounds : (!acc.data_bounds_ty) -> index
+ ```
+ }];
+
+ let arguments = (ins OpenACC_DataBoundsType:$bounds);
+ let results = (outs Index:$result);
+
+ let assemblyFormat = "$bounds attr-dict `:` `(` type($bounds) `)` `->` type($result)";
+}
+
+def OpenACC_GetUpperboundOp : OpenACC_Op<"get_upperbound", [NoMemoryEffect]> {
+ let summary = "Extract upperbound from OpenACC data bounds.";
+ let description = [{
+ This operation extracts the upperbound value from an `acc.bounds` value.
+ If the data bounds does not have an upperbound specified, this operation
+ uses the extent to compute it.
----------------
razvanlupusoru wrote:
This description is not yet implemented :) I just captured the intent. Sorry if it misled.
https://github.com/llvm/llvm-project/pull/156545
More information about the Mlir-commits
mailing list