lud.conf 1.62 KB
Newer Older
German Leon's avatar
German Leon committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[DEFAULT]

debug =True 

# Name of the gdb executable
gdbExecName = /usr/local/cuda-10.1.243/bin/cuda-gdb 

# Which fault model to use, 0 -> single; 1 -> double;
# 2 -> random; 3 -> zeros; 4 -> least 16 significant bits (LSB);
# 5 -> least 8 significant bits (LSB)
# If you want multiple fault models, place them separated by ','
# faultModel = 0,2,3
faultModel = 0

# Injection site
# Can be:
# RF -> Register File
# INST_OUT -> Instruction Output (NOT IMPLEMENTED YET)
# INST_composed -> Instruction Adress (NOT IMPLEMENTED YET)
German Leon's avatar
German Leon committed
20
injectionSite = INST_OUT 
German Leon's avatar
German Leon committed
21
22
23
24

# Max time factor to finish the app, this will be multiplied by the application running time
# For example if your app spend 2s, and the maxWaitTimes is 5, the max running time before it is
# Considered as a crash is 10s
German Leon's avatar
German Leon committed
25
maxWaitTimes = 50
German Leon's avatar
German Leon committed
26
27
28

# binary file of the application
# Must be full path
German Leon's avatar
German Leon committed
29
benchmarkBinary = /home/badia/mycarol-fi/codes/lud/cuda/lud_cuda
German Leon's avatar
German Leon committed
30
31
32
33
34
35
36
37
38

#benchmarkBinary_noverificar = /home/badia/rodinia_3.1/cuda/lavaMD/lavaMD 

# Commands to set the session inside GDB environment
benchmarkArgs =  -s 10000 -v 

benchmarkArgs_noverificar =  -s 10000

# CSV output file. It will be overwrite at each injection
German Leon's avatar
German Leon committed
39
csvFile = results/lud_IO_original_2.csv
German Leon's avatar
German Leon committed
40
41

# You should create a script on the benchmark source folder to verify GOLD_OUTPUT x INJ_OUTPUT
German Leon's avatar
German Leon committed
42
goldenCheckScript = codes/lud/sdc_check.sh
German Leon's avatar
German Leon committed
43
44
45
46
47
48
49
50
51
52
53
54

# Number of signals that will be sent to the application
seqSignals = 20
# Initial sleep time in seconds before start sending signals
# Generally the memory setup time
initSleep = 0.9  

kernels = lud_internal,lud_perimeter,lud_diagonal
section_begin=lud.cu:151
section_end=lud.cu:155

#initSleep = 0.6 8192