aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/debug/debugger_event_metadata.proto
blob: 8bdedb1a508b7c579eadb7c02757c551ca5dcfbb (plain)
1
2
3
4
5
6
7
8
9
10
11
syntax = "proto3";

package third_party.tensorflow.core.debug;

// Encapsulates per-event data related to debugging.
message DebuggerEventMetadata {
  string device = 1;
  int32 output_slot = 2;
  int32 num_chunks = 3;
  int32 chunk_index = 4;
};