• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1syntax = "proto3";
2
3package third_party.tensorflow.core.debug;
4
5// Encapsulates per-event data related to debugging.
6message DebuggerEventMetadata {
7  string device = 1;
8  int32 output_slot = 2;
9  int32 num_chunks = 3;
10  int32 chunk_index = 4;
11};
12