Imported Upstream version 1.25.0
[platform/core/ml/nnfw.git] / runtime / onert / core / include / ir / train / operation / UntrainableOperation.h
1 /*
2  * Copyright (c) 2023 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_TRAIN_OPERATION_UNTRAINABLE_OPERATION_H__
18 #define __ONERT_IR_TRAIN_OPERATION_UNTRAINABLE_OPERATION_H__
19
20 #include "ir/train/ITrainableOperation.h"
21
22 #include "ir/OperationVisitor.h"
23 #include "ir/train/TrainableOperationVisitor.h"
24
25 #include <type_traits>
26
27 namespace onert
28 {
29 namespace ir
30 {
31 namespace train
32 {
33 namespace operation
34 {
35
36 // `UntrainableOperation` wraps operations that are not yet supported for training.
37 // This class can be removed if all operations are supported for training.
38 template <typename OperationType,
39           typename = std::enable_if_t<std::is_base_of<Operation, OperationType>::value>>
40 class UntrainableOperation : public OperationType, public ITrainableOperation
41 {
42 public:
43   UntrainableOperation(const OperationType &operation) : OperationType{operation} {}
44   virtual ~UntrainableOperation() = default;
45
46 public:
47   std::unique_ptr<ITrainableOperation> clone() const override
48   {
49     return std::make_unique<UntrainableOperation<OperationType>>(*this);
50   }
51   void accept(OperationVisitor &v) const override { v.visit(*this); }
52   void accept(TrainableOperationVisitor &) const override
53   {
54     throw std::runtime_error(OperationType::name() + "operation is not trainable yet");
55   }
56 };
57
58 } // namespace operation
59 } // namespace train
60 } // namespace ir
61 } // namespace onert
62
63 #endif // __ONERT_IR_TRAIN_OPERATION_UNTRAINABLE_OPERATION_H__