diff --git a/tensorflow/compiler/xla/service/hlo_evaluator.cc b/tensorflow/compiler/xla/service/hlo_evaluator.cc index 3dd6d82784f..ae8f49df4b4 100644 --- a/tensorflow/compiler/xla/service/hlo_evaluator.cc +++ b/tensorflow/compiler/xla/service/hlo_evaluator.cc @@ -274,6 +274,13 @@ StatusOr HloEvaluator::Evaluate( engine_.seed(seed_); TF_RETURN_IF_ERROR(computation.Accept(this)); + + if (VLOG_IS_ON(100)) { + for (const HloInstruction* instr : computation.instructions()) { + VLOG(100) << instr->name() << " = " << GetEvaluatedLiteralFor(instr); + } + } + return GetEvaluatedLiteralFor(computation.root_instruction()).Clone(); }