bruceyoung01
Member
I tried to submit wrf.exe using the slurm script below
#!/bin/bash
#SBATCH --job-name wrf_PurpleAir
#SBATCH --qos long+
#SBATCH --time 120:00:00
#SBATCH --output wrf.log
#SBATCH --nodes 3
#SBATCH --ntasks 12
#SBATCH --partition high_mem
##SBATCH --mem=max
#SBATCH --account=pi_zzbatmos
unset I_MPI_PMI_LIBRARY
##export I_MPI_JOB_RESPECT_PROCESS_PLACEMENT=0
/home/vy57456/zzbatmos_user/application/intel/2018b/mpich-3.4.2/bin/mpirun -np ${SLURM_NTASKS} ./wrf.exe > index_000 2>&1
Job status said that job is running. However, these is no any output. After running for a while, it has the following error
srun: error: PMK_KVS_Barrier duplicate request from task 0
I tried both gfortran and intel compilers to compile MPICH. Both have the same error. Do you have any idea on this error? Thank you
#!/bin/bash
#SBATCH --job-name wrf_PurpleAir
#SBATCH --qos long+
#SBATCH --time 120:00:00
#SBATCH --output wrf.log
#SBATCH --nodes 3
#SBATCH --ntasks 12
#SBATCH --partition high_mem
##SBATCH --mem=max
#SBATCH --account=pi_zzbatmos
unset I_MPI_PMI_LIBRARY
##export I_MPI_JOB_RESPECT_PROCESS_PLACEMENT=0
/home/vy57456/zzbatmos_user/application/intel/2018b/mpich-3.4.2/bin/mpirun -np ${SLURM_NTASKS} ./wrf.exe > index_000 2>&1
Job status said that job is running. However, these is no any output. After running for a while, it has the following error
srun: error: PMK_KVS_Barrier duplicate request from task 0
I tried both gfortran and intel compilers to compile MPICH. Both have the same error. Do you have any idea on this error? Thank you