ONE - On-device Neural Engine
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Operation.h
Go to the documentation of this file.
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"
25
26namespace onert::ir
27{
28
29// NOTE Virtual inheritance is introduced because trainable operations inherit
30// `ITrainableOperation` and `Operation` which inherit `IOperation`.
31class Operation : virtual public IOperation
32{
33public:
34 // TODO Remove default parameter
35 Operation(OperandConstraint input_constr, const OperandIndexSequence &inputs,
36 const OperandIndexSequence &outputs,
38 explicit Operation(OperandConstraint input_constr,
40
41 Operation(const Operation &) = default;
42 Operation(Operation &&) = default;
43 Operation &operator=(const Operation &) = default;
45
46 virtual ~Operation();
47
48public:
49 void replaceInputs(const OperandIndex &from, const OperandIndex &to) override;
50 void replaceOutputs(const OperandIndex &from, const OperandIndex &to) override;
51 OperandIndexSequence &getInputs() { return _inputs; }
52 const OperandIndexSequence &getInputs() const override { return _inputs; }
53 const OperandIndexSequence &getOutputs() const override { return _outputs; }
54 // It's for only input/output tensors but const data.
55 void setInputs(const OperandIndexSequence &indexes);
56 void setOutputs(const OperandIndexSequence &indexes);
57
58private:
59 OperandConstraint _input_constr;
60 OperandConstraint _output_constr;
62 OperandIndexSequence _outputs;
63};
64
65} // namespace onert::ir
66
67#endif // __ONERT_IR_OPERATION_H__
static OperandConstraint createAny()
Operation & operator=(Operation &&)=default
void replaceOutputs(const OperandIndex &from, const OperandIndex &to) override
Definition Operation.cc:58
const OperandIndexSequence & getOutputs() const override
Definition Operation.h:53
const OperandIndexSequence & getInputs() const override
Definition Operation.h:52
Operation(Operation &&)=default
Operation & operator=(const Operation &)=default
void replaceInputs(const OperandIndex &from, const OperandIndex &to) override
Definition Operation.cc:53
OperandIndexSequence & getInputs()
Definition Operation.h:51
Operation(const Operation &)=default
void setInputs(const OperandIndexSequence &indexes)
Definition Operation.cc:39
void setOutputs(const OperandIndexSequence &indexes)
Definition Operation.cc:46