summaryrefslogtreecommitdiff
path: root/runtime/onert/backend/acl_cl
diff options
context:
space:
mode:
authorHyeongseok Oh <hseok82.oh@samsung.com>2023-04-12 15:42:02 +0900
committerHyeongseok Oh <hseok82.oh@samsung.com>2023-04-12 15:42:02 +0900
commit323663bb115ef625642391a5a8e9b35fee8b2ae3 (patch)
tree17e2a6b91535e6f53f4cacda5e4db6aa0303dd22 /runtime/onert/backend/acl_cl
parentc690d52bdd137ed6a17353aa7af35e8141ece77b (diff)
downloadnnfw-323663bb115ef625642391a5a8e9b35fee8b2ae3.tar.gz
nnfw-323663bb115ef625642391a5a8e9b35fee8b2ae3.tar.bz2
nnfw-323663bb115ef625642391a5a8e9b35fee8b2ae3.zip
Imported Upstream version 1.22.0upstream/1.22.0
Diffstat (limited to 'runtime/onert/backend/acl_cl')
-rw-r--r--runtime/onert/backend/acl_cl/KernelGenerator.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/onert/backend/acl_cl/KernelGenerator.cc b/runtime/onert/backend/acl_cl/KernelGenerator.cc
index e709286df..5b0ec92b7 100644
--- a/runtime/onert/backend/acl_cl/KernelGenerator.cc
+++ b/runtime/onert/backend/acl_cl/KernelGenerator.cc
@@ -256,7 +256,7 @@ void KernelGenerator::visit(const ir::operation::Concat &node)
auto output_tensor = _tensor_reg->getAclTensor(ofm_index);
std::vector<const ::arm_compute::ICLTensor *> input_tensors;
- for (auto &ifm_ind : input_indexes)
+ for (const auto &ifm_ind : input_indexes)
input_tensors.emplace_back(_tensor_reg->getAclTensor(ifm_ind)->handle());
std::unique_ptr<::arm_compute::IFunction> fn;