quantum-espresso/GWW/simple/stop_pp.f90

37 lines
868 B
Fortran

!
! Copyright (C) 2010 PWSCF group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
!
! Author: L. Martin-Samos
!
!--------------------------------------------------------------------
subroutine stop_pp
!--------------------------------------------------------------------
!
! Synchronize processes before stopping.
!
use io_files, only: iunwfc
use mp, only: mp_end, mp_barrier
USE mp_global, ONLY : mp_global_end
USE mp_world, ONLY : world_comm
USE parallel_include
#ifdef __MPI
integer :: info
logical :: op
inquire ( iunwfc, opened = op )
if ( op ) close (unit = iunwfc, status = 'delete')
call mp_barrier(world_comm)
call mp_global_end ( )
#endif
stop
end subroutine stop_pp