summaryrefslogtreecommitdiff
path: root/runtime/onert/backend/acl_cl/Backend.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/onert/backend/acl_cl/Backend.h')
-rw-r--r--runtime/onert/backend/acl_cl/Backend.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/onert/backend/acl_cl/Backend.h b/runtime/onert/backend/acl_cl/Backend.h
index 945ad83bb..301ded01f 100644
--- a/runtime/onert/backend/acl_cl/Backend.h
+++ b/runtime/onert/backend/acl_cl/Backend.h
@@ -46,8 +46,10 @@ public:
{
const auto &graph = *data.graph;
const auto &operands = data.graph->operands();
+ const auto is_linear_executor = data.is_linear_executor;
+
auto context = std::make_unique<acl_cl::BackendContext>(this, std::move(data));
- auto tm = createTensorManager(data.is_linear_executor);
+ auto tm = createTensorManager(is_linear_executor);
auto tr = std::make_shared<acl_common::AclTensorRegistry<TensorManager>>(tm);
auto tb = std::make_shared<TensorBuilder>(operands, tm);
context->tensor_registry = tr;