-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
79 lines (69 loc) · 2.28 KB
/
Makefile
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
make:
git submodule update --init
clean:
rm -rf abread borges correia dacops espadeiro gaspar gongas rso salgueiro srgesus david
update: clean
git submodule update --remote
run1:
hyperfine --warmup 1 --runs 100 \
'$(shell ./get_cmd.sh abread 1)' \
'$(shell ./get_cmd.sh borges 1)' \
'$(shell ./get_cmd.sh correia 1)' \
'$(shell ./get_cmd.sh espadeiro 1)' \
'$(shell ./get_cmd.sh gaspar 1)' \
'$(shell ./get_cmd.sh gongas 1)' \
'$(shell ./get_cmd.sh rso 1)' \
'$(shell ./get_cmd.sh salgueiro 1)' \
'$(shell ./get_cmd.sh srgesus 1)' \
'$(shell ./get_cmd.sh david 1)' \
# '$(shell ./get_cmd.sh dacops 1)'
run4:
hyperfine -warmup 1 --runs 10 \
'$(shell ./get_cmd.sh abread 4)' \
'$(shell ./get_cmd.sh borges 4)' \
'$(shell ./get_cmd.sh correia 4)' \
'$(shell ./get_cmd.sh rso 4)' \
'$(shell ./get_cmd.sh espadeiro 4)' \
'$(shell ./get_cmd.sh srgesus 4)' \
'$(shell ./get_cmd.sh gaspar 4)' \
'$(shell ./get_cmd.sh dacops 4)'
run5:
hyperfine --warmup 1 --runs 1 \
'$(shell ./get_cmd.sh borges 5)' \
'$(shell ./get_cmd.sh correia 5)' \
'$(shell ./get_cmd.sh rso 5)' \
'$(shell ./get_cmd.sh espadeiro 5)' \
'$(shell ./get_cmd.sh srgesus 5)' \
'$(shell ./get_cmd.sh gaspar 5)' \
'$(shell ./get_cmd.sh david 5)' \
'$(shell ./get_cmd.sh abread 5)' \
# '$(shell ./get_cmd.sh salgueiro 5)'
run7:
hyperfine --warmup 3 --runs 100 \
'$(shell ./get_cmd.sh abread 7)' \
'$(shell ./get_cmd.sh borges 7)' \
'$(shell ./get_cmd.sh correia 7)' \
'$(shell ./get_cmd.sh espadeiro 7)' \
'$(shell ./get_cmd.sh gaspar 7)' \
'$(shell ./get_cmd.sh rso 7)' \
'$(shell ./get_cmd.sh salgueiro 7)' \
'$(shell ./get_cmd.sh srgesus 7)' \
run8:
hyperfine --warmup 3 --runs 10 \
'$(shell ./get_cmd.sh abread 8)' \
'$(shell ./get_cmd.sh borges 8)' \
'$(shell ./get_cmd.sh correia 8)' \
'$(shell ./get_cmd.sh espadeiro 8)' \
'$(shell ./get_cmd.sh gaspar 8)' \
'$(shell ./get_cmd.sh rso 8)' \
'$(shell ./get_cmd.sh salgueiro 8)' \
'$(shell ./get_cmd.sh srgesus 8)' \
run9:
hyperfine --warmup 3 --runs 1000 \
'$(shell ./get_cmd.sh abread 9)' \
'$(shell ./get_cmd.sh borges 9)' \
'$(shell ./get_cmd.sh correia 9)' \
'$(shell ./get_cmd.sh gaspar 9)' \
'$(shell ./get_cmd.sh rso 9)' \
'$(shell ./get_cmd.sh salgueiro 9)' \
'$(shell ./get_cmd.sh srgesus 9)' \