Skip to content

Commit 3ff8c91

Browse files
committed
Update: timing is back this time more meaningful by comparing with the compiled speed on various example and also reporting speedup factor
1 parent a7ccc04 commit 3ff8c91

File tree

4 files changed

+58
-2
lines changed

4 files changed

+58
-2
lines changed

run.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(cd ./temp && cd ..) || mkdir temp
2-
sh run_metta.sh $1 > ./temp/OUTPUT_METTA
2+
sh run_metta.sh $1 $2 > ./temp/OUTPUT_METTA
33
cat ./temp/OUTPUT_METTA
4-
sh run_scheme.sh $1 > ./temp/OUTPUT_SCHEME
4+
sh run_scheme.sh $1 $2 > ./temp/OUTPUT_SCHEME
55
cat ./temp/OUTPUT_SCHEME
66
(cmp ./temp/OUTPUT_METTA ./temp/OUTPUT_SCHEME > /dev/null && echo "==") || echo "!="

timing/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
**Timing**
2+
3+
Illustration of timing benefits of using the Mettamorph compiler on various examples.
4+

timing/timing.metta

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
(= (factorial $n)
2+
(If (== $n 0)
3+
1
4+
(* $n (factorial (- $n 1)))))
5+
6+
(= (TupleConcat $Ev1 $Ev2) (collapse (superpose ((superpose $Ev1) (superpose $Ev2)))))
7+
8+
(= (range $K $N)
9+
(If (< $K $N)
10+
(TupleConcat ($K) (range (+ $K 1) $N))
11+
()))
12+
13+
(= (TupleCount $tuple) (If (== $tuple ()) 0 (+ 1 (TupleCount (cdr-atom $tuple)))))
14+
15+
(= (StampDisjoint $Ev1 $Ev2)
16+
(== () (collapse (let* (($x (superpose $Ev1))
17+
($y (superpose $Ev2)))
18+
(case (== $x $y) ((True overlap)))))))

timing/timing.py

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
import os
2+
import time
3+
4+
#Tests to run
5+
tests = [
6+
"!(factorial 30)",
7+
"!(range 1 30)",
8+
"!(TupleCount (1 2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30))",
9+
"""!(StampDisjoint (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)
10+
(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))"""
11+
]
12+
#Run and time then:
13+
workdir = os.getcwd()
14+
for test in tests:
15+
os.chdir(workdir)
16+
os.system("cp timing.metta RUN.metta")
17+
with open("RUN.metta", "a") as file:
18+
file.write(test)
19+
os.chdir("../")
20+
os.system("sh run.sh ./timing/RUN.metta cat-only")
21+
os.system("sh compile_scheme.sh")
22+
os.system("./RUN > /dev/null") #make sure binary is already in file cache
23+
print(f"TEST: {test}")
24+
t1 = time.time()
25+
os.system("metta RUN.metta")
26+
t2 = time.time()
27+
os.system("./RUN")
28+
t3 = time.time()
29+
DIFF1 = (t2-t1)
30+
DIFF2 = (t3-t2)
31+
SPEEDUP = DIFF1/DIFF2
32+
print(f"TIME METTA:\t{DIFF1} seconds")
33+
print(f"TIME SCHEME:\t{DIFF2} seconds")
34+
print(f"SPEEDUP:\t{SPEEDUP} times faster")

0 commit comments

Comments
 (0)