5c5041378e34d0ba976b2fda2af1bd6afc827198
[platform/core/ml/nnfw.git] / runtime / onert / backend / acl_cl / 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_ACL_CL_BACKEND_H__
18 #define __ONERT_BACKEND_ACL_CL_BACKEND_H__
19
20 #include <memory>
21 #include <backend/Backend.h>
22
23 #include "Config.h"
24 #include "ConstantInitializer.h"
25 #include "KernelGenerator.h"
26 #include "TensorManager.h"
27 #include "Optimizer.h"
28 #include "AclTensorRegistry.h"
29
30 namespace onert
31 {
32 namespace backend
33 {
34 namespace acl_cl
35 {
36
37 class Backend : public ::onert::backend::Backend
38 {
39 public:
40   Backend() : _config{std::make_shared<Config>()} {}
41
42   std::shared_ptr<IConfig> config() const override { return _config; }
43
44   std::unique_ptr<BackendContext> newContext(const ir::Graph &graph,
45                                              const std::shared_ptr<custom::IKernelBuilder> &,
46                                              bool is_linear_executor) const override
47   {
48     const auto &operands = graph.operands();
49     const auto &operations = graph.operations();
50     auto context = std::make_unique<BackendContext>(this, &graph);
51     auto tm = createTensorManager(is_linear_executor);
52     auto tr = std::make_shared<acl_common::AclTensorRegistry<TensorManager>>(tm);
53     auto tb = std::make_shared<TensorBuilder>(operands, tm, tr);
54     context->tensor_registry = tr;
55     context->tensor_builder = tb;
56     context->constant_initializer = std::make_shared<ConstantInitializer>(operands, tr);
57     context->kernel_gen = std::make_shared<KernelGenerator>(operands, operations, tb, tr);
58     context->tensor_register = nullptr;
59     context->optimizer = std::make_shared<Optimizer>(context.get());
60     return context;
61   }
62
63 private:
64   std::shared_ptr<IConfig> _config;
65 };
66
67 } // namespace acl_cl
68 } // namespace backend
69 } // namespace onert
70
71 #endif // __ONERT_BACKEND_ACL_CL_BACKEND_H__