aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/tpu/profiler/op_profile.proto
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/tpu/profiler/op_profile.proto')
-rw-r--r--tensorflow/contrib/tpu/profiler/op_profile.proto10
1 files changed, 6 insertions, 4 deletions
diff --git a/tensorflow/contrib/tpu/profiler/op_profile.proto b/tensorflow/contrib/tpu/profiler/op_profile.proto
index feb177a7da..68cf510e71 100644
--- a/tensorflow/contrib/tpu/profiler/op_profile.proto
+++ b/tensorflow/contrib/tpu/profiler/op_profile.proto
@@ -4,12 +4,14 @@ package tensorflow.tpu.op_profile;
// Profile is the top-level data that summarizes a program.
message Profile {
+ reserved 2;
+ reserved "by_program_structure";
+ reserved 3;
+ reserved "per_program";
// Root of a profile broken down by instruction category.
Node by_category = 1;
- // Root of a profile broken down by program structure.
- Node by_program_structure = 2;
- // Per program profile, indexed by hlo module name of the program.
- map<string, Node> per_program = 3;
+ // Root of a profile broken down by program.
+ Node by_program = 4;
}
// An entry in the profile tree. (An instruction, or set of instructions).