aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/hlo_computation.h
diff options
context:
space:
mode:
authorGravatar Chris Leary <leary@google.com>2017-11-01 16:52:23 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-11-01 16:55:58 -0700
commit3b0414872f08cfabbf71a495ad661a7c892c76d8 (patch)
tree62e027ab042f6a297bade283f808b4b51b02ae12 /tensorflow/compiler/xla/service/hlo_computation.h
parent7b86d87d225b19c47f11763e60a2e1ffe71d6a33 (diff)
[XLA] Allow full dumps of constant values via boolean parameter.
PiperOrigin-RevId: 174257660
Diffstat (limited to 'tensorflow/compiler/xla/service/hlo_computation.h')
-rw-r--r--tensorflow/compiler/xla/service/hlo_computation.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tensorflow/compiler/xla/service/hlo_computation.h b/tensorflow/compiler/xla/service/hlo_computation.h
index f4edd17501..b44a9e417a 100644
--- a/tensorflow/compiler/xla/service/hlo_computation.h
+++ b/tensorflow/compiler/xla/service/hlo_computation.h
@@ -138,7 +138,8 @@ class HloComputation {
void UniquifyName(NameUniquer* name_uniquer);
// Return a string representation of the computation.
- string ToString(int nested_level = 0) const;
+ string ToString(int nested_level = 0,
+ bool include_large_constants = false) const;
// Returns a serialized representation of this computation.
HloComputationProto ToProto() const;