blob: ca8d242e16a058582b83ce83b2108ef1b03fa248 (
plain)
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
|
bin intsort {noinst} =
intsort.myr
lib @/lib/std:std
lib @/lib/sys:sys
;;
bin copious-allocs {noinst} =
copious-allocs.myr
lib @/lib/std:std
lib @/lib/sys:sys
;;
bin sha1-compute {noinst} =
sha1-compute.myr
lib @/lib/std:std
lib @/lib/sys:sys
lib @/lib/cryptohash:cryptohash
;;
bin bigfactorial {noinst} =
bigfactorial.myr
lib @/lib/std:std
lib @/lib/sys:sys
;;
bin mandelbrot {noinst} =
mandelbrot.myr
lib @/lib/std:std
lib @/lib/sys:sys
lib @/lib/bio:bio
;;
bin regex-match {noinst} =
regex-match.myr
lib @/lib/std:std
lib @/lib/sys:sys
lib @/lib/regex:regex
;;
bin many-memcpy {noinst} =
many-memcpy.myr
lib @/lib/std:std
lib @/lib/sys:sys
;;
# benchmark runner
bin runbench {noinst} =
runbench.myr
lib @/lib/std:std
lib @/lib/sys:sys
;;
cmd benchit =
./runbench
intsort
copious-allocs
sha1-compute
bigfactorial
mandelbrot
regex-match
many-memcpy
;;
|