Imported Upstream version 1.9.0
[platform/core/ml/nnfw.git] / compiler / luci / pass / include / luci / CircleOptimizer.h
1 /*
2  * Copyright (c) 2020 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 __LUCI_CIRCLE_OPTIMIZER_H__
18 #define __LUCI_CIRCLE_OPTIMIZER_H__
19
20 #include <loco.h>
21
22 #include <string>
23 #include <vector>
24
25 namespace luci
26 {
27
28 class CircleOptimizer final
29 {
30 public:
31   struct Options
32   {
33     enum Algorithm
34     {
35       FuseBatchNormWithTConv,
36       FuseBCQ,
37       FuseInstanceNorm,
38       ResolveCustomOpAdd,
39       ResolveCustomOpBatchMatMul,
40       ResolveCustomOpMatMul,
41       QuantizeDequantizeWeights,
42       QuantizeWithMinMax,
43       Requantize,
44     };
45
46     enum AlgorithmParameters
47     {
48       Quantize_input_dtype,
49       Quantize_output_dtype,
50       Quantize_granularity // layer-wise or channel-wise
51     };
52
53     virtual ~Options() = default;
54
55     virtual void enable(Algorithm) = 0;
56     virtual bool query(Algorithm) = 0;
57     virtual void param(AlgorithmParameters, const std::string &) = 0;
58     virtual const std::string param(AlgorithmParameters) const = 0;
59   };
60
61 public:
62   // TODO maybe caller can provide Options as ctor parameters
63   Options *options(void);
64
65 public:
66   void optimize(loco::Graph *) const;
67
68   void quantize(loco::Graph *) const;
69
70 private:
71   std::unique_ptr<Options> _options;
72 };
73
74 } // namespace luci
75
76 #endif // __LUCI_CIRCLE_OPTIMIZER_H__