File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
mlir/include/mlir/Dialect/Vector/IR Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -638,11 +638,13 @@ def Vector_ExtractElementOp :
638
638
Results<(outs AnyType:$result)> {
639
639
let summary = "extractelement operation";
640
640
let description = [{
641
+ Note: This operation is depreciated. Please use vector.extract insert.
642
+
641
643
Takes a 0-D or 1-D vector and a optional dynamic index position and
642
644
extracts the scalar at that position.
643
645
644
646
Note that this instruction resembles vector.extract, but is restricted to
645
- 0-D and 1-D vectors and relaxed to dynamic indices .
647
+ 0-D and 1-D vectors.
646
648
If the vector is 0-D, the position must be std::nullopt.
647
649
648
650
@@ -824,11 +826,13 @@ def Vector_InsertElementOp :
824
826
Results<(outs AnyVectorOfAnyRank:$result)> {
825
827
let summary = "insertelement operation";
826
828
let description = [{
829
+ Note: This operation is depreciated. Please use vector.insert instead.
830
+
827
831
Takes a scalar source, a 0-D or 1-D destination vector and a dynamic index
828
832
position and inserts the source into the destination at the proper position.
829
833
830
834
Note that this instruction resembles vector.insert, but is restricted to 0-D
831
- and 1-D vectors and relaxed to dynamic indices .
835
+ and 1-D vectors.
832
836
833
837
It is meant to be closer to LLVM's version:
834
838
https://llvm.org/docs/LangRef.html#insertelement-instruction
You can’t perform that action at this time.
0 commit comments