[PATCH] D80283: [MLIR] Fix operand type in `from_extent_tensor` in the shape dialect

Frederik Gossen via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu May 28 07:36:48 PDT 2020


This revision was automatically updated to reflect the committed changes.
Closed by commit rGf1ab7550bcd5: [MLIR] Fix operand type in `from_extent_tensor` in the shape dialect (authored by frgossen).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D80283/new/

https://reviews.llvm.org/D80283

Files:
  mlir/include/mlir/Dialect/Shape/IR/ShapeOps.td


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
@@ -163,7 +163,7 @@
     extents match the values of the elements.
   }];
 
-  let arguments = (ins I32Tensor:$input);
+  let arguments = (ins IndexTensor:$input);
   let results = (outs Shape_ShapeType:$result);
 }
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D80283.266876.patch
Type: text/x-patch
Size: 442 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200528/6a7d6f9c/attachment.bin>


More information about the llvm-commits mailing list