summaryrefslogtreecommitdiff
path: root/source/application/api/common/source/Model.cc
diff options
context:
space:
mode:
authorRichard Burton <richard.burton@arm.com>2023-05-30 17:40:39 +0100
committerRichard Burton <richard.burton@arm.com>2023-05-30 17:40:39 +0100
commitdf88c5de6e3e7ff4d7f4519235f076f60fb3d896 (patch)
treed71869c5bfc0be586dd17c755cd5493f3142525d /source/application/api/common/source/Model.cc
parent1e6c6943ab3b937da22591fa771fcc2dc185c64f (diff)
downloadml-embedded-evaluation-kit-df88c5de6e3e7ff4d7f4519235f076f60fb3d896.tar.gz
MLECO-4065 MLECO-4066: Updating to 23.05 dependencies
* Update dependencies to 23.05 versions * Fix for a break caused by changes in TensorFlow Lite Micro * Update release notes Signed-off-by: Richard Burton <richard.burton@arm.com> Change-Id: Id2f60ea574aab982911125bdcb513adb8edc723d
Diffstat (limited to 'source/application/api/common/source/Model.cc')
-rw-r--r--source/application/api/common/source/Model.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/application/api/common/source/Model.cc b/source/application/api/common/source/Model.cc
index 7de6fde..80c10b7 100644
--- a/source/application/api/common/source/Model.cc
+++ b/source/application/api/common/source/Model.cc
@@ -1,5 +1,5 @@
/*
- * SPDX-FileCopyrightText: Copyright 2021-2022 Arm Limited and/or its affiliates
+ * SPDX-FileCopyrightText: Copyright 2021-2023 Arm Limited and/or its affiliates
* <open-source-office@arm.com> SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -199,7 +199,7 @@ void arm::app::Model::LogInterpreterInfo()
for (size_t i = 0; i < nOperators; ++i) {
const tflite::Operator* op = subgraph->operators()->Get(i);
const tflite::OperatorCode* opcode = opcodes->Get(op->opcode_index());
- const TfLiteRegistration* reg = nullptr;
+ const TfLiteRegistration_V1* reg = nullptr;
tflite::GetRegistrationFromOpCode(opcode, this->GetOpResolver(), &reg);
std::string opName;