This file is indexed.

/etc/adios/skel/templates/submit_jaguar.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
#!/bin/bash
# Submission script for the $$TARGET$$ target


#PBS -A $$ACCOUNT$$
#PBS -N $$JOB_NAME$$
#PBS -j oe
#PBS -l walltime=$$WALLTIME$$,size=$$CORES_TOTAL$$16$$
#PBS -l gres=widow2

cd $PBS_O_WORKDIR
date

export MPICH_UNEX_BUFFER_SIZE=251658240
export MPICH_MAX_SHORT_MSG_SIZE=64000


$$START_TEST$$
for i in {1..$$ITERATIONS$$}
do
echo $$METHOD$$
$$PRE_RM$$
set_method.sh $$METHOD$$ $$APP$$_skel.xml.in $$APP$$_skel.xml $$METHOD_PARAMS$$
aprun -n $$CORES_USED$$ ./$$EXEC$$
$$POST_RM$$
done

$$END_TEST$$