We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 570b023 commit 61f4e2eCopy full SHA for 61f4e2e
mlir/include/mlir/Dialect/Vector/IR/VectorOps.td
@@ -2259,7 +2259,9 @@ def Vector_ShapeCastOp :
2259
2260
```mlir
2261
%1 = vector.shape_cast %0 : vector<4x3xf32> to vector<3x2x2xf32>
2262
- %2 = vector.shape_cast %0 : vector<[2]x3x[4]xi8> to vector<3x[1]x[8]xi8>
+
2263
+ // with 2 scalable dimensions (number of which must be preserved).
2264
+ %3 = vector.shape_cast %2 : vector<[2]x3x[4]xi8> to vector<3x[1]x[8]xi8>
2265
```
2266
}];
2267
let extraClassDeclaration = [{
0 commit comments