In coordination with the ACCESS team, XSEDE has paused the processing of Startup, Education, and other allocation requests from August 17-31. This pause will ensure that no requests are lost while we are making infrastructure updates behind the scenes and handing things over to ACCESS. If you have questions, contact help@xsede.org. The ACCESS team will resume taking allocation requests on September 1 via https://access-ci.org/.

The discussion forums in the XSEDE User Portal are for users to share experiences, questions, and comments with other users and XSEDE staff. Visitors are welcome to browse and search, but you must login to contribute to the forums. While XSEDE staff monitor the lists, XSEDE does not guarantee that questions will be answered. Please note that the forums are not a replacement for formal support or bug reporting procedures through the XSEDE Help Desk. You must be logged in to post to the user forums.

« Back

Quantum Espresso batch file.

Combination View Flat View Tree View
Threads [ Previous | Next ]
Quantum Espresso batch file.
quantum espresso batch
Answer
12/17/13 2:53 AM
Dear users:

I am now using Gordon to do my calculations. I successfully compiled QE on it and could run jobs with command "mpirun PATH/pw.x -np 1 -in file.in > file.out".

However, I cannot run the jobs through batch script and I do not know why. Could anyone please help me out here?

The error is:
error while loading shared libraries: libfftw3.so.3: cannot open shared object file: No such file or directory

I tried to locate libfftw3.so.3 but could not find anything. And other libfftw3 files are in MVAPICH2 library which I did not use at all.

My batch file:

#!/bin/bash
#PBS -q normal
#PBS -l nodes=1:ppn=2:native
#PBS -l walltime=48:00:00
#PBS -N TEST
#PBS -o qe.mpi.log
#PBS -e qe.mpi.err
#PBS -A XXXXX
#PBS -M XXX@XXX.XXX
#PBS -m abe
#PBS -V
######################################################

module load mpich2_ib

/bin/mkdir -p /oasis/scratch/$USER/temp_project/${PBS_O_WORKDIR##*$USER/}
/bin/cp -prL $PBS_O_WORKDIR/* /oasis/scratch/$USER/temp_project/${PBS_O_WORKDIR##*$USER/}/.
cd /oasis/scratch/$USER/temp_project/${PBS_O_WORKDIR##*$USER/}

mpirun PATH/pw.x -np 1 -in file.in > file.out