Skip to content

Commit

Permalink
Fix missing include
Browse files Browse the repository at this point in the history
  • Loading branch information
andresovela committed Nov 14, 2024
1 parent 534a5d2 commit 6b80c95
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tensorflow/lite/micro/micro_interpreter_graph.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ limitations under the License.
#include "tensorflow/lite/kernels/internal/compatibility.h"
#include "tensorflow/lite/micro/flatbuffer_utils.h"
#include "tensorflow/lite/micro/memory_helpers.h"
#include "tensorflow/lite/micro/micro_context.h"
#include "tensorflow/lite/micro/micro_log.h"
#include "tensorflow/lite/micro/micro_profiler.h"
#include "tensorflow/lite/schema/schema_generated.h"
Expand Down Expand Up @@ -227,8 +228,8 @@ TfLiteStatus MicroInterpreterGraph::InvokeSubgraph(int subgraph_idx) {
if (invoke_status != kTfLiteOk) {
if (invoke_status != kTfLiteAbort) {
MicroPrintf("Node %s (number %d) failed to invoke with status %d",
OpNameFromRegistration(registration), current_operator_index_,
invoke_status);
OpNameFromRegistration(registration),
current_operator_index_, invoke_status);
}
return invoke_status;
}
Expand Down

0 comments on commit 6b80c95

Please sign in to comment.