#include <Backend.h>
Definition at line 35 of file Backend.h.
◆ Backend()
onert::backend::trix::Backend::Backend |
( |
| ) |
|
|
inline |
Definition at line 38 of file Backend.h.
38: _config{std::make_shared<Config>()} {}
◆ config()
std::shared_ptr< IConfig > onert::backend::trix::Backend::config |
( |
| ) |
const |
|
inlineoverridevirtual |
◆ newContext()
Implements onert::backend::Backend.
Definition at line 42 of file Backend.h.
43 {
45 auto context = std::make_unique<BackendContext>(this, std::move(data));
46 auto tr = std::make_shared<basic::TensorRegistry>();
47 auto tb = std::make_shared<TensorBuilder>(tr);
48 context->tensor_registry = tr;
49 context->tensor_builder = tb;
50 context->kernel_gen = std::make_shared<KernelGenerator>(graph, tb, tr, context->dev_context());
51 return context;
52 }
The documentation for this class was generated from the following file: