aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/profiling/profile_buffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/lite/profiling/profile_buffer.h')
-rw-r--r--tensorflow/contrib/lite/profiling/profile_buffer.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/tensorflow/contrib/lite/profiling/profile_buffer.h b/tensorflow/contrib/lite/profiling/profile_buffer.h
index 3bfe02571b..b2f565376c 100644
--- a/tensorflow/contrib/lite/profiling/profile_buffer.h
+++ b/tensorflow/contrib/lite/profiling/profile_buffer.h
@@ -37,9 +37,9 @@ struct ProfileEvent {
// Label of the event. This usually describes the event.
const char* tag;
// Timestamp in microseconds when the event began.
- int64_t begin_timestamp_ms;
+ int64_t begin_timestamp_us;
// Timestamp in microseconds when the event ended.
- int64_t end_timestamp_ms;
+ int64_t end_timestamp_us;
// The field containing the type of event. This must be one of the event types
// in EventType.
EventType event_type;
@@ -79,8 +79,8 @@ class ProfileBuffer {
event_buffer_[index].tag = tag;
event_buffer_[index].event_type = event_type;
event_buffer_[index].event_metadata = event_metadata;
- event_buffer_[index].begin_timestamp_ms = timestamp;
- event_buffer_[index].end_timestamp_ms = 0;
+ event_buffer_[index].begin_timestamp_us = timestamp;
+ event_buffer_[index].end_timestamp_us = 0;
current_index_++;
return index;
}
@@ -103,7 +103,7 @@ class ProfileBuffer {
}
int event_index = event_handle % max_size;
- event_buffer_[event_index].end_timestamp_ms = NowMicros();
+ event_buffer_[event_index].end_timestamp_us = NowMicros();
}
// Returns the size of the buffer.