psb_penv-mod.F90

Fixed call to BLACS_SET.
psblas3-type-indexed
Salvatore Filippone 17 years ago
parent 70525a4efe
commit f9c4333f26

@ -4957,10 +4957,10 @@ contains
subroutine psb_set_coher(ictxt,isvch) subroutine psb_set_coher(ictxt,isvch)
integer :: ictxt, isvch integer :: ictxt, isvch
! Ensure global coherence for convergence checks. ! Ensure global repeatability for convergence checks.
#if !defined(HAVE_ESSL_BLACS) #if !defined(HAVE_ESSL_BLACS)
Call blacs_get(ictxt,16,isvch) Call blacs_get(ictxt,15,isvch)
Call blacs_set(ictxt,16,1) Call blacs_set(ictxt,15,1)
#else #else
! Do nothing: ESSL does coherence by default, ! Do nothing: ESSL does coherence by default,
! and does not handle req=16 ! and does not handle req=16
@ -4970,10 +4970,10 @@ contains
integer :: ictxt, isvch integer :: ictxt, isvch
! Ensure global coherence for convergence checks. ! Ensure global coherence for convergence checks.
#if !defined(HAVE_ESSL_BLACS) #if !defined(HAVE_ESSL_BLACS)
Call blacs_set(ictxt,16,isvch) Call blacs_set(ictxt,15,isvch)
#else #else
! Do nothing: ESSL does coherence by default, ! Do nothing: ESSL does coherence by default,
! and does not handle req=16 ! and does not handle req=15
#endif #endif
end subroutine psb_restore_coher end subroutine psb_restore_coher
subroutine psb_get_mpicomm(ictxt,comm) subroutine psb_get_mpicomm(ictxt,comm)

Loading…
Cancel
Save