312749f83443f74e30a20ade61a8cd06bed58710
[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       FuseBCQ,
36       FuseInstanceNorm,
37       ResolveCustomOpAdd,
38       ResolveCustomOpBatchMatMul,
39       ResolveCustomOpMatMul,
40       QuantizeDequantizeWeights,
41       QuantizeWithMinMax,
42     };
43
44     enum AlgorithmParameters
45     {
46       Quantize_input_dtype,
47       Quantize_output_dtype,
48       Quantize_granularity // layer-wise or channel-wise
49     };
50
51     virtual ~Options() = default;
52
53     virtual void enable(Algorithm) = 0;
54     virtual bool query(Algorithm) = 0;
55     virtual void param(AlgorithmParameters, const std::string &) = 0;
56     virtual const std::string param(AlgorithmParameters) const = 0;
57   };
58
59 public:
60   // TODO maybe caller can provide Options as ctor parameters
61   Options *options(void);
62
63 public:
64   void optimize(loco::Graph *) const;
65
66   void quantize(loco::Graph *) const;
67
68 private:
69   std::unique_ptr<Options> _options;
70 };
71
72 } // namespace luci
73
74 #endif // __LUCI_CIRCLE_OPTIMIZER_H__