Skip to content

Commit

Permalink
Fix bad merge
Browse files Browse the repository at this point in the history
  • Loading branch information
andresovela committed Mar 4, 2025
1 parent 9d3d685 commit 505b5f9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 133 deletions.
132 changes: 0 additions & 132 deletions tensorflow/lite/micro/micro_profiler.cc

This file was deleted.

5 changes: 4 additions & 1 deletion tensorflow/lite/micro/micro_profiler.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,10 @@ class MicroProfiler : public MicroProfilerInterface {
}

// Clears all the events that have been currently profiled.
void ClearEvents();
void ClearEvents() {
num_events_ = 0;
num_tag_groups_ = 0;
}

// Returns the sum of the ticks taken across all the events. This number
// is only meaningful if all of the events are disjoint (the end time of
Expand Down

0 comments on commit 505b5f9

Please sign in to comment.