forked from ecraven/r7rs-benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresults.MIT
1120 lines (1006 loc) · 53.2 KB
/
results.MIT
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
****************************
Benchmarking MIT on Sat 6 Jul 07:51:58 CEST 2024 under Linux h4nex 6.9.7-arch1-1 #1 SMP PREEMPT_DYNAMIC Fri, 28 Jun 2024 04:32:50 +0000 x86_64 GNU/Linux
Testing browse under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/browse.scm /tmp/r7rs-benchmarks/MIT/browse.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/browse.scm" => "/tmp/r7rs-benchmarks/MIT/browse.bin"...
;Warning: Unreferenced bound variable: s1 (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/browse.bin" => "/tmp/r7rs-benchmarks/MIT/browse.com"... done
Running...
Running browse:2000
Elapsed time: 7.85 seconds (8.) for browse:2000
+!CSVLINE!+mit-12.1,browse:2000,7.85
real 0m7.883s
user 0m7.648s
sys 0m0.228s
Testing deriv under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/deriv.scm /tmp/r7rs-benchmarks/MIT/deriv.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/deriv.scm" => "/tmp/r7rs-benchmarks/MIT/deriv.bin"... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/deriv.bin" => "/tmp/r7rs-benchmarks/MIT/deriv.com"... done
Running...
Running deriv:10000000
Elapsed time: 4.4 seconds (4.) for deriv:10000000
+!CSVLINE!+mit-12.1,deriv:10000000,4.4
real 0m4.425s
user 0m3.960s
sys 0m0.452s
Testing destruc under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/destruc.scm /tmp/r7rs-benchmarks/MIT/destruc.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/destruc.scm" => "/tmp/r7rs-benchmarks/MIT/destruc.bin"... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/destruc.bin" => "/tmp/r7rs-benchmarks/MIT/destruc.com"... done
Running...
Running destruc:600:50:4000
Elapsed time: 3.73 seconds (4.) for destruc:600:50:4000
+!CSVLINE!+mit-12.1,destruc:600:50:4000,3.73
real 0m3.753s
user 0m3.436s
sys 0m0.313s
Testing diviter under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/diviter.scm /tmp/r7rs-benchmarks/MIT/diviter.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/diviter.scm" => "/tmp/r7rs-benchmarks/MIT/diviter.bin"... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/diviter.bin" => "/tmp/r7rs-benchmarks/MIT/diviter.com"... done
Running...
Running diviter:1000:1000000
Elapsed time: 2.25 seconds (3.) for diviter:1000:1000000
+!CSVLINE!+mit-12.1,diviter:1000:1000000,2.25
real 0m2.279s
user 0m1.827s
sys 0m0.446s
Testing divrec under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/divrec.scm /tmp/r7rs-benchmarks/MIT/divrec.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/divrec.scm" => "/tmp/r7rs-benchmarks/MIT/divrec.bin"... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/divrec.bin" => "/tmp/r7rs-benchmarks/MIT/divrec.com"... done
Running...
Running divrec:1000:1000000
Elapsed time: 5.81 seconds (5.) for divrec:1000:1000000
+!CSVLINE!+mit-12.1,divrec:1000:1000000,5.81
real 0m5.828s
user 0m5.341s
sys 0m0.476s
Testing puzzle under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/puzzle.scm /tmp/r7rs-benchmarks/MIT/puzzle.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/puzzle.scm" => "/tmp/r7rs-benchmarks/MIT/puzzle.bin"...
;Warning: Unreferenced bound variable: s1 (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/puzzle.bin" => "/tmp/r7rs-benchmarks/MIT/puzzle.com"... done
Running...
Running puzzle:1000
Elapsed time: 30.69 seconds (30.) for puzzle:1000
+!CSVLINE!+mit-12.1,puzzle:1000,30.69
real 0m30.710s
user 0m27.837s
sys 0m2.854s
Testing triangl under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/triangl.scm /tmp/r7rs-benchmarks/MIT/triangl.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/triangl.scm" => "/tmp/r7rs-benchmarks/MIT/triangl.bin"... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/triangl.bin" => "/tmp/r7rs-benchmarks/MIT/triangl.com"... done
Running...
Running triangl:22:1:50
Elapsed time: 12.63 seconds (12.) for triangl:22:1:50
+!CSVLINE!+mit-12.1,triangl:22:1:50,12.63
real 0m12.641s
user 0m12.628s
sys 0m0.007s
Testing tak under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/tak.scm /tmp/r7rs-benchmarks/MIT/tak.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/tak.scm" => "/tmp/r7rs-benchmarks/MIT/tak.bin"... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/tak.bin" => "/tmp/r7rs-benchmarks/MIT/tak.com"... done
Running...
Running tak:40:20:11:1
Elapsed time: 2.9 seconds (3.) for tak:40:20:11:1
+!CSVLINE!+mit-12.1,tak:40:20:11:1,2.9
real 0m2.912s
user 0m2.903s
sys 0m0.007s
Testing takl under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/takl.scm /tmp/r7rs-benchmarks/MIT/takl.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/takl.scm" => "/tmp/r7rs-benchmarks/MIT/takl.bin"... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/takl.bin" => "/tmp/r7rs-benchmarks/MIT/takl.com"... done
Running...
Running takl:40:20:12:1
Elapsed time: 6.05 seconds (6.) for takl:40:20:12:1
+!CSVLINE!+mit-12.1,takl:40:20:12:1,6.05
real 0m6.062s
user 0m6.052s
sys 0m0.007s
Testing ntakl under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/ntakl.scm /tmp/r7rs-benchmarks/MIT/ntakl.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/ntakl.scm" => "/tmp/r7rs-benchmarks/MIT/ntakl.bin"... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/ntakl.bin" => "/tmp/r7rs-benchmarks/MIT/ntakl.com"... done
Running...
Running ntakl:40:20:12:1
Elapsed time: 6.57 seconds (7.) for ntakl:40:20:12:1
+!CSVLINE!+mit-12.1,ntakl:40:20:12:1,6.57
real 0m6.583s
user 0m6.571s
sys 0m0.009s
Testing cpstak under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/cpstak.scm /tmp/r7rs-benchmarks/MIT/cpstak.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/cpstak.scm" => "/tmp/r7rs-benchmarks/MIT/cpstak.bin"... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/cpstak.bin" => "/tmp/r7rs-benchmarks/MIT/cpstak.com"... done
Running...
Running cpstak:40:20:11:1
Elapsed time: 4.91 seconds (5.) for cpstak:40:20:11:1
+!CSVLINE!+mit-12.1,cpstak:40:20:11:1,4.91
real 0m4.929s
user 0m4.486s
sys 0m0.429s
Testing ctak under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/ctak.scm /tmp/r7rs-benchmarks/MIT/ctak.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/ctak.scm" => "/tmp/r7rs-benchmarks/MIT/ctak.bin"... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/ctak.bin" => "/tmp/r7rs-benchmarks/MIT/ctak.com"... done
Running...
Running ctak:32:16:8:1
./bench: line 709: 350973 Killed ${MIT} --quiet --heap 500000 --load "$1" < "$2"
real 5m0.175s
user 3m2.560s
sys 1m57.421s
+!CSVLINE!+mit,ctak,ULIMITKILLED
Testing fib under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/fib.scm /tmp/r7rs-benchmarks/MIT/fib.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/fib.scm" => "/tmp/r7rs-benchmarks/MIT/fib.bin"... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/fib.bin" => "/tmp/r7rs-benchmarks/MIT/fib.com"... done
Running...
Running fib:40:5
Elapsed time: 5.82 seconds (6.) for fib:40:5
+!CSVLINE!+mit-12.1,fib:40:5,5.82
real 0m5.832s
user 0m5.822s
sys 0m0.007s
Testing fibc under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/fibc.scm /tmp/r7rs-benchmarks/MIT/fibc.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/fibc.scm" => "/tmp/r7rs-benchmarks/MIT/fibc.bin"... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/fibc.bin" => "/tmp/r7rs-benchmarks/MIT/fibc.com"... done
Running...
Running fibc:30:10
Elapsed time: 193.53 seconds (194.) for fibc:30:10
+!CSVLINE!+mit-12.1,fibc:30:10,193.53
real 3m13.556s
user 1m58.565s
sys 1m14.869s
Testing fibfp under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/fibfp.scm /tmp/r7rs-benchmarks/MIT/fibfp.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/fibfp.scm" => "/tmp/r7rs-benchmarks/MIT/fibfp.bin"... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/fibfp.bin" => "/tmp/r7rs-benchmarks/MIT/fibfp.com"... done
Running...
Running fibfp:35.:10
Elapsed time: 4.32 seconds (4.) for fibfp:35.:10
+!CSVLINE!+mit-12.1,fibfp:35.:10,4.32
real 0m4.348s
user 0m3.862s
sys 0m0.475s
Testing sum under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/sum.scm /tmp/r7rs-benchmarks/MIT/sum.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/sum.scm" => "/tmp/r7rs-benchmarks/MIT/sum.bin"... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/sum.bin" => "/tmp/r7rs-benchmarks/MIT/sum.com"... done
Running...
Running sum:10000:200000
Elapsed time: 5.37 seconds (6.) for sum:10000:200000
+!CSVLINE!+mit-12.1,sum:10000:200000,5.37
real 0m5.385s
user 0m5.371s
sys 0m0.010s
Testing sumfp under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/sumfp.scm /tmp/r7rs-benchmarks/MIT/sumfp.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/sumfp.scm" => "/tmp/r7rs-benchmarks/MIT/sumfp.bin"... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/sumfp.bin" => "/tmp/r7rs-benchmarks/MIT/sumfp.com"... done
Running...
Running sumfp:1000000.:500
Elapsed time: 6.89 seconds (7.) for sumfp:1000000.:500
+!CSVLINE!+mit-12.1,sumfp:1000000.:500,6.89
real 0m6.920s
user 0m6.583s
sys 0m0.319s
Testing fft under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/fft.scm /tmp/r7rs-benchmarks/MIT/fft.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/fft.scm" => "/tmp/r7rs-benchmarks/MIT/fft.bin"... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/fft.bin" => "/tmp/r7rs-benchmarks/MIT/fft.com"... done
Running...
Running fft:65536:100
Elapsed time: 6.24 seconds (6.) for fft:65536:100
+!CSVLINE!+mit-12.1,fft:65536:100,6.24
real 0m6.265s
user 0m5.790s
sys 0m0.462s
Testing mbrot under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/mbrot.scm /tmp/r7rs-benchmarks/MIT/mbrot.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/mbrot.scm" => "/tmp/r7rs-benchmarks/MIT/mbrot.bin"... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/mbrot.bin" => "/tmp/r7rs-benchmarks/MIT/mbrot.com"... done
Running...
Running mbrot:75:1000
Elapsed time: 8.83 seconds (9.) for mbrot:75:1000
+!CSVLINE!+mit-12.1,mbrot:75:1000,8.83
real 0m8.853s
user 0m8.470s
sys 0m0.359s
Testing mbrotZ under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/mbrotZ.scm /tmp/r7rs-benchmarks/MIT/mbrotZ.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/mbrotZ.scm" => "/tmp/r7rs-benchmarks/MIT/mbrotZ.bin"... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/mbrotZ.bin" => "/tmp/r7rs-benchmarks/MIT/mbrotZ.com"... done
Running...
Running mbrotZ:75:1000
Elapsed time: 19.65 seconds (20.) for mbrotZ:75:1000
+!CSVLINE!+mit-12.1,mbrotZ:75:1000,19.65
real 0m19.683s
user 0m19.174s
sys 0m0.469s
Testing nucleic under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/nucleic.scm /tmp/r7rs-benchmarks/MIT/nucleic.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/nucleic.scm" => "/tmp/r7rs-benchmarks/MIT/nucleic.bin"...
;Warning: Unreferenced bound variable: partial-inst (|#[unnamed-procedure]| reference)
;Warning: Unreferenced bound variable: s1 (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/nucleic.bin" => "/tmp/r7rs-benchmarks/MIT/nucleic.com"... done
Running...
Running nucleic:50
Elapsed time: 4.26 seconds (4.) for nucleic:50
+!CSVLINE!+mit-12.1,nucleic:50,4.26
real 0m4.301s
user 0m3.832s
sys 0m0.459s
Testing pi under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/pi.scm /tmp/r7rs-benchmarks/MIT/pi.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/pi.scm" => "/tmp/r7rs-benchmarks/MIT/pi.bin"...
;Warning: Unreferenced bound variable: r (|#[unnamed-procedure]| square-root)
;... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/pi.bin" => "/tmp/r7rs-benchmarks/MIT/pi.com"... done
Running...
Running pi:50:500:50:100
Elapsed time: 1.79 seconds (2.) for pi:50:500:50:100
+!CSVLINE!+mit-12.1,pi:50:500:50:100,1.79
real 0m1.811s
user 0m1.762s
sys 0m0.047s
Testing pnpoly under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/pnpoly.scm /tmp/r7rs-benchmarks/MIT/pnpoly.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/pnpoly.scm" => "/tmp/r7rs-benchmarks/MIT/pnpoly.bin"...
;Warning: Unreferenced bound variable: s1 (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/pnpoly.bin" => "/tmp/r7rs-benchmarks/MIT/pnpoly.com"... done
Running...
Running pnpoly:1000000
Elapsed time: 18.92 seconds (19.) for pnpoly:1000000
+!CSVLINE!+mit-12.1,pnpoly:1000000,18.92
real 0m18.950s
user 0m18.493s
sys 0m0.443s
Testing ray under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/ray.scm /tmp/r7rs-benchmarks/MIT/ray.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/ray.scm" => "/tmp/r7rs-benchmarks/MIT/ray.bin"...
;Warning: Unreferenced bound variable: s1 (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/ray.bin" => "/tmp/r7rs-benchmarks/MIT/ray.com"... done
Running...
Running ray:50
Elapsed time: 11.34 seconds (12.) for ray:50
+!CSVLINE!+mit-12.1,ray:50,11.34
real 0m11.373s
user 0m10.860s
sys 0m0.496s
Testing simplex under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/simplex.scm /tmp/r7rs-benchmarks/MIT/simplex.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/simplex.scm" => "/tmp/r7rs-benchmarks/MIT/simplex.bin"...
;Warning: Unreferenced bound variable: input (test)
;Warning: Unreferenced bound variable: s1 (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/simplex.bin" => "/tmp/r7rs-benchmarks/MIT/simplex.com"... done
Running...
Running simplex:1000000
Elapsed time: 13.97 seconds (14.) for simplex:1000000
+!CSVLINE!+mit-12.1,simplex:1000000,13.97
real 0m14.002s
user 0m13.661s
sys 0m0.329s
Testing ack under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/ack.scm /tmp/r7rs-benchmarks/MIT/ack.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/ack.scm" => "/tmp/r7rs-benchmarks/MIT/ack.bin"... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/ack.bin" => "/tmp/r7rs-benchmarks/MIT/ack.com"... done
Running...
Running ack:3:12:2
Elapsed time: 10.92 seconds (11.) for ack:3:12:2
+!CSVLINE!+mit-12.1,ack:3:12:2,10.92
real 0m10.933s
user 0m10.920s
sys 0m0.007s
Testing array1 under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/array1.scm /tmp/r7rs-benchmarks/MIT/array1.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/array1.scm" => "/tmp/r7rs-benchmarks/MIT/array1.bin"... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/array1.bin" => "/tmp/r7rs-benchmarks/MIT/array1.com"... done
Running...
Running array1:1000000:500
Elapsed time: 24.12 seconds (24.) for array1:1000000:500
+!CSVLINE!+mit-12.1,array1:1000000:500,24.12
real 0m24.146s
user 0m23.666s
sys 0m0.449s
Testing string under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/string.scm /tmp/r7rs-benchmarks/MIT/string.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/string.scm" => "/tmp/r7rs-benchmarks/MIT/string.bin"... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/string.bin" => "/tmp/r7rs-benchmarks/MIT/string.com"... done
Running...
Running string:500000:100
Elapsed time: 136.16 seconds (137.) for string:500000:100
+!CSVLINE!+mit-12.1,string:500000:100,136.16
real 2m16.187s
user 2m15.596s
sys 0m0.430s
Testing sum1 under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/sum1.scm /tmp/r7rs-benchmarks/MIT/sum1.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/sum1.scm" => "/tmp/r7rs-benchmarks/MIT/sum1.bin"...
;Warning: Unreferenced bound variable: s1 (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/sum1.bin" => "/tmp/r7rs-benchmarks/MIT/sum1.com"... done
Running...
Running sum1:25
Elapsed time: 54.12 seconds (54.) for sum1:25
+!CSVLINE!+mit-12.1,sum1:25,54.12
real 0m54.151s
user 0m53.596s
sys 0m0.495s
Testing cat under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/cat.scm /tmp/r7rs-benchmarks/MIT/cat.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/cat.scm" => "/tmp/r7rs-benchmarks/MIT/cat.bin"...
;Warning: Unreferenced bound variable: result (|#[unnamed-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: s1 (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: s2 (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: output (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| run-benchmark)
;... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/cat.bin" => "/tmp/r7rs-benchmarks/MIT/cat.com"... done
Running...
Running cat:50
./bench: line 709: 351878 Killed ${MIT} --quiet --heap 500000 --load "$1" < "$2"
real 5m0.162s
user 4m59.672s
sys 0m0.300s
+!CSVLINE!+mit,cat,ULIMITKILLED
Testing tail under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/tail.scm /tmp/r7rs-benchmarks/MIT/tail.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/tail.scm" => "/tmp/r7rs-benchmarks/MIT/tail.bin"...
;Warning: Unreferenced bound variable: result (|#[unnamed-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: s1 (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: s2 (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: output (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| run-benchmark)
;... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/tail.bin" => "/tmp/r7rs-benchmarks/MIT/tail.com"... done
Running...
Running tail:50
Elapsed time: 236.47 seconds (237.) for tail:50
+!CSVLINE!+mit-12.1,tail:50,236.47
real 3m56.495s
user 3m55.237s
sys 0m1.076s
Testing wc under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/wc.scm /tmp/r7rs-benchmarks/MIT/wc.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/wc.scm" => "/tmp/r7rs-benchmarks/MIT/wc.bin"... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/wc.bin" => "/tmp/r7rs-benchmarks/MIT/wc.com"... done
Running...
Running wc:inputs/bib:50
Elapsed time: 228.12 seconds (228.) for wc:inputs/bib:50
+!CSVLINE!+mit-12.1,wc:inputs/bib:50,228.12
real 3m48.132s
user 3m47.821s
sys 0m0.050s
Testing read1 under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/read1.scm /tmp/r7rs-benchmarks/MIT/read1.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/read1.scm" => "/tmp/r7rs-benchmarks/MIT/read1.bin"...
;Warning: Unreferenced bound variable: s1 (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/read1.bin" => "/tmp/r7rs-benchmarks/MIT/read1.com"... done
Running...
Running read1:2500
Elapsed time: 74.62 seconds (75.) for read1:2500
+!CSVLINE!+mit-12.1,read1:2500,74.62
real 1m14.647s
user 1m13.929s
sys 0m0.622s
Testing compiler under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/compiler.scm /tmp/r7rs-benchmarks/MIT/compiler.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/compiler.scm" => "/tmp/r7rs-benchmarks/MIT/compiler.bin"...
;Warning: Unreferenced bound variable: expr (scheme-global-eval)
;Warning: Unreferenced bound variable: err (scheme-global-eval)
;Warning: Unreferenced bound variable: filename (pinpoint-error)
;Warning: Unreferenced bound variable: line (pinpoint-error)
;Warning: Unreferenced bound variable: char (pinpoint-error)
;Warning: Unreferenced bound variable: env (|#[unnamed-procedure]| env-lookup-macro)
;Warning: Unreferenced bound variable: name (|#[unnamed-procedure]| env-lookup-macro)
;Warning: Unreferenced bound variable: source (flag-decl)
;Warning: Unreferenced bound variable: source (parameterized-decl)
;Warning: Unreferenced bound variable: source (boolean-decl)
;Warning: Unreferenced bound variable: source (namable-decl)
;Warning: Unreferenced bound variable: source (namable-boolean-decl)
;Warning: Unreferenced bound variable: source (check-arg-and-result-types)
;Warning: Unreferenced bound variable: use (pt-c-procedure)
;Warning: Unreferenced bound variable: use (pt-quasiquote)
;Warning: Unreferenced bound variable: use (pt-set!)
;Warning: Unreferenced bound variable: var (|#[unnamed-procedure]| |#[let-procedure]| |#[let-procedure]| loop1 |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: decl (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| pt-combination)
;Warning: Unreferenced bound variable: use (pt-combination)
;Warning: Unreferenced bound variable: use (pt-delay)
;Warning: Unreferenced bound variable: use (pt-future)
;Warning: Unreferenced bound variable: decls (|#[unnamed-procedure]| |#[let-procedure]| make-proc-obj)
;Warning: Unreferenced bound variable: x (|#[unnamed-procedure]| |#[let-procedure]| generate-report)
;Warning: Unreferenced bound variable: info-port (trace-unindent)
;Warning: Unreferenced bound variable: lbl (|#[let-procedure]| gen-proc)
;Warning: Unreferenced bound variable: live (|#[let-procedure]| gen-proc)
;Warning: Unreferenced bound variable: strict-pat (predicate-test)
;Warning: Unreferenced bound variable: strict-pat (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: best-payoff (|#[unnamed-procedure]| loop |#[let-procedure]| |#[let-procedure]| free-vars-order)
;Warning: Unreferenced bound variable: ordered-args (|#[let-procedure]| free-vars-order)
;Warning: Unreferenced bound variable: all-live (|#[let-procedure]| gen-let)
;Warning: Unreferenced bound variable: asm-port (asm-close-output-port)
;Warning: Unreferenced bound variable: asm-port (asm-display)
;Warning: Unreferenced bound variable: m (|#[let-procedure]| |#[let-procedure]| ofile-wsym)
;Warning: Unreferenced bound variable: m (|#[let-procedure]| |#[let-procedure]| ofile-lsym)
;Warning: Unreferenced bound variable: gvm-instr (|#[let-procedure]| ofile-gvm-instr)
;Warning: Unreferenced bound variable: min-args (label-info)
;Warning: Unreferenced bound variable: rest? (label-info)
;Warning: Unreferenced bound variable: c-intf (dump)
;Warning: Unreferenced bound variable: index (dump-object)
;Warning: Unreferenced bound variable: sym (dump-symbol)
;Warning: Unreferenced bound variable: prev-bb (loop |#[let-procedure]| |#[let-procedure]| dump-procedure)
;Warning: Unreferenced bound variable: nb-regs (|#[let-procedure]| |#[let-procedure]| loop1 |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: sn (gen-label-simple)
;Warning: Unreferenced bound variable: sn (gen-label-entry)
;Warning: Unreferenced bound variable: sn (gen-label-return)
;Warning: Unreferenced bound variable: sn (gen-label-task-entry)
;Warning: Unreferenced bound variable: sn (gen-label-task-return)
;Warning: Unreferenced bound variable: sn-first-opnd (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| gen-add-in-place)
;Warning: Unreferenced bound variable: sn-first-opnd (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| gen-sub-in-place)
;Warning: Unreferenced bound variable: sn-first-opnd (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| gen-div-in-place)
;Warning: Unreferenced bound variable: sn-first-opnd (|#[let-procedure]| |#[let-procedure]| gen-div)
;Warning: Unreferenced bound variable: sn-first-opnd (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| gen-op-in-place ...)
;Warning: Unreferenced bound variable: x (|#[unnamed-procedure]|)
;Warning: Unreferenced bound variable: decls (|#[unnamed-procedure]| |#[let-procedure]| |#[unnamed-procedure]| safe)
;Warning: Unreferenced bound variable: proc (|#[unnamed-procedure]| safe)
;Warning: Unreferenced bound variable: proc-name (|#[unnamed-procedure]| safe)
;Warning: Unreferenced bound variable: proc-name (|#[unnamed-procedure]| unsafe)
;Warning: Unreferenced bound variable: sn-loc (|#[let-procedure]| |#[unnamed-procedure]|)
;Warning: Unreferenced bound variable: sn-loc (|#[let-procedure]| |#[unnamed-procedure]|)
;Warning: Unreferenced bound variable: sn-loc (|#[let-procedure]| |#[unnamed-procedure]|)
;Warning: Unreferenced bound variable: sn-loc (|#[let-procedure]| |#[unnamed-procedure]|)
;Warning: Unreferenced bound variable: sn-loc (|#[let-procedure]| |#[unnamed-procedure]|)
;Warning: Unreferenced bound variable: sn-loc (|#[let-procedure]| |#[unnamed-procedure]|)
;Warning: Unreferenced bound variable: sn-loc (|#[let-procedure]| |#[unnamed-procedure]|)
;Warning: Unreferenced bound variable: sn-loc (|#[let-procedure]| |#[unnamed-procedure]|)
;Warning: Unreferenced bound variable: sn-loc (|#[let-procedure]| |#[unnamed-procedure]|)
;Warning: Unreferenced bound variable: sn-loc (|#[let-procedure]| |#[unnamed-procedure]|)
;Warning: Unreferenced bound variable: sn-loc (|#[let-procedure]| |#[unnamed-procedure]|)
;Warning: Unreferenced bound variable: sn-loc (|#[let-procedure]| |#[unnamed-procedure]|)
;Warning: Unreferenced bound variable: sn-loc (|#[let-procedure]| |#[unnamed-procedure]|)
;Warning: Unreferenced bound variable: sn-loc (|#[let-procedure]| |#[unnamed-procedure]|)
;Warning: Unreferenced bound variable: sn-loc (|#[let-procedure]| |#[unnamed-procedure]|)
;Warning: Unreferenced bound variable: sn-loc (|#[let-procedure]| |#[unnamed-procedure]|)
;Warning: Unreferenced bound variable: sn-loc (|#[let-procedure]| |#[unnamed-procedure]|)
;Warning: Unreferenced bound variable: sn-loc (|#[let-procedure]| |#[unnamed-procedure]|)
;Warning: Unreferenced bound variable: sn-loc (|#[let-procedure]| |#[unnamed-procedure]|)
;Warning: Unreferenced bound variable: sn-loc (|#[let-procedure]| |#[unnamed-procedure]|)
;Warning: Unreferenced bound variable: sn-loc (|#[let-procedure]| |#[unnamed-procedure]|)
;Warning: Unreferenced bound variable: sn-loc (|#[let-procedure]| |#[unnamed-procedure]|)
;Warning: Unreferenced bound variable: sn-loc (|#[let-procedure]| |#[unnamed-procedure]|)
;Warning: Unreferenced bound variable: sn-loc (|#[let-procedure]| |#[unnamed-procedure]|)
;Warning: Unreferenced bound variable: sn-loc (|#[let-procedure]| |#[unnamed-procedure]|)
;Warning: Unreferenced bound variable: opnds (|#[unnamed-procedure]|)
;... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/compiler.bin" => "/tmp/r7rs-benchmarks/MIT/compiler.com"... done
Running...
Running compiler:2000
Elapsed time: 8.8 seconds (8.) for compiler:2000
+!CSVLINE!+mit-12.1,compiler:2000,8.8
real 0m8.897s
user 0m8.367s
sys 0m0.474s
Testing conform under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/conform.scm /tmp/r7rs-benchmarks/MIT/conform.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/conform.scm" => "/tmp/r7rs-benchmarks/MIT/conform.bin"... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/conform.bin" => "/tmp/r7rs-benchmarks/MIT/conform.com"... done
Running...
Running conform:500
Elapsed time: 7.71 seconds (8.) for conform:500
+!CSVLINE!+mit-12.1,conform:500,7.71
real 0m7.741s
user 0m7.327s
sys 0m0.402s
Testing dynamic under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/dynamic.scm /tmp/r7rs-benchmarks/MIT/dynamic.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/dynamic.scm" => "/tmp/r7rs-benchmarks/MIT/dynamic.bin"...
;Warning: Unreferenced bound variable: env (dynamic-parse-quote)
;Warning: Unreferenced bound variable: env (dynamic-parse-do)
;Warning: Unreferenced bound variable: args (dynamic-parse-do)
;Warning: Unreferenced bound variable: env (dynamic-parse-quasiquote)
;Warning: Unreferenced bound variable: args (dynamic-parse-quasiquote)
;Warning: Unreferenced bound variable: s1 (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/dynamic.bin" => "/tmp/r7rs-benchmarks/MIT/dynamic.com"... done
Running...
Running dynamic:500
Elapsed time: 51.35 seconds (52.) for dynamic:500
+!CSVLINE!+mit-12.1,dynamic:500,51.35
real 0m51.387s
user 0m50.794s
sys 0m0.522s
Testing earley under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/earley.scm /tmp/r7rs-benchmarks/MIT/earley.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/earley.scm" => "/tmp/r7rs-benchmarks/MIT/earley.bin"...
;Warning: Unreferenced bound variable: toks (produce |#[unnamed-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: nb-nts (|#[let-procedure]| |#[let-procedure]| parsed? |#[unnamed-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: s1 (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/earley.bin" => "/tmp/r7rs-benchmarks/MIT/earley.com"... done
Running...
Running earley:1
Elapsed time: 3.11 seconds (3.) for earley:1
+!CSVLINE!+mit-12.1,earley:1,3.11
real 0m3.127s
user 0m2.936s
sys 0m0.187s
Testing graphs under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/graphs.scm /tmp/r7rs-benchmarks/MIT/graphs.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/graphs.scm" => "/tmp/r7rs-benchmarks/MIT/graphs.bin"...
;Warning: Unreferenced bound variable: leaf-depth (|#[unnamed-procedure]| |#[unnamed-procedure]| |#[let-procedure]| make-minimal?)
;Warning: Unreferenced bound variable: from (|#[unnamed-procedure]| |#[let-procedure]| fold-over-rdg)
;Warning: Unreferenced bound variable: perm (|#[unnamed-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: state (|#[unnamed-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: state (|#[unnamed-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/graphs.bin" => "/tmp/r7rs-benchmarks/MIT/graphs.com"... done
Running...
Running graphs:7:3
Elapsed time: 16.97 seconds (17.) for graphs:7:3
+!CSVLINE!+mit-12.1,graphs:7:3,16.97
real 0m16.994s
user 0m16.478s
sys 0m0.476s
Testing lattice under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/lattice.scm /tmp/r7rs-benchmarks/MIT/lattice.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/lattice.scm" => "/tmp/r7rs-benchmarks/MIT/lattice.bin"...
;Warning: Unreferenced bound variable: x (|#[unnamed-procedure]| count-maps)
;... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/lattice.bin" => "/tmp/r7rs-benchmarks/MIT/lattice.com"... done
Running...
Running lattice:44:10
Elapsed time: 5.84 seconds (6.) for lattice:44:10
+!CSVLINE!+mit-12.1,lattice:44:10,5.84
real 0m5.862s
user 0m5.684s
sys 0m0.173s
Testing matrix under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/matrix.scm /tmp/r7rs-benchmarks/MIT/matrix.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/matrix.scm" => "/tmp/r7rs-benchmarks/MIT/matrix.bin"...
;Warning: Unreferenced bound variable: gcd (|#[unnamed-procedure]| |#[unnamed-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: ignore (|#[unnamed-procedure]| |#[unnamed-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/matrix.bin" => "/tmp/r7rs-benchmarks/MIT/matrix.com"... done
Running...
Running matrix:5:5:2500
Elapsed time: 4.14 seconds (4.) for matrix:5:5:2500
+!CSVLINE!+mit-12.1,matrix:5:5:2500,4.14
real 0m4.169s
user 0m3.669s
sys 0m0.493s
Testing maze under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/maze.scm /tmp/r7rs-benchmarks/MIT/maze.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/maze.scm" => "/tmp/r7rs-benchmarks/MIT/maze.bin"...
;Warning: Unreferenced bound variable: exit (|#[let-procedure]| |#[let-procedure]| pmaze)
;... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/maze.bin" => "/tmp/r7rs-benchmarks/MIT/maze.com"... done
Running...
Running maze:20:7:10000
Elapsed time: 3.48 seconds (3.) for maze:20:7:10000
+!CSVLINE!+mit-12.1,maze:20:7:10000,3.48
real 0m3.513s
user 0m3.414s
sys 0m0.095s
Testing mazefun under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/mazefun.scm /tmp/r7rs-benchmarks/MIT/mazefun.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/mazefun.scm" => "/tmp/r7rs-benchmarks/MIT/mazefun.bin"...
;Warning: Unreferenced bound variable: i (|#[let-procedure]| try-to-pierce)
;Warning: Unreferenced bound variable: j (|#[let-procedure]| try-to-pierce)
;... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/mazefun.bin" => "/tmp/r7rs-benchmarks/MIT/mazefun.com"... done
Running...
Running mazefun:11:11:10000
Elapsed time: 23.66 seconds (24.) for mazefun:11:11:10000
+!CSVLINE!+mit-12.1,mazefun:11:11:10000,23.66
real 0m23.678s
user 0m23.171s
sys 0m0.472s
Testing nqueens under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/nqueens.scm /tmp/r7rs-benchmarks/MIT/nqueens.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/nqueens.scm" => "/tmp/r7rs-benchmarks/MIT/nqueens.bin"... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/nqueens.bin" => "/tmp/r7rs-benchmarks/MIT/nqueens.com"... done
Running...
Running nqueens:13:10
Elapsed time: 9.3 seconds (10.) for nqueens:13:10
+!CSVLINE!+mit-12.1,nqueens:13:10,9.3
real 0m9.325s
user 0m8.854s
sys 0m0.460s
Testing paraffins under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/paraffins.scm /tmp/r7rs-benchmarks/MIT/paraffins.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/paraffins.scm" => "/tmp/r7rs-benchmarks/MIT/paraffins.bin"... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/paraffins.bin" => "/tmp/r7rs-benchmarks/MIT/paraffins.com"... done
Running...
Running paraffins:23:10
Elapsed time: 1.52 seconds (1.) for paraffins:23:10
+!CSVLINE!+mit-12.1,paraffins:23:10,1.52
real 0m1.536s
user 0m1.141s
sys 0m0.391s
Testing parsing under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/parsing.scm /tmp/r7rs-benchmarks/MIT/parsing.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/parsing.scm" => "/tmp/r7rs-benchmarks/MIT/parsing.bin"...
;Warning: Unreferenced bound variable: #[uninterned-symbol 12 key] (|#[let-procedure]| state30 |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: #[uninterned-symbol 13 key] (|#[let-procedure]| state31 |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: #[uninterned-symbol 14 key] (|#[let-procedure]| state32 |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: #[uninterned-symbol 15 key] (|#[let-procedure]| state33 |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: #[uninterned-symbol 16 key] (|#[let-procedure]| state34 |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: #[uninterned-symbol 17 key] (|#[let-procedure]| state35 |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: #[uninterned-symbol 18 key] (|#[let-procedure]| state36 |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: #[uninterned-symbol 19 key] (|#[let-procedure]| state37 |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: #[uninterned-symbol 20 key] (|#[let-procedure]| state38 |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: #[uninterned-symbol 21 key] (|#[let-procedure]| state39 |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: #[uninterned-symbol 22 key] (|#[let-procedure]| state40 |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: #[uninterned-symbol 23 key] (|#[let-procedure]| state41 |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced defined variable: state31
;Warning: Unreferenced defined variable: state32
;Warning: Unreferenced defined variable: state33
;Warning: Unreferenced defined variable: state34
;Warning: Unreferenced defined variable: state35
;Warning: Unreferenced defined variable: state36
;Warning: Unreferenced defined variable: state37
;Warning: Unreferenced defined variable: state38
;Warning: Unreferenced defined variable: state39
;Warning: Unreferenced defined variable: state40
;Warning: Unreferenced defined variable: state41
;Warning: Unreferenced bound variable: linenumberoflasterror (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: totalerrors (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: s1 (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/parsing.bin" => "/tmp/r7rs-benchmarks/MIT/parsing.com"... aborted
;Aborting!: out of memory
+!CSVLINE!+mit,parsing,COMPILEERROR
Testing peval under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/peval.scm /tmp/r7rs-benchmarks/MIT/peval.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/peval.scm" => "/tmp/r7rs-benchmarks/MIT/peval.bin"...
;Warning: Unreferenced bound variable: s1 (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/peval.bin" => "/tmp/r7rs-benchmarks/MIT/peval.com"... done
Running...
Running peval:2000
Elapsed time: 26.76 seconds (27.) for peval:2000
+!CSVLINE!+mit-12.1,peval:2000,26.76
real 0m26.791s
user 0m26.266s
sys 0m0.472s
Testing primes under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/primes.scm /tmp/r7rs-benchmarks/MIT/primes.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/primes.scm" => "/tmp/r7rs-benchmarks/MIT/primes.bin"... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/primes.bin" => "/tmp/r7rs-benchmarks/MIT/primes.com"... done
Running...
Running primes:1000:10000
Elapsed time: 1.4 seconds (2.) for primes:1000:10000
+!CSVLINE!+mit-12.1,primes:1000:10000,1.4
real 0m1.420s
user 0m1.137s
sys 0m0.279s
Testing quicksort under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/quicksort.scm /tmp/r7rs-benchmarks/MIT/quicksort.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/quicksort.scm" => "/tmp/r7rs-benchmarks/MIT/quicksort.bin"...
;Warning: Unreferenced bound variable: s2 (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: output (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| run-benchmark)
;Warning: Unreferenced bound variable: ignore2 (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[unnamed-procedure]| ...)
;Warning: Unreferenced bound variable: ignore4 (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[unnamed-procedure]| ...)
;Warning: Unreferenced bound variable: ignore1 (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[unnamed-procedure]| |#[let-procedure]|)
;Warning: Unreferenced bound variable: ignore3 (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[unnamed-procedure]| |#[let-procedure]|)
;... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/quicksort.bin" => "/tmp/r7rs-benchmarks/MIT/quicksort.com"... done
Running...
Running quicksort:10000:2500
Elapsed time: 18.64 seconds (19.) for quicksort:10000:2500
+!CSVLINE!+mit-12.1,quicksort:10000:2500,18.64
real 0m18.660s
user 0m18.358s
sys 0m0.288s
Testing scheme under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/scheme.scm /tmp/r7rs-benchmarks/MIT/scheme.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/scheme.scm" => "/tmp/r7rs-benchmarks/MIT/scheme.bin"...
;Warning: Unreferenced bound variable: env (comp-self-eval)
;Warning: Unreferenced bound variable: env (comp-quote)
;Warning: Unreferenced bound variable: env (comp-unquote)
;Warning: Unreferenced bound variable: env (comp-unquote-splicing)
;Warning: Unreferenced bound variable: env (comp-define-macro)
;Warning: Unreferenced bound variable: rte (|#[unnamed-procedure]| gen-glo-ref)
;Warning: Unreferenced bound variable: rte (|#[unnamed-procedure]| |#[let-procedure]| gen-cst)
;Warning: Unreferenced bound variable: rte (|#[unnamed-procedure]| |#[let-procedure]| gen-cst)
;Warning: Unreferenced bound variable: rte (|#[unnamed-procedure]| |#[let-procedure]| gen-cst)
;Warning: Unreferenced bound variable: rte (|#[unnamed-procedure]| |#[let-procedure]| gen-cst)
;Warning: Unreferenced bound variable: rte (|#[unnamed-procedure]| |#[let-procedure]| gen-cst)
;Warning: Unreferenced bound variable: rte (|#[unnamed-procedure]| |#[let-procedure]| gen-cst)
;Warning: Unreferenced bound variable: rte (|#[unnamed-procedure]| |#[let-procedure]| gen-cst)
;Warning: Unreferenced bound variable: rte (|#[unnamed-procedure]| |#[let-procedure]| gen-cst)
;Warning: Unreferenced bound variable: rte (|#[unnamed-procedure]| |#[let-procedure]| gen-cst)
;Warning: Unreferenced bound variable: key (|#[unnamed-procedure]| gen-case-else)
;Warning: Unreferenced bound variable: rte (|#[unnamed-procedure]| gen-macro)
;Warning: Unreferenced bound variable: s1 (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/scheme.bin" => "/tmp/r7rs-benchmarks/MIT/scheme.com"... done
Running...
Running scheme:100000
Elapsed time: 11.3 seconds (11.) for scheme:100000
+!CSVLINE!+mit-12.1,scheme:100000,11.3
real 0m11.327s
user 0m11.068s
sys 0m0.250s
Testing slatex under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/slatex.scm /tmp/r7rs-benchmarks/MIT/slatex.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/slatex.scm" => "/tmp/r7rs-benchmarks/MIT/slatex.bin"...
;Warning: Unreferenced bound variable: z (slatex.force-output)
;Warning: Unreferenced bound variable: i (slatex.ignore2)
;Warning: Unreferenced bound variable: ii (slatex.ignore2)
;Warning: Unreferenced bound variable: result (|#[unnamed-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: s1 (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: s2 (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| ...)
;Warning: Unreferenced bound variable: output (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| run-benchmark)
;... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/slatex.bin" => "/tmp/r7rs-benchmarks/MIT/slatex.com"... done
Running...
Running slatex:500
Elapsed time: 80.41 seconds (80.) for slatex:500
+!CSVLINE!+mit-12.1,slatex:500,80.41
real 1m20.447s
user 1m16.335s
sys 0m3.739s
Testing chudnovsky under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/chudnovsky.scm /tmp/r7rs-benchmarks/MIT/chudnovsky.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/chudnovsky.scm" => "/tmp/r7rs-benchmarks/MIT/chudnovsky.bin"...
;Warning: Unreferenced bound variable: r (|#[unnamed-procedure]| integer-sqrt)
;Warning: Unreferenced bound variable: g (|#[let-procedure]| |#[let-procedure]| |#[let-procedure]| |#[let-procedure]| pi)
;... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/chudnovsky.bin" => "/tmp/r7rs-benchmarks/MIT/chudnovsky.com"... done
Running...
Running chudnovsky:50:500:50:1000
Elapsed time: .58 seconds (1.) for chudnovsky:50:500:50:1000
+!CSVLINE!+mit-12.1,chudnovsky:50:500:50:1000,.58
real 0m0.598s
user 0m0.557s
sys 0m0.040s
Testing nboyer under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/nboyer.scm /tmp/r7rs-benchmarks/MIT/nboyer.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/nboyer.scm" => "/tmp/r7rs-benchmarks/MIT/nboyer.bin"...
;Warning: Unreferenced bound variable: args (setup-boyer)
;Warning: Unreferenced bound variable: args (test-boyer)
;Warning: Unreferenced bound variable: property (put |#[let-procedure]|)
;Warning: Unreferenced bound variable: property (get |#[let-procedure]|)
;Warning: Unreferenced defined variable: trans-of-implies
;... done
;Compiling file: "/tmp/r7rs-benchmarks/MIT/nboyer.bin" => "/tmp/r7rs-benchmarks/MIT/nboyer.com"... done
Running...
Running nboyer:5:1
Elapsed time: 2.12 seconds (2.) for nboyer:5:1
+!CSVLINE!+mit-12.1,nboyer:5:1,2.12
real 0m2.139s
user 0m1.891s
sys 0m0.243s
Testing sboyer under MIT
Including prelude /home/nex/src/r7rs-benchmarks/src/MIT-prelude.scm
Compiling...
mit_comp /tmp/r7rs-benchmarks/MIT/sboyer.scm /tmp/r7rs-benchmarks/MIT/sboyer.com
;Generating SCode for file: "/tmp/r7rs-benchmarks/MIT/sboyer.scm" => "/tmp/r7rs-benchmarks/MIT/sboyer.bin"...
;Warning: Unreferenced bound variable: property (put |#[let-procedure]|)
;Warning: Unreferenced bound variable: property (get |#[let-procedure]|)
;Warning: Unreferenced defined variable: trans-of-implies