mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-09-08 00:44:45 +02:00
36 lines
665 B
Fortran
36 lines
665 B
Fortran
use bitmasks
|
|
use f77_zmq
|
|
|
|
|
|
! ---
|
|
|
|
BEGIN_PROVIDER [ integer, nthreads_davidson ]
|
|
implicit none
|
|
BEGIN_DOC
|
|
! Number of threads for Davidson
|
|
END_DOC
|
|
nthreads_davidson = nproc
|
|
character*(32) :: env
|
|
call getenv('QP_NTHREADS_DAVIDSON',env)
|
|
if (trim(env) /= '') then
|
|
call lock_io
|
|
read(env,*) nthreads_davidson
|
|
call unlock_io
|
|
call write_int(6,nthreads_davidson,'Target number of threads for <Psi|H|Psi>')
|
|
endif
|
|
END_PROVIDER
|
|
|
|
! ---
|
|
|
|
BEGIN_PROVIDER [ double precision, threshold_davidson_pt2 ]
|
|
implicit none
|
|
BEGIN_DOC
|
|
! Threshold of Davidson's algorithm, using PT2 as a guide
|
|
END_DOC
|
|
threshold_davidson_pt2 = threshold_davidson
|
|
|
|
END_PROVIDER
|
|
|
|
! ---
|
|
|