e888e4a1218ee8b853b38d5fd49af69b2a0a121f
[platform/core/ml/nnfw.git] / compiler / circle-quantizer / include / CircleExpContract.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 __CIRCLEQUANTIZER_CIRCLEXPCONTRACT_H__
18 #define __CIRCLEQUANTIZER_CIRCLEXPCONTRACT_H__
19
20 #include <loco.h>
21 #include <luci/CircleExporter.h>
22 #include <luci/IR/Module.h>
23
24 #include <memory>
25 #include <string>
26
27 struct CircleExpContract : public luci::CircleExporter::Contract
28 {
29 public:
30   CircleExpContract(luci::Module *module, const std::string &filename)
31       : _module(module), _filepath(filename)
32   {
33     // NOTHING TO DO
34   }
35   virtual ~CircleExpContract() = default;
36
37 public:
38   loco::Graph *graph(void) const final { return nullptr; }
39   luci::Module *module(void) const final { return _module; };
40
41 public:
42   bool store(const char *ptr, const size_t size) const final;
43
44 private:
45   luci::Module *_module;
46   const std::string _filepath;
47 };
48
49 #endif // __CIRCLEQUANTIZER_CIRCLEXPCONTRACT_H__