2019-01-25 11:39:31 +01:00
|
|
|
subroutine run_selection_slave(thread,iproc,energy)
|
|
|
|
use f77_zmq
|
|
|
|
use selection_types
|
|
|
|
implicit none
|
|
|
|
|
|
|
|
double precision, intent(in) :: energy(N_states)
|
|
|
|
integer, intent(in) :: thread, iproc
|
|
|
|
integer :: rc, i
|
|
|
|
|
|
|
|
integer :: worker_id, task_id(1), ctask, ltask
|
|
|
|
character*(512) :: task
|
|
|
|
|
|
|
|
integer(ZMQ_PTR),external :: new_zmq_to_qp_run_socket
|
|
|
|
integer(ZMQ_PTR) :: zmq_to_qp_run_socket
|
|
|
|
|
|
|
|
integer(ZMQ_PTR), external :: new_zmq_push_socket
|
|
|
|
integer(ZMQ_PTR) :: zmq_socket_push
|
|
|
|
|
|
|
|
type(selection_buffer) :: buf, buf2
|
|
|
|
logical :: done, buffer_ready
|
|
|
|
double precision :: pt2(N_states)
|
|
|
|
double precision :: variance(N_states)
|
|
|
|
double precision :: norm(N_states)
|
|
|
|
|
|
|
|
PROVIDE psi_bilinear_matrix_columns_loc psi_det_alpha_unique psi_det_beta_unique
|
|
|
|
PROVIDE psi_bilinear_matrix_rows psi_det_sorted_order psi_bilinear_matrix_order
|
|
|
|
PROVIDE psi_bilinear_matrix_transp_rows_loc psi_bilinear_matrix_transp_columns
|
2019-06-04 18:10:56 +02:00
|
|
|
PROVIDE psi_bilinear_matrix_transp_order N_int pt2_F pseudo_sym
|
|
|
|
PROVIDE psi_selectors_coef_transp psi_det_sorted weight_selection
|
2019-01-25 11:39:31 +01:00
|
|
|
|
|
|
|
|
|
|
|
zmq_to_qp_run_socket = new_zmq_to_qp_run_socket()
|
|
|
|
|
|
|
|
integer, external :: connect_to_taskserver
|
|
|
|
if (connect_to_taskserver(zmq_to_qp_run_socket,worker_id,thread) == -1) then
|
|
|
|
call end_zmq_to_qp_run_socket(zmq_to_qp_run_socket)
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
|
|
|
zmq_socket_push = new_zmq_push_socket(thread)
|
|
|
|
|
|
|
|
buf%N = 0
|
|
|
|
buffer_ready = .False.
|
|
|
|
ctask = 1
|
|
|
|
pt2(:) = 0d0
|
|
|
|
variance(:) = 0d0
|
|
|
|
norm(:) = 0.d0
|
|
|
|
|
|
|
|
do
|
|
|
|
integer, external :: get_task_from_taskserver
|
|
|
|
if (get_task_from_taskserver(zmq_to_qp_run_socket,worker_id, task_id(ctask), task) == -1) then
|
|
|
|
exit
|
|
|
|
endif
|
|
|
|
done = task_id(ctask) == 0
|
|
|
|
if (done) then
|
|
|
|
ctask = ctask - 1
|
|
|
|
else
|
2019-01-31 11:26:13 +01:00
|
|
|
integer :: i_generator, N, subset, bsize
|
2019-01-25 11:39:31 +01:00
|
|
|
read(task,*) subset, i_generator, N
|
|
|
|
if(buf%N == 0) then
|
|
|
|
! Only first time
|
2020-06-13 00:05:11 +02:00
|
|
|
call create_selection_buffer(N, N*2, buf)
|
2019-01-25 11:39:31 +01:00
|
|
|
buffer_ready = .True.
|
|
|
|
else
|
2020-06-12 23:45:23 +02:00
|
|
|
if (N /= buf%N) then
|
|
|
|
print *, 'N=', N
|
|
|
|
print *, 'buf%N=', buf%N
|
|
|
|
print *, 'bug in ', irp_here
|
|
|
|
stop '-1'
|
|
|
|
end if
|
2019-01-25 11:39:31 +01:00
|
|
|
end if
|
|
|
|
call select_connected(i_generator,energy,pt2,variance,norm,buf,subset,pt2_F(i_generator))
|
|
|
|
endif
|
|
|
|
|
|
|
|
integer, external :: task_done_to_taskserver
|
|
|
|
|
|
|
|
if(done .or. ctask == size(task_id)) then
|
|
|
|
do i=1, ctask
|
|
|
|
if (task_done_to_taskserver(zmq_to_qp_run_socket,worker_id,task_id(i)) == -1) then
|
2019-07-09 13:40:06 +02:00
|
|
|
call usleep(100)
|
2019-01-25 11:39:31 +01:00
|
|
|
if (task_done_to_taskserver(zmq_to_qp_run_socket,worker_id,task_id(i)) == -1) then
|
|
|
|
ctask = 0
|
|
|
|
done = .true.
|
|
|
|
exit
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
end do
|
|
|
|
if(ctask > 0) then
|
|
|
|
call sort_selection_buffer(buf)
|
2019-01-31 11:26:13 +01:00
|
|
|
! call merge_selection_buffers(buf,buf2)
|
2019-08-21 21:13:19 +02:00
|
|
|
!print *, task_id(1), pt2(1), buf%cur, ctask
|
2019-01-25 11:39:31 +01:00
|
|
|
call push_selection_results(zmq_socket_push, pt2, variance, norm, buf, task_id(1), ctask)
|
2019-01-31 11:26:13 +01:00
|
|
|
! buf%mini = buf2%mini
|
2019-01-25 11:39:31 +01:00
|
|
|
pt2(:) = 0d0
|
|
|
|
variance(:) = 0d0
|
|
|
|
norm(:) = 0d0
|
|
|
|
buf%cur = 0
|
|
|
|
end if
|
|
|
|
ctask = 0
|
|
|
|
end if
|
|
|
|
|
|
|
|
if(done) exit
|
|
|
|
ctask = ctask + 1
|
|
|
|
end do
|
|
|
|
|
2020-04-06 00:03:59 +02:00
|
|
|
if(ctask > 0) then
|
|
|
|
call sort_selection_buffer(buf)
|
|
|
|
! call merge_selection_buffers(buf,buf2)
|
|
|
|
call push_selection_results(zmq_socket_push, pt2, variance, norm, buf, task_id(1), ctask)
|
|
|
|
! buf%mini = buf2%mini
|
|
|
|
pt2(:) = 0d0
|
|
|
|
variance(:) = 0d0
|
|
|
|
norm(:) = 0d0
|
|
|
|
buf%cur = 0
|
|
|
|
end if
|
|
|
|
ctask = 0
|
2019-01-25 11:39:31 +01:00
|
|
|
|
|
|
|
integer, external :: disconnect_from_taskserver
|
|
|
|
if (disconnect_from_taskserver(zmq_to_qp_run_socket,worker_id) == -1) then
|
|
|
|
continue
|
|
|
|
endif
|
|
|
|
|
|
|
|
call end_zmq_to_qp_run_socket(zmq_to_qp_run_socket)
|
|
|
|
call end_zmq_push_socket(zmq_socket_push,thread)
|
|
|
|
if (buffer_ready) then
|
|
|
|
call delete_selection_buffer(buf)
|
2019-01-31 11:26:13 +01:00
|
|
|
! call delete_selection_buffer(buf2)
|
2019-01-25 11:39:31 +01:00
|
|
|
endif
|
|
|
|
end subroutine
|
|
|
|
|
|
|
|
|
|
|
|
subroutine push_selection_results(zmq_socket_push, pt2, variance, norm, b, task_id, ntask)
|
|
|
|
use f77_zmq
|
|
|
|
use selection_types
|
|
|
|
implicit none
|
|
|
|
|
|
|
|
integer(ZMQ_PTR), intent(in) :: zmq_socket_push
|
|
|
|
double precision, intent(in) :: pt2(N_states)
|
|
|
|
double precision, intent(in) :: variance(N_states)
|
|
|
|
double precision, intent(in) :: norm(N_states)
|
|
|
|
type(selection_buffer), intent(inout) :: b
|
|
|
|
integer, intent(in) :: ntask, task_id(*)
|
|
|
|
integer :: rc
|
|
|
|
|
|
|
|
rc = f77_zmq_send( zmq_socket_push, b%cur, 4, ZMQ_SNDMORE)
|
|
|
|
if(rc /= 4) then
|
|
|
|
print *, 'f77_zmq_send( zmq_socket_push, b%cur, 4, ZMQ_SNDMORE)'
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
2019-07-09 13:40:06 +02:00
|
|
|
rc = f77_zmq_send( zmq_socket_push, pt2, 8*N_states, ZMQ_SNDMORE)
|
|
|
|
if(rc /= 8*N_states) then
|
|
|
|
print *, 'f77_zmq_send( zmq_socket_push, pt2, 8*N_states, ZMQ_SNDMORE)'
|
|
|
|
endif
|
2019-01-25 11:39:31 +01:00
|
|
|
|
2019-07-09 13:40:06 +02:00
|
|
|
rc = f77_zmq_send( zmq_socket_push, variance, 8*N_states, ZMQ_SNDMORE)
|
|
|
|
if(rc /= 8*N_states) then
|
|
|
|
print *, 'f77_zmq_send( zmq_socket_push, variance, 8*N_states, ZMQ_SNDMORE)'
|
|
|
|
endif
|
2019-01-25 11:39:31 +01:00
|
|
|
|
2019-07-09 13:40:06 +02:00
|
|
|
rc = f77_zmq_send( zmq_socket_push, norm, 8*N_states, ZMQ_SNDMORE)
|
|
|
|
if(rc /= 8*N_states) then
|
|
|
|
print *, 'f77_zmq_send( zmq_socket_push, norm, 8*N_states, ZMQ_SNDMORE)'
|
|
|
|
endif
|
|
|
|
|
|
|
|
if (b%cur > 0) then
|
2019-01-25 11:39:31 +01:00
|
|
|
|
|
|
|
rc = f77_zmq_send( zmq_socket_push, b%val(1), 8*b%cur, ZMQ_SNDMORE)
|
|
|
|
if(rc /= 8*b%cur) then
|
|
|
|
print *, 'f77_zmq_send( zmq_socket_push, b%val(1), 8*b%cur, ZMQ_SNDMORE)'
|
|
|
|
endif
|
|
|
|
|
|
|
|
rc = f77_zmq_send( zmq_socket_push, b%det(1,1,1), bit_kind*N_int*2*b%cur, ZMQ_SNDMORE)
|
|
|
|
if(rc /= bit_kind*N_int*2*b%cur) then
|
|
|
|
print *, 'f77_zmq_send( zmq_socket_push, b%det(1,1,1), bit_kind*N_int*2*b%cur, ZMQ_SNDMORE)'
|
|
|
|
endif
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
rc = f77_zmq_send( zmq_socket_push, ntask, 4, ZMQ_SNDMORE)
|
|
|
|
if(rc /= 4) then
|
|
|
|
print *, 'f77_zmq_send( zmq_socket_push, ntask, 4, ZMQ_SNDMORE)'
|
|
|
|
endif
|
|
|
|
|
|
|
|
rc = f77_zmq_send( zmq_socket_push, task_id(1), ntask*4, 0)
|
|
|
|
if(rc /= 4*ntask) then
|
|
|
|
print *, 'f77_zmq_send( zmq_socket_push, task_id(1), ntask*4, 0)'
|
|
|
|
endif
|
|
|
|
|
|
|
|
! Activate is zmq_socket_push is a REQ
|
|
|
|
IRP_IF ZMQ_PUSH
|
|
|
|
IRP_ELSE
|
|
|
|
character*(2) :: ok
|
|
|
|
rc = f77_zmq_recv( zmq_socket_push, ok, 2, 0)
|
|
|
|
if ((rc /= 2).and.(ok(1:2) /= 'ok')) then
|
|
|
|
print *, irp_here//': error in receiving ok'
|
|
|
|
stop -1
|
|
|
|
endif
|
|
|
|
IRP_ENDIF
|
|
|
|
|
|
|
|
end subroutine
|
|
|
|
|
|
|
|
|
|
|
|
subroutine pull_selection_results(zmq_socket_pull, pt2, variance, norm, val, det, N, task_id, ntask)
|
|
|
|
use f77_zmq
|
|
|
|
use selection_types
|
|
|
|
implicit none
|
|
|
|
integer(ZMQ_PTR), intent(in) :: zmq_socket_pull
|
|
|
|
double precision, intent(inout) :: pt2(N_states)
|
|
|
|
double precision, intent(inout) :: variance(N_states)
|
|
|
|
double precision, intent(inout) :: norm(N_states)
|
|
|
|
double precision, intent(out) :: val(*)
|
|
|
|
integer(bit_kind), intent(out) :: det(N_int, 2, *)
|
|
|
|
integer, intent(out) :: N, ntask, task_id(*)
|
|
|
|
integer :: rc, rn, i
|
|
|
|
|
|
|
|
rc = f77_zmq_recv( zmq_socket_pull, N, 4, 0)
|
|
|
|
if(rc /= 4) then
|
|
|
|
print *, 'f77_zmq_recv( zmq_socket_pull, N, 4, 0)'
|
|
|
|
endif
|
|
|
|
|
2019-07-09 13:40:06 +02:00
|
|
|
pt2(:) = 0.d0
|
|
|
|
variance(:) = 0.d0
|
|
|
|
norm(:) = 0.d0
|
2019-01-25 11:39:31 +01:00
|
|
|
|
2019-07-09 13:40:06 +02:00
|
|
|
rc = f77_zmq_recv( zmq_socket_pull, pt2, N_states*8, 0)
|
|
|
|
if(rc /= 8*N_states) then
|
|
|
|
print *, 'f77_zmq_recv( zmq_socket_pull, pt2, N_states*8, 0)'
|
|
|
|
endif
|
2019-01-25 11:39:31 +01:00
|
|
|
|
2019-07-09 13:40:06 +02:00
|
|
|
rc = f77_zmq_recv( zmq_socket_pull, variance, N_states*8, 0)
|
|
|
|
if(rc /= 8*N_states) then
|
|
|
|
print *, 'f77_zmq_recv( zmq_socket_pull, variance, N_states*8, 0)'
|
|
|
|
endif
|
|
|
|
|
|
|
|
rc = f77_zmq_recv( zmq_socket_pull, norm, N_states*8, 0)
|
|
|
|
if(rc /= 8*N_states) then
|
|
|
|
print *, 'f77_zmq_recv( zmq_socket_pull, norm, N_states*8, 0)'
|
|
|
|
endif
|
2019-01-25 11:39:31 +01:00
|
|
|
|
2019-07-09 13:40:06 +02:00
|
|
|
if (N>0) then
|
2019-01-25 11:39:31 +01:00
|
|
|
rc = f77_zmq_recv( zmq_socket_pull, val(1), 8*N, 0)
|
|
|
|
if(rc /= 8*N) then
|
|
|
|
print *, 'f77_zmq_recv( zmq_socket_pull, val(1), 8*N, 0)'
|
|
|
|
endif
|
|
|
|
|
|
|
|
rc = f77_zmq_recv( zmq_socket_pull, det(1,1,1), bit_kind*N_int*2*N, 0)
|
|
|
|
if(rc /= bit_kind*N_int*2*N) then
|
|
|
|
print *, 'f77_zmq_recv( zmq_socket_pull, det(1,1,1), bit_kind*N_int*2*N, 0)'
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
rc = f77_zmq_recv( zmq_socket_pull, ntask, 4, 0)
|
|
|
|
if(rc /= 4) then
|
|
|
|
print *, 'f77_zmq_recv( zmq_socket_pull, ntask, 4, 0)'
|
|
|
|
endif
|
|
|
|
|
|
|
|
rc = f77_zmq_recv( zmq_socket_pull, task_id(1), ntask*4, 0)
|
|
|
|
if(rc /= 4*ntask) then
|
|
|
|
print *, 'f77_zmq_recv( zmq_socket_pull, task_id(1), ntask*4, 0)'
|
|
|
|
endif
|
|
|
|
|
|
|
|
! Activate is zmq_socket_pull is a REP
|
|
|
|
IRP_IF ZMQ_PUSH
|
|
|
|
IRP_ELSE
|
|
|
|
rc = f77_zmq_send( zmq_socket_pull, 'ok', 2, 0)
|
|
|
|
if (rc /= 2) then
|
|
|
|
print *, irp_here//': error in sending ok'
|
|
|
|
stop -1
|
|
|
|
endif
|
|
|
|
IRP_ENDIF
|
|
|
|
end subroutine
|
|
|
|
|
|
|
|
|
|
|
|
|