ONE - On-device Neural Engine
Loading...
Searching...
No Matches
onert::backend::builtin::Backend Class Reference

#include <Backend.h>

Collaboration diagram for onert::backend::builtin::Backend:

Public Member Functions

 Backend ()
 
std::shared_ptr< IConfigconfig () const override
 
std::unique_ptr< onert::backend::BackendContextnewContext (ContextData &&data) const override
 
std::unique_ptr< backend::train::TrainableBackendContextnewContext (backend::train::TrainableContextData &&tdata) const override
 
- Public Member Functions inherited from onert::backend::Backend
virtual ~Backend ()=default
 
- Public Member Functions inherited from onert::backend::train::ITrainableBackend
virtual ~ITrainableBackend ()=default
 

Detailed Description

Definition at line 41 of file Backend.h.

Constructor & Destructor Documentation

◆ Backend()

onert::backend::builtin::Backend::Backend ( )
inline

Definition at line 44 of file Backend.h.

44: _config{std::make_shared<Config>()} {}

Member Function Documentation

◆ config()

std::shared_ptr< IConfig > onert::backend::builtin::Backend::config ( ) const
inlineoverridevirtual

Implements onert::backend::Backend.

Definition at line 46 of file Backend.h.

46{ return _config; }

◆ newContext() [1/2]

std::unique_ptr< backend::train::TrainableBackendContext > onert::backend::builtin::Backend::newContext ( backend::train::TrainableContextData &&  tdata) const
inlineoverridevirtual

Implements onert::backend::train::ITrainableBackend.

Definition at line 78 of file Backend.h.

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 }

◆ newContext() [2/2]

std::unique_ptr< onert::backend::BackendContext > onert::backend::builtin::Backend::newContext ( ContextData &&  data) const
inlineoverridevirtual

Implements onert::backend::Backend.

Definition at line 48 of file Backend.h.

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 }

The documentation for this class was generated from the following file: