ONE - On-device Neural Engine
Loading...
Searching...
No Matches
Backend.h
Go to the documentation of this file.
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 __ONERT_BACKEND_BUILTIN_BACKEND_H__
18#define __ONERT_BACKEND_BUILTIN_BACKEND_H__
19
20#include "BackendContext.h"
21#include "Config.h"
22#include "KernelGenerator.h"
23#include "TensorBuilder.h"
24#include "Tensor.h"
25#include "train/BackendContext.h"
26#include "train/KernelGenerator.h"
27#include "train/TensorRegistry.h"
28
29#include <backend/Backend.h>
31
32#include <memory>
33
34namespace onert
35{
36namespace backend
37{
38namespace builtin
39{
40
42{
43public:
44 Backend() : _config{std::make_shared<Config>()} {}
45
46 std::shared_ptr<IConfig> config() const override { return _config; }
47
48 std::unique_ptr<onert::backend::BackendContext> newContext(ContextData &&data) const override
49 {
50 auto context = std::make_unique<BackendContext>(this, std::move(data));
51 // ControlFlow backend may not build tensors for itself because the backend's operation uses
52 // tensors of other baceknd instead
53 // But the backend builds tensors in case of that the controlflow operation may have constant
54 // input or that consecutive controflow operations exist. We have to make them not to be built
55 // later
56 // 1. Constant input
57 // These tensors cannot be dynamic tensor, so let's do it as follows:
58 // - always skip copying
59 // - if it is operation's input in child subgraph: register "use" as constant input of the
60 // operations in child subgraph
61 // - if it is child subgraph's output: register "use" as constant input of the operations
62 // using it
63 // 2. Consecutive controflow operation's intermediate tensor
64 // These tensors can be dynamic tensor and this is complicated to support without copying. But
65 // there is no such case until now, let's support it later
66 // TODO Remove TensorBuilder and ConstantInitializer
67 // TODO Support Consecutive controflow operation's intermediate tensor
68 auto tr = std::make_shared<TensorRegistry>();
69 auto tb = std::make_shared<TensorBuilder>(tr);
70 context->tensor_registry = tr;
71 context->tensor_builder = tb;
72 context->kernel_gen = std::make_shared<KernelGenerator>(
73 *context->graph(), tb->dynamicTensorManager(), tr, context->external_context());
74 return context;
75 }
76
77 std::unique_ptr<backend::train::TrainableBackendContext>
79 {
80 const auto &tgraph = *tdata.tgraph;
81 auto tr = std::make_shared<train::TensorRegistry>();
82 // TODO Create TensorBuilder if necessary
83 auto tdata_ptr = std::make_unique<backend::train::TrainableContextData>(std::move(tdata));
84 auto context = std::make_unique<train::BackendContext>(this, std::move(tdata_ptr), tr);
85
86 context->kernel_gen =
87 std::make_shared<train::KernelGenerator>(tgraph, tr, context->external_context());
88 return context;
89 }
90
91private:
92 std::shared_ptr<IConfig> _config;
93};
94
95} // namespace builtin
96} // namespace backend
97} // namespace onert
98
99#endif // __ONERT_BACKEND_BUILTIN_BACKEND_H__
std::shared_ptr< IConfig > config() const override
Definition Backend.h:46
std::unique_ptr< backend::train::TrainableBackendContext > newContext(backend::train::TrainableContextData &&tdata) const override
Definition Backend.h:78
std::unique_ptr< onert::backend::BackendContext > newContext(ContextData &&data) const override
Definition Backend.h:48