File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
mlir/include/mlir/Dialect/Vector/IR Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -680,6 +680,10 @@ def Vector_ExtractOp :
680
680
Takes an n-D vector and a k-D position and extracts the (n-k)-D vector at
681
681
the proper position. Degenerates to an element type if n-k is zero.
682
682
683
+ Dynamic indices must be greater or equal to zero and less than the size of
684
+ the corresponding dimension. The result is undefined if any index is
685
+ out-of-bounds.
686
+
683
687
Example:
684
688
685
689
```mlir
@@ -862,6 +866,10 @@ def Vector_InsertOp :
862
866
and inserts the n-D source into the (n+k)-D destination at the proper
863
867
position. Degenerates to a scalar or a 0-d vector source type when n = 0.
864
868
869
+ Dynamic indices must be greater or equal to zero and less than the size of
870
+ the corresponding dimension. The result is undefined if any index is
871
+ out-of-bounds.
872
+
865
873
Example:
866
874
867
875
```mlir
You can’t perform that action at this time.
0 commit comments