Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1510,12 +1510,9 @@ module subroutine block_gcr_solve(self, x, b)
end do
init_err = sum(initial_error)

if (log_at_level( log_level_info )) then
! Only compute the norm if we are going to write it
write( log_scratch_space, '(A,E15.8,":",E15.8)' ) &
"BLOCK_GCR starting ... ||b|| = ", b%norm(),init_err
call log_event(log_scratch_space, LOG_LEVEL_INFO)
end if
write( log_scratch_space, '(A,E15.8)' ) &
"BLOCK_GCR starting ... ||b|| = ", init_err
call log_event(log_scratch_space, LOG_LEVEL_INFO)
end if

! Use special DDT to avoid CCE bug.
Expand Down
Loading