Default maximum number of processor for linear algebra set to the number of

available processors and not half that much (if using ScaLAPACK), as proposed
by Ye Luo in issue #8.
This commit is contained in:
giannozz 2019-10-22 16:08:36 +02:00
parent 14d4f575cb
commit b95638c980
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ CONTAINS
! no command-line argument -ndiag N or -northo N is present
! insert here custom architecture specific default definitions
#if defined __SCALAPACK
nproc_ortho_try = MAX( parent_nproc/2, 1 )
nproc_ortho_try = MAX( parent_nprocs, 1 )
#else
nproc_ortho_try = 1
#endif