[PATCH] D79833: [mlir][shape] Add `shape.from_extents`.
Sean Silva via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue May 12 18:52:45 PDT 2020
silvas created this revision.
silvas added a reviewer: jpienaar.
Herald added subscribers: llvm-commits, Kayjukh, frgossen, grosul1, Joonsoo, stephenneuendorffer, liufengdb, aartbik, lucyrfox, mgester, arpith-jacob, nicolasvasilache, antiagainst, shauheen, rriddle, mehdi_amini.
Herald added 1 blocking reviewer(s): jpienaar.
Herald added a project: LLVM.
This is a basic op needed for creating shapes from SSA values
representing the extents.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D79833
Files:
mlir/include/mlir/Dialect/Shape/IR/ShapeOps.td
mlir/lib/Dialect/Shape/IR/Shape.cpp
mlir/test/Dialect/Shape/canonicalize.mlir
Index: mlir/test/Dialect/Shape/canonicalize.mlir
===================================================================
--- mlir/test/Dialect/Shape/canonicalize.mlir
+++ mlir/test/Dialect/Shape/canonicalize.mlir
@@ -86,3 +86,23 @@
%0 = "shape.to_extent_tensor"(%cs) : (!shape.shape) -> tensor<2xindex>
return %0 : tensor<2xindex>
}
+
+// -----
+// Basic case.
+// CHECK-LABEL: func @f()
+func @f() -> !shape.shape {
+ // CHECK: shape.const_shape [3, 5, 11]
+ %e0 = constant 3 : index
+ %e1 = constant 5 : index
+ %e2 = constant 11 : index
+ %ret = shape.from_extents %e0, %e1, %e2
+ return %ret : !shape.shape
+}
+
+// CHECK-LABEL: func @no_fold
+func @no_fold(%arg0: index) -> !shape.shape {
+ // CHECK-NOT: shape.const_shape
+ %e0 = constant 3 : index
+ %ret = shape.from_extents %e0, %arg0
+ return %ret : !shape.shape
+}
Index: mlir/lib/Dialect/Shape/IR/Shape.cpp
===================================================================
--- mlir/lib/Dialect/Shape/IR/Shape.cpp
+++ mlir/lib/Dialect/Shape/IR/Shape.cpp
@@ -182,6 +182,28 @@
return success();
}
+//===----------------------------------------------------------------------===//
+// FromExtentsOp
+//===----------------------------------------------------------------------===//
+
+LogicalResult FromExtentsOp::inferReturnTypes(
+ MLIRContext *context, Optional<Location> location, ValueRange operands,
+ DictionaryAttr attributes, RegionRange regions,
+ SmallVectorImpl<Type> &inferredReturnTypes) {
+ inferredReturnTypes.push_back(ShapeType::get(context));
+ return success();
+}
+
+OpFoldResult FromExtentsOp::fold(ArrayRef<Attribute> operands) {
+ if (llvm::any_of(operands, [](Attribute a) { return !a; }))
+ return nullptr;
+ SmallVector<int64_t, 6> extents;
+ for (auto attr : operands)
+ extents.push_back(attr.cast<IntegerAttr>().getInt());
+ Builder builder(getContext());
+ return builder.getI64TensorAttr(extents);
+}
+
//===----------------------------------------------------------------------===//
// ShapeOfOp
//===----------------------------------------------------------------------===//
Index: mlir/include/mlir/Dialect/Shape/IR/ShapeOps.td
===================================================================
--- mlir/include/mlir/Dialect/Shape/IR/ShapeOps.td
+++ mlir/include/mlir/Dialect/Shape/IR/ShapeOps.td
@@ -106,6 +106,30 @@
let assemblyFormat = "attr-dict $value";
}
+def Shape_FromExtentsOp : Shape_Op<"from_extents", [
+ NoSideEffect,
+ DeclareOpInterfaceMethods<InferTypeOpInterface>
+ ]> {
+ let summary = "Creates a shape from extents.";
+ let description = [{
+ Creates a shape from multiple SSA values representing the extents of
+ the shape.
+
+ ```mlir
+ // Rank 2 shape.
+ %s0 = shape.from_extents %a, %b
+ // Rank 0 shape.
+ %s1 = shape.from_extents
+ ```
+ }];
+ let arguments = (ins Variadic<Index>:$extents);
+ let results = (outs Shape_ShapeType:$shape);
+
+ let assemblyFormat = "attr-dict $extents";
+
+ let hasFolder = 1;
+}
+
def Shape_FromExtentTensorOp : Shape_Op<"from_extent_tensor", []> {
let summary = "Creates a shape from a tensor of extents";
let description = [{
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D79833.263586.patch
Type: text/x-patch
Size: 3178 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200513/ec46c1d5/attachment.bin>
More information about the llvm-commits
mailing list