summaryrefslogtreecommitdiff
path: root/source
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
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')
-rw-r--r--source/application/api/common/include/TensorFlowLiteMicro.hpp3
-rw-r--r--source/application/api/common/source/Model.cc4
2 files changed, 3 insertions, 4 deletions
diff --git a/source/application/api/common/include/TensorFlowLiteMicro.hpp b/source/application/api/common/include/TensorFlowLiteMicro.hpp
index 944ed4a..17dfd64 100644
--- a/source/application/api/common/include/TensorFlowLiteMicro.hpp
+++ b/source/application/api/common/include/TensorFlowLiteMicro.hpp
@@ -1,5 +1,5 @@
/*
- * SPDX-FileCopyrightText: Copyright 2021-2022 Arm Limited and/or its affiliates <open-source-office@arm.com>
+ * 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");
@@ -47,7 +47,6 @@
#include "tensorflow/lite/c/common.h"
#include "tensorflow/lite/micro/kernels/micro_ops.h"
-#include "tensorflow/lite/micro/tflite_bridge/op_resolver_bridge.h"
#include "tensorflow/lite/schema/schema_generated.h"
#include "tensorflow/lite/schema/schema_utils.h"
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;