Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / runtime / onert / backend / cpu / Backend.h
1 /*
2  * Copyright (c) 2019 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_BACKEND_CPU_BACKEND_H__
18 #define __ONERT_BACKEND_CPU_BACKEND_H__
19
20 #include "Config.h"
21 #include "ConstantInitializer.h"
22 #include "KernelGenerator.h"
23
24 #include <backend/Backend.h>
25
26 #include <memory>
27
28 namespace onert
29 {
30 namespace backend
31 {
32 namespace cpu
33 {
34
35 class Backend : public ::onert::backend::Backend
36 {
37 public:
38   Backend() : _config{std::make_shared<Config>()} {}
39
40   std::shared_ptr<IConfig> config() const override { return _config; }
41
42   std::unique_ptr<BackendContext> newContext(const ir::Graph &graph,
43                                              const std::shared_ptr<custom::IKernelBuilder> &kb,
44                                              bool) const override
45   {
46     const auto &operands = graph.operands();
47     const auto &operations = graph.operations();
48     auto context = std::make_unique<BackendContext>(this, &graph);
49     auto tb = std::make_shared<TensorBuilder>();
50     context->tensor_builder = tb;
51     context->constant_initializer = std::make_shared<ConstantInitializer>(operands, tb);
52     context->kernel_gen = std::make_shared<KernelGenerator>(operands, operations, tb, kb);
53     context->tensor_register = nullptr;
54     context->optimizer = nullptr;
55     return context;
56   }
57
58 private:
59   std::shared_ptr<IConfig> _config;
60 };
61
62 } // namespace cpu
63 } // namespace backend
64 } // namespace onert
65
66 #endif // __ONERT_BACKEND_CPU_BACKEND_H__