File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -77,8 +77,8 @@ class HloPassFix : public Pass {
7777 VLOG (3 ) << " changed_this_iteration: " << changed_this_iteration;
7878 ++iteration_count;
7979 if (iteration_count == kIterationLimit ) {
80- LOG (WARNING ) << " Unexpectedly high number of iterations in HLO passes, "
81- " exiting fixed point loop." ;
80+ VLOG ( 1 ) << " Unexpectedly high number of iterations in HLO passes, "
81+ " exiting fixed point loop." ;
8282 // Return false in case this is fixed point is nested.
8383 return false ;
8484 }
@@ -99,9 +99,9 @@ class HloPassFix : public Pass {
9999 << !run_state->changed_last_iteration .empty ();
100100 run_state->IncrementIteration ();
101101 if (run_state->iteration == kIterationLimit ) {
102- LOG (WARNING ) << " Unexpectedly high number of iterations in HLO passes '"
103- << Pass::name () << " ' for module '" << module ->name ()
104- << " '. Exiting fixed point loop." ;
102+ VLOG ( 1 ) << " Unexpectedly high number of iterations in HLO passes '"
103+ << Pass::name () << " ' for module '" << module ->name ()
104+ << " '. Exiting fixed point loop." ;
105105 // Clear changed and abort in case this is fixed point is nested.
106106 run_state->changed .clear ();
107107 break ;
You can’t perform that action at this time.
0 commit comments