[QE-developers] bug of "check_para_diag"

Satomichi Nishihara nisihara225 at gmail.com
Mon Apr 9 16:10:16 CEST 2018


Dear Developers of QE,

in the files of lr_readin.f90, lr_setup_nscf.f90 and setup_nscf.f90,
usage of check_para_diag is incorrect.

INCORRECT CODE:
#if defined(__MPI)
  IF ( use_para_diag )  CALL check_para_diag( nbnd )
#else
  use_para_diag = .FALSE.
#endif 

CORRECT CODE:
#if defined(__MPI)
  use_para_diag = check_para_diag( nbnd )
#else
  use_para_diag = .FALSE.
#endif

Regards,
Satomichi

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.quantum-espresso.org/pipermail/developers/attachments/20180409/e19679ac/attachment.html>


More information about the developers mailing list