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 @@ -635,11 +635,13 @@ def Vector_ExtractElementOp :
635
635
Results<(outs AnyType:$result)> {
636
636
let summary = "extractelement operation";
637
637
let description = [{
638
+ Note: This operation is depreciated. Please use vector.extract insert.
639
+
638
640
Takes a 0-D or 1-D vector and a optional dynamic index position and
639
641
extracts the scalar at that position.
640
642
641
643
Note that this instruction resembles vector.extract, but is restricted to
642
- 0-D and 1-D vectors and relaxed to dynamic indices .
644
+ 0-D and 1-D vectors.
643
645
If the vector is 0-D, the position must be std::nullopt.
644
646
645
647
@@ -819,11 +821,13 @@ def Vector_InsertElementOp :
819
821
Results<(outs AnyVectorOfAnyRank:$result)> {
820
822
let summary = "insertelement operation";
821
823
let description = [{
824
+ Note: This operation is depreciated. Please use vector.insert instead.
825
+
822
826
Takes a scalar source, a 0-D or 1-D destination vector and a dynamic index
823
827
position and inserts the source into the destination at the proper position.
824
828
825
829
Note that this instruction resembles vector.insert, but is restricted to 0-D
826
- and 1-D vectors and relaxed to dynamic indices .
830
+ and 1-D vectors.
827
831
828
832
It is meant to be closer to LLVM's version:
829
833
https://llvm.org/docs/LangRef.html#insertelement-instruction
You can’t perform that action at this time.
0 commit comments