Imported Upstream version 1.25.0
[platform/core/ml/nnfw.git] / runtime / onert / core / include / odc / QuantizeManager.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_ODC_QUANTIZE_MANAGER_H__
18 #define __ONERT_ODC_QUANTIZE_MANAGER_H__
19
20 #include "IQuantizer.h"
21
22 #include <functional>
23 #include <string>
24
25 namespace onert
26 {
27 namespace odc
28 {
29
30 class Quantize;
31
32 class QuantizeManager
33 {
34 public:
35   // Non-copyable
36   QuantizeManager() = delete;
37   QuantizeManager(const std::string &model_path) : _model_path(model_path) {}
38   QuantizeManager(QuantizeManager const &) = delete;
39   QuantizeManager &operator=(QuantizeManager const &) = delete;
40
41 public:
42   /**
43    * @brief Set model path to export quantized model
44    *
45    * @param model_path  Model path to export quantized model
46    */
47   void exportModelPath(const std::string &model_path) { _export_model_path = model_path; }
48
49   /**
50    * @brief   Get model path to export quantized model
51    *
52    * @return  Model path to export quantized model
53    */
54   std::string &exportModelPath() { return _export_model_path; }
55
56   /**
57    * @brief Set quantize type
58    *
59    * @param is_q16  true if q16, false if q8
60    *
61    * @todo  Support more general quantize type
62    */
63   void quantizeType(bool is_q16) { _is_q16 = is_q16; }
64
65   /**
66    * @brief  Quantize model
67    *
68    * @return  true if success, otherwise false
69    */
70   bool quantize();
71
72 private:
73   std::string _model_path = "";
74   std::string _export_model_path = "";
75   bool _is_q16 = false;
76 };
77
78 } // namespace odc
79 } // namespace onert
80
81 #endif // __ONERT_ODC_QUANTIZE_MANAGER_H__