aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/hlo_module.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/compiler/xla/service/hlo_module.cc')
-rw-r--r--tensorflow/compiler/xla/service/hlo_module.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/tensorflow/compiler/xla/service/hlo_module.cc b/tensorflow/compiler/xla/service/hlo_module.cc
index 659f3d8c26..d9c223fbba 100644
--- a/tensorflow/compiler/xla/service/hlo_module.cc
+++ b/tensorflow/compiler/xla/service/hlo_module.cc
@@ -174,12 +174,6 @@ string HloModule::ToString(bool include_large_constants) const {
std::ostringstream s;
s << "HloModule " << name() << ":\n\n";
for (const HloComputation* computation : MakeComputationPostOrder()) {
- // Fusion computations are emitted with their fusion instruction and
- // therefore don't need to be emitted as a separate comptutation in the
- // module.
- if (computation->IsFusionComputation()) {
- continue;
- }
if (computation == entry_computation()) {
s << "ENTRY ";
}