-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPerfTest.sh
More file actions
executable file
·50 lines (49 loc) · 847 Bytes
/
PerfTest.sh
File metadata and controls
executable file
·50 lines (49 loc) · 847 Bytes
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/bash
echo -e "\033[1mEstimated time: 15 minutes \033[0m"
echo -e "\033[1mRunning Performance Test Suite \033[0m"
cd overhead_test/glibc_rlibm_generic
make -s clean
make -s
./runAll.sh
make -s clean
cd ../glibc_double
make -s clean
make -s
./runAll.sh
make -s clean
cd ../glibc_float
make -s clean
make -s
./runAll.sh
make -s clean
cd ../crlibm
make -s clean
make -s
./runAll.sh
make -s clean
cd ../glibc_rlibm32
make -s clean
make -s
./runAll.sh
make -s clean
cd ../intel_rlibm_generic
make -s clean
make -s
./runAll.sh
make -s clean
cd ../intel_double
make -s clean
make -s
./runAll.sh
make -s clean
cd ../intel_float
make -s clean
make -s
./runAll.sh
make -s clean
cd ../..
echo -e "\033[1mGenerating Graph Files \033[0m"
python3 SpeedupOverCrlibm.py
python3 SpeedupOverGlibc.py
python3 SpeedupOverIntel.py
python3 SpeedupOverRlibm32.py