|
- /**
- * Copyright 2020 Huawei Technologies Co., Ltd
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
- #ifndef MINDSPORE_CCSRC_OPTIMIZER_IRPASS_INDEXED_SLICES_ELIMINATE_H_
- #define MINDSPORE_CCSRC_OPTIMIZER_IRPASS_INDEXED_SLICES_ELIMINATE_H_
-
- #include <vector>
- #include <algorithm>
-
- #include "optimizer/irpass.h"
- #include "optimizer/optimizer.h"
- #include "ir/visitor.h"
- #include "operator/ops.h"
-
- namespace mindspore {
- namespace opt {
- namespace irpass {
- // {prim::kPrimIndexedSlicesGetIndices, {prim::kPrimMakeIndexedSlices, Xs}}
- // {prim::kPrimIndexedSlicesGetValues, {prim::kPrimMakeIndexedSlices, Xs}}
- // {prim::kPrimIndexedSlicesGetDenseShape, {prim::kPrimMakeIndexedSlices, Xs}}
- class IndexedSlicesEliminater : public AnfVisitor {
- public:
- AnfNodePtr operator()(const OptimizerPtr &, const AnfNodePtr &node) override {
- Reset();
- AnfVisitor::Match(prim::kPrimIndexedSlicesGetIndices, {IsCNode})(node);
-
- if (is_match_) {
- return tuple_->input(1);
- }
- AnfVisitor::Match(prim::kPrimIndexedSlicesGetValues, {IsCNode})(node);
-
- if (is_match_) {
- return tuple_->input(2);
- }
- AnfVisitor::Match(prim::kPrimIndexedSlicesGetDenseShape, {IsCNode})(node);
-
- if (is_match_) {
- return tuple_->input(3);
- }
- return nullptr;
- }
-
- void Visit(const CNodePtr &cnode) override {
- if (IsPrimitiveCNode(cnode, prim::kPrimMakeIndexedSlices)) {
- tuple_ = cnode;
- is_match_ = true;
- }
- }
-
- void Reset() {
- tuple_ = nullptr;
- is_match_ = false;
- }
-
- private:
- bool is_match_{false};
- CNodePtr tuple_{nullptr};
- };
- } // namespace irpass
- } // namespace opt
- } // namespace mindspore
- #endif // MINDSPORE_CCSRC_OPTIMIZER_IRPASS_INDEXED_SLICES_ELIMINATE_H_
|