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