10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-07-23 03:07:34 +02:00

bug with zmq_state

This commit is contained in:
Yann Garniron 2018-01-13 01:55:54 +01:00
parent 80005aa36e
commit 045109056f
4 changed files with 5 additions and 10 deletions

View File

@ -31,8 +31,8 @@ OPENMP : 1 ; Append OpenMP flags
# -ftz : Flushes denormal results to zero
#
[OPT]
FCFLAGS : -xAVX -O2 -ip -ftz -g -traceback
FCFLAGS : -xSSE4.2 -O2 -ip -ftz -g -traceback
# !xAVX
# Profiling flags
#################
#

View File

@ -38,19 +38,16 @@ subroutine run_wf
zmq_to_qp_run_socket = new_zmq_to_qp_run_socket()
do
call wait_for_states(states,zmq_state,1)
if(trim(zmq_state) == 'Stopped') then
if(zmq_state(1:7) == 'Stopped') then
exit
else if (trim(zmq_state) == 'mrcc') then
else if (zmq_state(1:4) == 'mrcc') then
! Selection
! ---------
print *, 'mrcc'
!call wall_time(t0)
if (zmq_get_psi(zmq_to_qp_run_socket,1) == -1) cycle
if (zmq_get_N_det_generators (zmq_to_qp_run_socket, 1) == -1) cycle

View File

@ -209,7 +209,6 @@ subroutine mrcc_collector(zmq_socket_pull, E, relative_error, delta, delta_s2, m
old_cur_cp = 0
pullLoop : do while (more == 1)
call pull_mrcc_results(zmq_socket_pull, Nindex, ind, mrcc_mwen, delta_loc, task_id, ntask)
if(Nindex /= 1) stop "tried pull multiple Nindex"
do i=1,Nindex

View File

@ -41,7 +41,6 @@ subroutine run_mrcc_slave(thread,iproc,energy)
integer :: h,p,n
logical :: ok
double precision :: contrib(N_states)
allocate(delta_ij_loc(N_states,N_det_non_ref,2) &
,delta_ii_loc(N_states,2))! &
!,delta_ij_s2_loc(N_states,N_det_non_ref,N_det_ref) &
@ -73,7 +72,7 @@ subroutine run_mrcc_slave(thread,iproc,energy)
else
integer :: i_generator, i_i_generator, subset
read (task,*) subset, ind
print *, "SLAVE RECEIVED", ind
! if(buf%N == 0) then
! ! Only first time
! call create_selection_buffer(1, 2, buf)