aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/tpu
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-09-26 17:28:43 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-09-26 17:32:27 -0700
commite8ffb444411f20c435ac72a1beb866e39686fba0 (patch)
treed94432dc0e8d32b644f8b2d16ce25ea7efbc0568 /tensorflow/contrib/tpu
parent69650fff2b0f267162c987f35e2747be033a7d80 (diff)
internal change only
PiperOrigin-RevId: 214698827
Diffstat (limited to 'tensorflow/contrib/tpu')
-rw-r--r--tensorflow/contrib/tpu/profiler/op_profile.proto4
1 files changed, 3 insertions, 1 deletions
diff --git a/tensorflow/contrib/tpu/profiler/op_profile.proto b/tensorflow/contrib/tpu/profiler/op_profile.proto
index 68cf510e71..b25d06dda8 100644
--- a/tensorflow/contrib/tpu/profiler/op_profile.proto
+++ b/tensorflow/contrib/tpu/profiler/op_profile.proto
@@ -18,13 +18,15 @@ message Profile {
message Node {
string name = 1; // Semantics depend on contents.
Metrics metrics = 2; // May be omitted e.g. for fused instructions.
- repeated Node children = 3;
+ repeated Node children = 3; // Subjected to pruning.
// Details about what this node represents.
oneof contents {
InstructionCategory category = 4;
XLAInstruction xla = 5;
}
+
+ int32 num_children = 6; // Total number of children before pruning.
// A category of XLA instructions.
// name is a descriptive string, like "data formatting".
message InstructionCategory {