17#ifndef LUCI_INTERPRETER_CORE_RUNTIMEMODULE_H
18#define LUCI_INTERPRETER_CORE_RUNTIMEMODULE_H
20#include "core/RuntimeGraph.h"
39 _graphs.push_back(std::make_unique<RuntimeGraph>(
this, memory_manager));
40 return _graphs.back().get();
52 RuntimeGraph *getMainGraph()
const {
return _graphs[0].get(); }
54 EventNotifier *
const _event_notifier;
55 std::vector<std::unique_ptr<RuntimeGraph>> _graphs;
const std::vector< Tensor * > & getOutputTensors() const
const std::vector< Tensor * > & getInputTensors() const
const std::vector< Tensor * > & getOutputTensors() const
RuntimeGraph * addGraph(IMemoryManager *memory_manager)
const std::vector< Tensor * > & getInputTensors() const
EventNotifier * getEventNotifier() const
RuntimeModule(EventNotifier *event_notifier)