/etc/adios/skel/templates/submit_nautilus.tpl is in libadios-bin 1.7.0-4.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | #!/bin/bash
# Submission script for the $$TARGET$$ target
# To make changes to this file, edit the appropriate submit_<target>.tpl file in ~/.skel/templates/
#PBS -A $$ACCOUNT$$
#PBS -N $$JOB_NAME$$
#PBS -j oe
#PBS -l walltime=$$WALLTIME$$,ncpus=$$CORES_TOTAL$$1$$
##PBS -W depend=afterany:
#Kludge to get around wrong python version on compute nodes
export PYTHONPATH=../..:$PYTHONPATH
cd $PBS_O_WORKDIR
date
$$START_TEST$$
for i in {1..$$ITERATIONS$$}
do
echo $$METHOD$$
$$PRE_RM$$
./set_method.sh $$METHOD$$ $$APP$$_skel.xml.in $$APP$$_skel.xml
mpiexec ./$$EXEC$$
mv $$APP$$_skel_time.xml $$APP$$_skel_time_${PBS_JOBID}_${i}.xml
$$POST_RM$$
done
$$END_TEST$$
|