mirror of
https://github.com/LCPQ/quantum_package
synced 2025-01-03 18:16:12 +01:00
Fixed overflow
This commit is contained in:
parent
68967d2101
commit
6b0b988ee8
@ -9,7 +9,7 @@
|
|||||||
FC : ifort
|
FC : ifort
|
||||||
LAPACK_LIB : -mkl=parallel
|
LAPACK_LIB : -mkl=parallel
|
||||||
IRPF90 : irpf90
|
IRPF90 : irpf90
|
||||||
IRPF90_FLAGS : --ninja --align=32 -DZMQ_PUSH
|
IRPF90_FLAGS : --ninja --align=32
|
||||||
|
|
||||||
# Global options
|
# Global options
|
||||||
################
|
################
|
||||||
|
@ -49,7 +49,7 @@ subroutine zmq_get_dvector(zmq_to_qp_run_socket, worker_id, name, x, size_x)
|
|||||||
double precision, intent(out) :: x(size_x)
|
double precision, intent(out) :: x(size_x)
|
||||||
integer :: rc
|
integer :: rc
|
||||||
integer*8 :: rc8
|
integer*8 :: rc8
|
||||||
character*(64) :: msg
|
character*(256) :: msg
|
||||||
|
|
||||||
write(msg,'(A8,1X,I8,1X,A230)') 'get_data', worker_id, name
|
write(msg,'(A8,1X,I8,1X,A230)') 'get_data', worker_id, name
|
||||||
rc = f77_zmq_send(zmq_to_qp_run_socket,trim(msg),len(trim(msg)),0)
|
rc = f77_zmq_send(zmq_to_qp_run_socket,trim(msg),len(trim(msg)),0)
|
||||||
|
Loading…
Reference in New Issue
Block a user