9
1
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-02 02:35:18 +02:00
qp2/src/ezfio_files/ezfio.irp.f

55 lines
1.5 KiB
Fortran
Raw Normal View History

2020-05-15 14:53:55 +02:00
BEGIN_PROVIDER [ character*(1024), ezfio_filename ]
2019-01-25 11:39:31 +01:00
implicit none
BEGIN_DOC
! Name of EZFIO file. It is obtained from the QPACKAGE_INPUT environment
! variable if it is set, or as the 1st argument of the command line.
END_DOC
PROVIDE mpi_initialized
! Get the QPACKAGE_INPUT environment variable
call getenv('QPACKAGE_INPUT',ezfio_filename)
if (ezfio_filename == '') then
! Get from the command line
integer :: iargc
call getarg(0,ezfio_filename)
if (iargc() /= 1) then
print *, 'Missing EZFIO file name in the command line:'
print *, trim(ezfio_filename)//' <ezfio_file>'
stop 1
endif
call getarg(1,ezfio_filename)
endif
! Check that file exists
logical :: exists
inquire(file=trim(ezfio_filename)//'/ezfio/creation',exist=exists)
if (.not.exists) then
print *, 'Error: file '//trim(ezfio_filename)//' does not exist'
stop 1
endif
call ezfio_set_file(ezfio_filename)
! Adjust out-of-memory killer flag such that the current process will be
! killed first by the OOM killer, allowing compute nodes to survive
integer :: getpid
2020-05-15 14:53:55 +02:00
character*(1024) :: command, pidc
2019-01-25 11:39:31 +01:00
write(pidc,*) getpid()
write(command,*) 'echo 15 > /proc//'//trim(adjustl(pidc))//'/oom_adj'
call system(command)
2019-07-09 13:40:06 +02:00
PROVIDE file_lock
2019-01-25 11:39:31 +01:00
END_PROVIDER
2020-05-15 14:53:55 +02:00
BEGIN_PROVIDER [ character*(1024), ezfio_work_dir ]
2019-01-25 11:39:31 +01:00
implicit none
BEGIN_DOC
! EZFIO/work/
END_DOC
call ezfio_set_work_empty(.False.)
ezfio_work_dir = trim(ezfio_filename)//'/work/'
END_PROVIDER