aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/hlo_graph_dumper.cc
diff options
context:
space:
mode:
authorGravatar Justin Lebar <jlebar@google.com>2018-05-27 13:27:28 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-05-27 13:30:01 -0700
commita8b3027c404dfef87265a2856e982381f0f55cd3 (patch)
treec2ba8baca8e9d6b9cb5c38337bb8aed3b22b75b5 /tensorflow/compiler/xla/service/hlo_graph_dumper.cc
parentf2177855323f11e4f9620638e238691c57000373 (diff)
[XLA] Don't display metadata inline in HLO graph dump.
We only want to display it in the tooltip. PiperOrigin-RevId: 198235268
Diffstat (limited to 'tensorflow/compiler/xla/service/hlo_graph_dumper.cc')
-rw-r--r--tensorflow/compiler/xla/service/hlo_graph_dumper.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/compiler/xla/service/hlo_graph_dumper.cc b/tensorflow/compiler/xla/service/hlo_graph_dumper.cc
index 4bf89be441..a2cb21c09b 100644
--- a/tensorflow/compiler/xla/service/hlo_graph_dumper.cc
+++ b/tensorflow/compiler/xla/service/hlo_graph_dumper.cc
@@ -788,8 +788,8 @@ string HloDotDumper::DumpInstruction(const HloInstruction* instr) {
}
// Build the text that will be displayed inside the node.
string node_body = node_label;
- for (const string& s : {trivial_subcomputation, node_metadata,
- node_backend_config, extra_info, inlined_constants}) {
+ for (const string& s : {trivial_subcomputation, node_backend_config,
+ extra_info, inlined_constants}) {
if (!s.empty()) {
StrAppend(&node_body, "<br/>", s);
}