Dear Andear,
Thank you.
Here i give my job script.
Using this job script, i have done my quantum espresso calculation in parallel mode but here only the path and input file are different.
job.sh:-
#!/bin/bash
#$ -N sih4-yambo
#$ -S /bin/bash
#$ -cwd
#$ -q all.q
#$ -e $JOB_ID.$JOB_NAME.error
#$ -o $JOB_ID.$JOB_NAME.output
#$ -pe orte 16
#/opt/intel/openmpi-intel/bin/mpirun -np $NSLOTS --mca mtl psm /root/sanjiv/espresso-5.1_cluster/bin/pw.x -inp < relax.in > relax.out
#/opt/intel/openmpi-intel/bin/mpirun -np $NSLOTS --mca mtl psm /root/sanjiv/espresso-5.1_cluster/bin/pw.x -inp < sih4_scf.in > sih4_scf.out
/opt/intel/openmpi-intel/bin/mpirun -np 16 /home/joydev/yambo-4.0.4-rev.107/bin/yambo < yambo.in > yambo.out
#/opt/intel/openmpi-intel/bin/mpirun -np $NSLOTS --mca mtl psm /root/sanjiv/espresso-5.1_cluster/bin/dos.x -inp < dos.in > dos.out
#/opt/intel/openmpi-intel/bin/mpirun -np $NSLOTS --mca mtl psm /root/sanjiv/espresso-5.1_cluster/bin/projwfc.x -inp < pdos.in > pdos.out
When i am running it in parallel mode, the LOG file is created.
But in the out file ,there is no data.
My yambo.in file is given by-
yambo.in:
# __ __ ______ __ __ _______ ______
# | \ / \ / \ | \ / \| \ / \
# \$$\ / $$| $$$$$$\| $$\ / $$| $$$$$$$\| $$$$$$\
# \$$\/ $$ | $$__| $$| $$$\ / $$$| $$__/ $$| $$ | $$
# \$$ $$ | $$ $$| $$$$\ $$$$| $$ $$| $$ | $$
# \$$$$ | $$$$$$$$| $$\$$ $$ $$| $$$$$$$\| $$ | $$
# | $$ | $$ | $$| $$ \$$$| $$| $$__/ $$| $$__/ $$
# | $$ | $$ | $$| $$ \$ | $$| $$ $$ \$$ $$
# \$$ \$$ \$$ \$$ \$$ \$$$$$$$ \$$$$$$
#
# GPL Version 4.0.4 Revision 107
# MPI Build
#
http://www.yambo-code.org
#
optics # [R OPT] Optics
chi # [R CHI] Dyson equation for Chi.
tddft # [R K] Use TDDFT kernel
Chimod= "ALDA" # [X] IP/Hartree/ALDA/LRC/BSfxc
X_all_q_CPU= "2 2 2 2" # [PARALLEL] CPUs for each role
X_all_q_ROLEs= "q k c v" # [PARALLEL] CPUs roles (q,k,c,v)
FxcGRLc= 1 RL # [TDDFT] XC-kernel RL size
NGsBlkXd= 1 RL # [Xd] Response block size
% QpntsRXd
1 | 1 | # [Xd] Transferred momenta
%
% BndsRnXd
1 | 40 | # [Xd] Polarization function bands
%
% EnRngeXd
5.19315 | 17.82734 | eV # [Xd] Energy range
%
% DmRngeXd
0.10000 | 0.10000 | eV # [Xd] Damping range
%
ETStpsXd= 100 # [Xd] Total Energy steps
% LongDrXd
0.1000E-4 | 0.000 | 0.000 | # [Xd] [cc] Electric Field
%
~
Regards
joydev