This small change in the default number of processors for linear algebra

(use all, not half) was present in v.6.5 but it has disappeared since.
If there are good reasons not to revert to 6.5 behavior, please close it
This commit is contained in:
giannozz 2020-03-04 17:01:15 +01:00
parent 63898c8803
commit 72f2cb7952
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ SUBROUTINE laxlib_start_drv( ndiag_, my_world_comm, parent_comm, do_distr_diag_i
! 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_nproc, 1 )
#else
nproc_ortho_try = 1
#endif