ONE - On-device Neural Engine
Loading...
Searching...
No Matches
BackendContext.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2023 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_TRAIN_BACKEND_CONTEXT_H__
18#define __ONERT_BACKEND_TRAIN_BACKEND_CONTEXT_H__
19
21
22#include "ExternalContext.h"
23#include "KernelGenerator.h"
24#include "TensorBuilder.h"
25
26namespace onert
27{
28namespace backend
29{
30namespace train
31{
32
33// TODO Remove this class if ExecutorFactory creates trainable context only once instead of
34// replacing BackendContext
36{
37public:
39 std::shared_ptr<backend::ITensorRegistry> tensor_registry = nullptr)
41 {
42 }
43
44 backend::ITensorRegistry *genTensors() override { return nullptr; }
45
47};
48
49// TODO Unify TensorBuilder
50// TODO Unify TensorRegistry
52{
53public:
54 BackendContext(const ITrainableBackend *backend, std::unique_ptr<TrainableContextData> &&tdata,
55 std::shared_ptr<backend::train::ITensorRegistry> tensor_registry = nullptr,
56 std::shared_ptr<TensorBuilder> tensor_builder = nullptr,
57 std::unique_ptr<exec::train::optimizer::Optimizer> optimizer = nullptr,
58 std::shared_ptr<KernelGenerator> kernel_gen = nullptr)
60 kernel_gen{kernel_gen}, _external_context(new ExternalContext),
61 _tensor_builder{tensor_builder}, _optimizer{std::move(optimizer)}
62 {
63 }
64 BackendContext(const BackendContext &) = delete;
65 ~BackendContext() = default;
66
67public:
69
70public:
71 FunctionMap gen() override;
72
73private:
74 void planForwardTensors();
75 void planBackwardTensors();
76 void planLayerScopeTensors(const FunctionMap &fn_map);
77
78public:
79 std::shared_ptr<ExternalContext> external_context() { return _external_context; }
80
81 const exec::train::optimizer::Optimizer *optimizer() const { return _optimizer.get(); }
82
83private:
84 FunctionMap generateFunctionMap();
85
86public:
87 // TODO Make it private
88 std::shared_ptr<KernelGenerator> kernel_gen;
89
90private:
91 // NOTE ruy context has a thread pool, and when multiple ruy contexts are created,
92 // the thread pool is also created in duplicate
93 // TODO Create one ruy context for session
94 std::shared_ptr<ExternalContext> _external_context;
95
96private:
97 std::shared_ptr<TensorBuilder> _tensor_builder;
98
99private:
100 std::unique_ptr<exec::train::optimizer::Optimizer> _optimizer;
101};
102
103} // namespace train
104} // namespace backend
105} // namespace onert
106
107#endif // __ONERT_BACKEND_TRAIN_BACKEND_CONTEXT_H__
std::shared_ptr< ITensorRegistry > tensor_registry
const ContextData & data() const
const Backend * backend() const
std::shared_ptr< ExternalContext > external_context()
BackendContext & operator=(const BackendContext &)=delete
std::shared_ptr< KernelGenerator > kernel_gen
BackendContext(const ITrainableBackend *backend, std::unique_ptr< TrainableContextData > &&tdata, std::shared_ptr< backend::train::ITensorRegistry > tensor_registry=nullptr, std::shared_ptr< TensorBuilder > tensor_builder=nullptr, std::unique_ptr< exec::train::optimizer::Optimizer > optimizer=nullptr, std::shared_ptr< KernelGenerator > kernel_gen=nullptr)
const exec::train::optimizer::Optimizer * optimizer() const
BackendContext(const BackendContext &)=delete
backend::ITensorRegistry * genTensors() override
backend::FunctionMap genKernels() override
DummyBackendContext(const Backend *backend, ContextData &&data, std::shared_ptr< backend::ITensorRegistry > tensor_registry=nullptr)
std::shared_ptr< ITensorRegistry > tensor_registry()
Base class for all optimizers.
Definition Optimizer.h:43
std::unordered_map< ir::OperationIndex, std::unique_ptr< exec::train::TrainableFnSequence > > FunctionMap
std::unordered_map< ir::OperationIndex, std::unique_ptr< exec::FunctionSequence > > FunctionMap