aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Elofsson <jens.elofsson@arm.com>2021-09-08 16:20:08 +0200
committerJens Elofsson <jens.elofsson@arm.com>2021-09-09 13:44:46 +0200
commit97dde7e04e8c67524c3cee1ecdcfc09b24609c32 (patch)
tree187bb219f35b7392926a1107ea7bbf07d07d1312
parent3bd342372638b185d097308445747a1a668fce01 (diff)
downloadethos-u-core-software-97dde7e04e8c67524c3cee1ecdcfc09b24609c32.tar.gz
Update call to MicroInterpreter to be in line with upstream
Change-Id: Ib69b8c0a9af482408f2108ea13c682afabb9f0c7
-rw-r--r--applications/inference_process/src/inference_process.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/inference_process/src/inference_process.cpp b/applications/inference_process/src/inference_process.cpp
index 09439f8..3aa2550 100644
--- a/applications/inference_process/src/inference_process.cpp
+++ b/applications/inference_process/src/inference_process.cpp
@@ -210,7 +210,7 @@ bool InferenceProcess::runJob(InferenceJob &job) {
tflite::ArmProfiler profiler;
#endif
- tflite::MicroInterpreter interpreter(model, resolver, tensorArena, tensorArenaSize, reporter, &profiler);
+ tflite::MicroInterpreter interpreter(model, resolver, tensorArena, tensorArenaSize, reporter, nullptr, &profiler);
// Allocate tensors
TfLiteStatus allocate_status = interpreter.AllocateTensors();