From 97dde7e04e8c67524c3cee1ecdcfc09b24609c32 Mon Sep 17 00:00:00 2001 From: Jens Elofsson Date: Wed, 8 Sep 2021 16:20:08 +0200 Subject: Update call to MicroInterpreter to be in line with upstream Change-Id: Ib69b8c0a9af482408f2108ea13c682afabb9f0c7 --- applications/inference_process/src/inference_process.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- cgit v1.2.1