From 7fbfcc52a4a474849c9e84d145c540750345a010 Mon Sep 17 00:00:00 2001 From: Frederic Bastien Date: Tue, 6 Oct 2020 11:01:41 -0700 Subject: [PATCH] Better warning. With that we can just to replay_computation directly for further analysis. --- tensorflow/compiler/xla/service/hlo_pass_fix.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tensorflow/compiler/xla/service/hlo_pass_fix.h b/tensorflow/compiler/xla/service/hlo_pass_fix.h index 1de231a9a86..1533c53ba45 100644 --- a/tensorflow/compiler/xla/service/hlo_pass_fix.h +++ b/tensorflow/compiler/xla/service/hlo_pass_fix.h @@ -48,7 +48,8 @@ class HloPassFix : public Pass { ++iteration_count; if (iteration_count == kLimit) { VLOG(1) << "Unexpectedly high number of iterations in HLO passes '" - << Pass::name() << "' exiting fixed point loop."; + << Pass::name() << "' for module '" << module->name() + << "'. Exiting fixed point loop."; // Return false in case this is fixed point is nested. return false; }