Statistics
| Branch: | Revision:

root / synthbench / euroben-shm / mod2as / x.all

History | View | Annotate | Download (323 Bytes)

1
#!/bin/sh
2
#
3
# Execute script for program mod2a of the EuroBen OpenMP Benchmark.
4
#
5
if [ ${OMP_NUM_THREADS} -lt 10 ]; then
6
     FILEXT="p0${OMP_NUM_THREADS}"
7
else
8
     FILEXT="p${OMP_NUM_THREADS}"
9
fi
10
exec 1>> mod2a.${FILEXT}.log 2>&1
11
echo 'start mod2a at' `date` 'id =' $$
12
time ./x.mod2a
13
echo 'end mod2a at' `date` 'id =' $$