test_mult_mBlock.sh 632 Bytes
Newer Older
German Leon's avatar
German Leon committed
1
2
3
4
5
6
7
8
#!/bin/bash

set -e

#uncomment to a more verbose script
#set -x

FAULTS=1000
German Leon's avatar
German Leon committed
9
CONFFILE=codes/matrixMul/matrixmul.conf
German Leon's avatar
German Leon committed
10
11
12
13
14
15
16
17
18

#CONFFILE=codes/mmElem/matrixmul_16K.conf
#CONFFILE=codes/lavaMD/lavaMD.conf
echo "Step 1 - Profiling the application for fault injection"
./app_profiler.py -c ${CONFFILE} $*


echo "Step 2 - Running ${FAULTS} on ${CONFFILE}"
./fault_injector.py -i ${FAULTS} -c ${CONFFILE} -n 1 $* 
German Leon's avatar
German Leon committed
19
20
21
22
23
24
25
26
echo $?

while  test -f "tmpxxx_num_rounds.conf" 
do
cat tmpxxx_num_rounds.conf >> tandas
./fault_injector.py -i ${FAULTS} -c ${CONFFILE} -n 1 $*
echo "==============================="
done
German Leon's avatar
German Leon committed
27
28
29
echo "Fault injection finished"

exit 0