-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmeasureDataset1.sh
executable file
·64 lines (33 loc) · 1.93 KB
/
measureDataset1.sh
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/bin/bash
# ./buildDataset.sh
# ./build-lmcas.sh
/usr/bin/time -v ./runAnalysis_automated.sh --file:bitcode_files/basename.bc --args:suffix=.txt > log
cat log |& grep -E "wall|resident"
/usr/bin/time -v ./runAnalysis_automated.sh --file:bitcode_files/baseenc.bc --args:base64 > log
cat log |& grep -E "wall|resident"
/usr/bin/time -v ./runAnalysis_automated.sh --file:bitcode_files/comm.bc --args:-12 > log
cat log |& grep -E "wall|resident"
/usr/bin/time -v ./runAnalysis_automated.sh --file:bitcode_files/date.bc --args:-R > log
cat log |& grep -E "wall|resident"
/usr/bin/time -v ./runAnalysis_automated.sh --file:bitcode_files/du.bc --args:-h > log
cat log |& grep -E "wall|resident"
/usr/bin/time -v ./runAnalysis_automated.sh --file:bitcode_files/echo.bc --args:-E > log
cat log |& grep -E "wall|resident"
/usr/bin/time -v ./runAnalysis_automated.sh --file:bitcode_files/fmt.bc --args:-c > log
cat log |& grep -E "wall|resident"
/usr/bin/time -v ./runAnalysis_automated.sh --file:bitcode_files/head.bc --args:-w30 > log
cat log |& grep -E "wall|resident"
/usr/bin/time -v ./runAnalysis_automated.sh --file:bitcode_files/fold.bc --args:-n3 > log
cat log |& grep -E "wall|resident"
/usr/bin/time -v ./runAnalysis_automated.sh --file:bitcode_files/id.bc --args:-G > log
cat log |& grep -E "wall|resident"
/usr/bin/time -v ./runAnalysis_automated.sh --file:bitcode_files/kill.bc --args:-9 > log
cat log |& grep -E "wall|resident"
/usr/bin/time -v ./runAnalysis_automated.sh --file:bitcode_files/reapath.bc --args:-P > log
cat log |& grep -E "wall|resident"
/usr/bin/time -v ./runAnalysis_automated.sh --file:bitcode_files/sort.bc --args:-u > log
cat log |& grep -E "wall|resident"
/usr/bin/time -v ./runAnalysis_automated.sh --file:bitcode_files/uniq.bc --args:-d > log
cat log |& grep -E "wall|resident"
/usr/bin/time -v ./runAnalysis_automated.sh --file:bitcode_files/wc.bc --args:-l > log
cat log |& grep -E "wall|resident"