Update of /cvsroot/monetdb/MonetDB5/src/compiler/Tests
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv8844/Tests

Modified Files:
        mal01.mal 
Log Message:
The last series of patches to make the first case work.
The mcc script is temporary, it will be moved to tools/mcc.in
in the near future.
The effect of interpreter:compiled is 792 versus 462 ms


Index: mal01.mal
===================================================================
RCS file: /cvsroot/monetdb/MonetDB5/src/compiler/Tests/mal01.mal,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- mal01.mal   16 Oct 2007 17:05:26 -0000      1.2
+++ mal01.mal   16 Oct 2007 18:03:35 -0000      1.3
@@ -9,6 +9,18 @@
     exit (go,i);
 end tst903;
 
+t0:= alarm.usec();
+user.tst903();
+t1:= alarm.usec();
+t1:= t1-t0;
+io.printf("#timing %d\n",t1);
+
 compiler.MALtoC("user","tst903","mal01");
 compiler.mcc("mal01");
 compiler.load("user","tst903","mal01");
+
+t0:= alarm.usec();
+user.tst903();
+t1:= alarm.usec();
+t1:= t1-t0;
+io.printf("#timing %d\n",t1);


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
Monetdb-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-checkins

Reply via email to