summaryrefslogtreecommitdiff
path: root/runtime/onert/core/src/compiler/ExecutorFactory.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/onert/core/src/compiler/ExecutorFactory.h')
-rw-r--r--runtime/onert/core/src/compiler/ExecutorFactory.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/onert/core/src/compiler/ExecutorFactory.h b/runtime/onert/core/src/compiler/ExecutorFactory.h
index 1e82b9838..418e5a764 100644
--- a/runtime/onert/core/src/compiler/ExecutorFactory.h
+++ b/runtime/onert/core/src/compiler/ExecutorFactory.h
@@ -22,6 +22,7 @@
#include "backend/ITensor.h"
#include "exec/IExecutor.h"
#include "ir/LoweredGraph.h"
+#include "TensorBuilders.h"
namespace onert
{
@@ -48,6 +49,8 @@ private:
static std::vector<std::shared_ptr<backend::ITensor>>
initializeModelIOTensors(ir::LoweredGraph &lowered_graph,
const ir::OperandIndexSequence &indices);
+ static void prepareExternalTensors(ir::LoweredGraph &lowered_graph,
+ TensorBuilders &tensor_builders);
static exec::IExecutor *
createLinearExecutor(std::unique_ptr<ir::LoweredGraph> lowered_graph,
const compiler::CompilerOptions &options,