quantum-espresso/UtilXlib/tests/test_mp_max_rv_buffer.f90

41 lines
911 B
Fortran

PROGRAM test_mp_max_rv_buffer
!
! Simple program to check the functionalities of test_mp_max_iv
! with buffer implementation.
!
USE parallel_include
USE util_param, ONLY : DP
USE mp, ONLY : mp_max
USE mp_world, ONLY : mp_world_start, mp_world_end, mpime, &
root, nproc, world_comm
USE tester
IMPLICIT NONE
!
TYPE(tester_t) :: test
INTEGER :: world_group = 0
! test variable
REAL(DP) :: rv(200001)
REAL(DP) :: valid(200001)
!
CALL test%init()
#if defined(__MPI)
world_group = MPI_COMM_WORLD
#endif
CALL mp_world_start(world_group)
rv(:) = mpime + 1
CALL mp_max(rv, world_comm)
!
valid(:) = DBLE(nproc)
CALL test%assert_equal( rv, valid )
!
CALL collect_results(test)
!
CALL mp_world_end()
!
IF (mpime .eq. 0) CALL test%print()
!
END PROGRAM test_mp_max_rv_buffer