Imported Upstream version 1.25.0
[platform/core/ml/nnfw.git] / runtime / onert / core / include / ir / Operation.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_IR_OPERATION_H__
18 #define __ONERT_IR_OPERATION_H__
19
20 #include <memory>
21
22 #include "ir/IOperation.h"
23 #include "ir/Operand.h"
24 #include "ir/OperandConstraint.h"
25
26 namespace onert
27 {
28 namespace ir
29 {
30
31 // NOTE Virtual inheritance is introduced because trainable operations inherit
32 //      `ITrainableOperation` and `Operation` which inherit `IOperation`.
33 class Operation : virtual public IOperation
34 {
35 public:
36   // TODO Remove default parameter
37   Operation(OperandConstraint input_constr, const OperandIndexSequence &inputs,
38             const OperandIndexSequence &outputs,
39             OperandConstraint output_constr = OperandConstraint::createAny());
40   explicit Operation(OperandConstraint input_constr,
41                      OperandConstraint output_constr = OperandConstraint::createAny());
42
43   Operation(const Operation &) = default;
44   Operation(Operation &&) = default;
45   Operation &operator=(const Operation &) = default;
46   Operation &operator=(Operation &&) = default;
47
48   virtual ~Operation();
49
50 public:
51   void replaceInputs(const OperandIndex &from, const OperandIndex &to) override;
52   void replaceOutputs(const OperandIndex &from, const OperandIndex &to) override;
53   OperandIndexSequence &getInputs() { return _inputs; }
54   const OperandIndexSequence &getInputs() const override { return _inputs; }
55   const OperandIndexSequence &getOutputs() const override { return _outputs; }
56   // It's for only input/output tensors but const data.
57   void setInputs(const OperandIndexSequence &indexes);
58   void setOutputs(const OperandIndexSequence &indexes);
59
60 private:
61   OperandConstraint _input_constr;
62   OperandConstraint _output_constr;
63   OperandIndexSequence _inputs;
64   OperandIndexSequence _outputs;
65 };
66
67 } // namespace ir
68 } // namespace onert
69
70 #endif // __ONERT_IR_OPERATION_H__