2016-12-26 17:11:44 +01:00
|
|
|
subroutine ZMQ_selection(N_in, pt2)
|
|
|
|
use f77_zmq
|
|
|
|
use selection_types
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
|
|
|
|
integer(ZMQ_PTR) :: zmq_to_qp_run_socket
|
|
|
|
integer, intent(in) :: N_in
|
|
|
|
type(selection_buffer) :: b
|
|
|
|
integer :: i, N
|
|
|
|
integer, external :: omp_get_thread_num
|
|
|
|
double precision, intent(out) :: pt2(N_states)
|
2017-04-12 18:26:57 +02:00
|
|
|
integer, parameter :: maxtasks=10000
|
2016-12-26 17:11:44 +01:00
|
|
|
|
|
|
|
|
2017-02-12 09:37:00 +01:00
|
|
|
PROVIDE fragment_count
|
|
|
|
|
2017-04-12 18:26:57 +02:00
|
|
|
N = max(N_in,1)
|
2016-12-26 17:11:44 +01:00
|
|
|
if (.True.) then
|
|
|
|
PROVIDE pt2_e0_denominator
|
|
|
|
provide nproc
|
|
|
|
call new_parallel_job(zmq_to_qp_run_socket,"selection")
|
|
|
|
call zmq_put_psi(zmq_to_qp_run_socket,1,pt2_e0_denominator,size(pt2_e0_denominator))
|
|
|
|
call create_selection_buffer(N, N*2, b)
|
|
|
|
endif
|
|
|
|
|
2017-04-12 18:26:57 +02:00
|
|
|
character*(20*maxtasks) :: task
|
|
|
|
task = ' '
|
|
|
|
|
|
|
|
integer :: k
|
|
|
|
k=0
|
2017-03-03 12:02:21 +01:00
|
|
|
do i= 1, N_det_generators
|
2017-04-12 18:26:57 +02:00
|
|
|
k = k+1
|
2017-04-12 19:29:21 +02:00
|
|
|
write(task(20*(k-1)+1:20*k),'(I9,1X,I9,''|'')') i, N
|
2017-04-14 12:04:21 +02:00
|
|
|
if (k>=maxtasks) then
|
2017-04-12 18:26:57 +02:00
|
|
|
k=0
|
|
|
|
call add_task_to_taskserver(zmq_to_qp_run_socket,task)
|
|
|
|
endif
|
2016-12-26 17:11:44 +01:00
|
|
|
end do
|
2017-04-12 18:26:57 +02:00
|
|
|
if (k > 0) then
|
|
|
|
call add_task_to_taskserver(zmq_to_qp_run_socket,task)
|
|
|
|
endif
|
|
|
|
call zmq_set_running(zmq_to_qp_run_socket)
|
2016-12-26 17:11:44 +01:00
|
|
|
|
|
|
|
!$OMP PARALLEL DEFAULT(shared) SHARED(b, pt2) PRIVATE(i) NUM_THREADS(nproc+1)
|
|
|
|
i = omp_get_thread_num()
|
|
|
|
if (i==0) then
|
|
|
|
call selection_collector(b, pt2)
|
|
|
|
else
|
|
|
|
call selection_slave_inproc(i)
|
|
|
|
endif
|
|
|
|
!$OMP END PARALLEL
|
|
|
|
call end_parallel_job(zmq_to_qp_run_socket, 'selection')
|
|
|
|
if (N_in > 0) then
|
2017-03-03 12:02:21 +01:00
|
|
|
call fill_H_apply_buffer_no_selection(b%cur,b%det,N_int,0)
|
2016-12-26 17:11:44 +01:00
|
|
|
call copy_H_apply_buffer_to_wf()
|
|
|
|
if (s2_eig) then
|
|
|
|
call make_s2_eigenfunction
|
|
|
|
endif
|
2017-02-27 21:33:29 +01:00
|
|
|
call save_wavefunction
|
2016-12-26 17:11:44 +01:00
|
|
|
endif
|
2017-04-12 18:26:57 +02:00
|
|
|
|
2016-12-26 17:11:44 +01:00
|
|
|
end subroutine
|
|
|
|
|
|
|
|
|
|
|
|
subroutine selection_slave_inproc(i)
|
|
|
|
implicit none
|
|
|
|
integer, intent(in) :: i
|
|
|
|
|
|
|
|
call run_selection_slave(1,i,pt2_e0_denominator)
|
|
|
|
end
|
|
|
|
|
|
|
|
subroutine selection_collector(b, pt2)
|
|
|
|
use f77_zmq
|
|
|
|
use selection_types
|
|
|
|
use bitmasks
|
|
|
|
implicit none
|
|
|
|
|
|
|
|
|
|
|
|
type(selection_buffer), intent(inout) :: b
|
|
|
|
double precision, intent(out) :: pt2(N_states)
|
|
|
|
double precision :: pt2_mwen(N_states)
|
|
|
|
integer(ZMQ_PTR),external :: new_zmq_to_qp_run_socket
|
|
|
|
integer(ZMQ_PTR) :: zmq_to_qp_run_socket
|
|
|
|
|
|
|
|
integer(ZMQ_PTR), external :: new_zmq_pull_socket
|
|
|
|
integer(ZMQ_PTR) :: zmq_socket_pull
|
|
|
|
|
|
|
|
integer :: msg_size, rc, more
|
|
|
|
integer :: acc, i, j, robin, N, ntask
|
|
|
|
double precision, allocatable :: val(:)
|
|
|
|
integer(bit_kind), allocatable :: det(:,:,:)
|
|
|
|
integer, allocatable :: task_id(:)
|
|
|
|
integer :: done
|
|
|
|
real :: time, time0
|
|
|
|
zmq_to_qp_run_socket = new_zmq_to_qp_run_socket()
|
|
|
|
zmq_socket_pull = new_zmq_pull_socket()
|
2017-04-12 18:26:57 +02:00
|
|
|
allocate(val(b%N), det(N_int, 2, b%N), task_id(N_det_generators))
|
2016-12-26 17:11:44 +01:00
|
|
|
done = 0
|
|
|
|
more = 1
|
|
|
|
pt2(:) = 0d0
|
|
|
|
call CPU_TIME(time0)
|
|
|
|
do while (more == 1)
|
|
|
|
call pull_selection_results(zmq_socket_pull, pt2_mwen, val(1), det(1,1,1), N, task_id, ntask)
|
|
|
|
pt2 += pt2_mwen
|
|
|
|
do i=1, N
|
|
|
|
call add_to_selection_buffer(b, det(1,1,i), val(i))
|
|
|
|
end do
|
|
|
|
|
|
|
|
do i=1, ntask
|
|
|
|
if(task_id(i) == 0) then
|
|
|
|
print *, "Error in collector"
|
|
|
|
endif
|
|
|
|
call zmq_delete_task(zmq_to_qp_run_socket,zmq_socket_pull,task_id(i),more)
|
|
|
|
end do
|
|
|
|
done += ntask
|
|
|
|
call CPU_TIME(time)
|
|
|
|
! print *, "DONE" , done, time - time0
|
|
|
|
end do
|
|
|
|
|
|
|
|
|
|
|
|
call end_zmq_to_qp_run_socket(zmq_to_qp_run_socket)
|
|
|
|
call end_zmq_pull_socket(zmq_socket_pull)
|
|
|
|
call sort_selection_buffer(b)
|
|
|
|
end subroutine
|
|
|
|
|