/etc/adios/skel/templates/submit_sith.tpl is in libadios-bin 1.13.0-1.
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 | #!/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$$,nodes=$$NODES_TOTAL$$32$$:ppn=32
#PBS -l gres=widow2
cd $PBS_O_WORKDIR
date
$$START_TEST$$
for i in {1..$$ITERATIONS$$}
do
echo $$METHOD$$
$$PRE_RM$$
./skel_set_method.sh $$METHOD$$ $$APP$$_skel.xml.in $$APP$$_skel.xml
mpirun -n $$CORES_USED$$ ./$$EXEC$$
mv skel_time.xml $$APP$$_skel_time_${PBS_JOBID}_${i}.xml
$$POST_RM$$
done
$$END_TEST$$
|