1// This proto describes the diagnostics for debugging profiling issues of
2// the TensorFlow profiler.
3syntax = "proto3";
4
5package tensorflow.profiler;
6
7message Diagnostics {
8  repeated string info = 1;
9  repeated string warnings = 2;
10  repeated string errors = 3;
11}
12