314a54c9581a190ff8b70c397738581bc7c65bfd
[platform/core/ml/nnfw.git] / runtime / onert / core / src / ir / pass / PermutationInsertionPass.h
1 /*
2  * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef __ONERT_GRAPH_PASS_PERMUTATION_INSERTION_PASS_H__
18 #define __ONERT_GRAPH_PASS_PERMUTATION_INSERTION_PASS_H__
19
20 #include "LoweredOperandPass.h"
21 #include "compiler/BackendManager.h"
22 #include "ir/Operand.h" //for OperationIndex
23 #include "ir/operand/PermuteFactor.h"
24
25 namespace onert
26 {
27 namespace ir
28 {
29 namespace pass
30 {
31
32 class PermutationInsertionPass : public LoweredOperandPass
33 {
34 public:
35   using LoweredOperandPass::LoweredOperandPass;
36
37 public:
38   std::string id() override { return "PermutationInsertionPass"; }
39   void callback(const OperandIndex &index, Operand &object) override;
40
41   /**
42    * @brief Insert Permute operation that has given operand as input
43    *
44    * @param operand_index is the target operand index for the insertion
45    * @param factor is the output operand's backend type and layout
46    *
47    * @return OperationIndex
48    */
49   OperationIndex insertPermute(const OperandIndex &operand_index,
50                                const operand::PermuteFactor &factor);
51
52 private:
53 };
54
55 } // namespace pass
56 } // namespace ir
57 } // namespace onert
58
59 #endif // __ONERT_GRAPH_PASS_PERMUTATION_INSERTION_PASS_H__