File tree 4 files changed +58
-2
lines changed
4 files changed +58
-2
lines changed Original file line number Diff line number Diff line change 1
1
(cd ./temp && cd ..) || mkdir temp
2
- sh run_metta.sh $1 > ./temp/OUTPUT_METTA
2
+ sh run_metta.sh $1 $2 > ./temp/OUTPUT_METTA
3
3
cat ./temp/OUTPUT_METTA
4
- sh run_scheme.sh $1 > ./temp/OUTPUT_SCHEME
4
+ sh run_scheme.sh $1 $2 > ./temp/OUTPUT_SCHEME
5
5
cat ./temp/OUTPUT_SCHEME
6
6
(cmp ./temp/OUTPUT_METTA ./temp/OUTPUT_SCHEME > /dev/null && echo " ==" ) || echo " !="
Original file line number Diff line number Diff line change
1
+ ** Timing**
2
+
3
+ Illustration of timing benefits of using the Mettamorph compiler on various examples.
4
+
Original file line number Diff line number Diff line change
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)))))))
Original file line number Diff line number Diff line change
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" )
You can’t perform that action at this time.
0 commit comments