forked from ecraven/r7rs-benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
results.S7
911 lines (790 loc) · 26.4 KB
/
results.S7
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
****************************
Benchmarking S7 on Sat 6 Jul 10:55:44 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 S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/browse.scm /tmp/r7rs-benchmarks/S7/browse.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/browse.scm
Running browse:2000
Elapsed time: 25.434 seconds (25) for browse:2000
+!CSVLINE!+s7-10.12,browse:2000,25.434
real 0m25.492s
user 0m25.440s
sys 0m0.003s
Testing deriv under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/deriv.scm /tmp/r7rs-benchmarks/S7/deriv.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/deriv.scm
Running deriv:10000000
Elapsed time: 27.688 seconds (27) for deriv:10000000
+!CSVLINE!+s7-10.12,deriv:10000000,27.688
real 0m27.760s
user 0m27.687s
sys 0m0.007s
Testing destruc under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/destruc.scm /tmp/r7rs-benchmarks/S7/destruc.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/destruc.scm
Running destruc:600:50:4000
Elapsed time: 13.885 seconds (13) for destruc:600:50:4000
+!CSVLINE!+s7-10.12,destruc:600:50:4000,13.885
real 0m13.904s
user 0m13.885s
sys 0m0.007s
Testing diviter under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/diviter.scm /tmp/r7rs-benchmarks/S7/diviter.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/diviter.scm
Running diviter:1000:1000000
Elapsed time: 10.351 seconds (10) for diviter:1000:1000000
+!CSVLINE!+s7-10.12,diviter:1000:1000000,10.351
real 0m10.368s
user 0m10.356s
sys 0m0.003s
Testing divrec under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/divrec.scm /tmp/r7rs-benchmarks/S7/divrec.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/divrec.scm
Running divrec:1000:1000000
Elapsed time: 13.142 seconds (13) for divrec:1000:1000000
+!CSVLINE!+s7-10.12,divrec:1000:1000000,13.142
real 0m13.163s
user 0m13.144s
sys 0m0.007s
Testing puzzle under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/puzzle.scm /tmp/r7rs-benchmarks/S7/puzzle.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/puzzle.scm
Running puzzle:1000
Elapsed time: 12.297 seconds (12) for puzzle:1000
+!CSVLINE!+s7-10.12,puzzle:1000,12.297
real 0m12.318s
user 0m12.302s
sys 0m0.003s
Testing triangl under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/triangl.scm /tmp/r7rs-benchmarks/S7/triangl.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/triangl.scm
Running triangl:22:1:50
Elapsed time: 33.277 seconds (33) for triangl:22:1:50
+!CSVLINE!+s7-10.12,triangl:22:1:50,33.277
real 0m33.313s
user 0m33.283s
sys 0m0.000s
Testing tak under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/tak.scm /tmp/r7rs-benchmarks/S7/tak.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/tak.scm
Running tak:40:20:11:1
Elapsed time: 7.25 seconds (7) for tak:40:20:11:1
+!CSVLINE!+s7-10.12,tak:40:20:11:1,7.25
real 0m7.260s
user 0m7.253s
sys 0m0.004s
Testing takl under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/takl.scm /tmp/r7rs-benchmarks/S7/takl.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/takl.scm
Running takl:40:20:12:1
Elapsed time: 20.164 seconds (20) for takl:40:20:12:1
+!CSVLINE!+s7-10.12,takl:40:20:12:1,20.164
real 0m20.214s
user 0m20.165s
sys 0m0.007s
Testing ntakl under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/ntakl.scm /tmp/r7rs-benchmarks/S7/ntakl.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/ntakl.scm
Running ntakl:40:20:12:1
Elapsed time: 20.753 seconds (20) for ntakl:40:20:12:1
+!CSVLINE!+s7-10.12,ntakl:40:20:12:1,20.753
real 0m20.776s
user 0m20.754s
sys 0m0.004s
Testing cpstak under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/cpstak.scm /tmp/r7rs-benchmarks/S7/cpstak.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/cpstak.scm
Running cpstak:40:20:11:1
Elapsed time: 151.024 seconds (151) for cpstak:40:20:11:1
+!CSVLINE!+s7-10.12,cpstak:40:20:11:1,151.024
real 2m31.160s
user 2m31.024s
sys 0m0.003s
Testing ctak under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/ctak.scm /tmp/r7rs-benchmarks/S7/ctak.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/ctak.scm
Running ctak:32:16:8:1
Elapsed time: 21.233 seconds (21) for ctak:32:16:8:1
+!CSVLINE!+s7-10.12,ctak:32:16:8:1,21.233
real 0m21.298s
user 0m21.227s
sys 0m0.014s
Testing fib under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/fib.scm /tmp/r7rs-benchmarks/S7/fib.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/fib.scm
Running fib:40:5
Elapsed time: 7.141 seconds (7) for fib:40:5
+!CSVLINE!+s7-10.12,fib:40:5,7.141
real 0m7.150s
user 0m7.141s
sys 0m0.007s
Testing fibc under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/fibc.scm /tmp/r7rs-benchmarks/S7/fibc.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/fibc.scm
Running fibc:30:10
Elapsed time: 20.123 seconds (20) for fibc:30:10
+!CSVLINE!+s7-10.12,fibc:30:10,20.123
real 0m20.167s
user 0m20.124s
sys 0m0.007s
Testing fibfp under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/fibfp.scm /tmp/r7rs-benchmarks/S7/fibfp.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/fibfp.scm
Running fibfp:35.0:10
Elapsed time: 1.196 seconds (1) for fibfp:35.0:10
+!CSVLINE!+s7-10.12,fibfp:35.0:10,1.196
real 0m1.204s
user 0m1.197s
sys 0m0.007s
Testing sum under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/sum.scm /tmp/r7rs-benchmarks/S7/sum.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/sum.scm
Running sum:10000:200000
Elapsed time: 4.521 seconds (4) for sum:10000:200000
+!CSVLINE!+s7-10.12,sum:10000:200000,4.521
real 0m4.530s
user 0m4.527s
sys 0m0.000s
Testing sumfp under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/sumfp.scm /tmp/r7rs-benchmarks/S7/sumfp.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/sumfp.scm
Running sumfp:1000000.0:500
Elapsed time: 2.652 seconds (2) for sumfp:1000000.0:500
+!CSVLINE!+s7-10.12,sumfp:1000000.0:500,2.652
real 0m2.661s
user 0m2.656s
sys 0m0.003s
Testing fft under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/fft.scm /tmp/r7rs-benchmarks/S7/fft.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/fft.scm
Running fft:65536:100
Elapsed time: 13.14 seconds (13) for fft:65536:100
+!CSVLINE!+s7-10.12,fft:65536:100,13.14
real 0m13.190s
user 0m13.130s
sys 0m0.020s
Testing mbrot under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/mbrot.scm /tmp/r7rs-benchmarks/S7/mbrot.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/mbrot.scm
Running mbrot:75:1000
Elapsed time: 30.746 seconds (30) for mbrot:75:1000
+!CSVLINE!+s7-10.12,mbrot:75:1000,30.746
real 0m30.778s
user 0m30.749s
sys 0m0.001s
Testing mbrotZ under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/mbrotZ.scm /tmp/r7rs-benchmarks/S7/mbrotZ.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/mbrotZ.scm
Running mbrotZ:75:1000
Elapsed time: 25.68 seconds (25) for mbrotZ:75:1000
+!CSVLINE!+s7-10.12,mbrotZ:75:1000,25.68
real 0m25.710s
user 0m25.680s
sys 0m0.007s
Testing nucleic under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/nucleic.scm /tmp/r7rs-benchmarks/S7/nucleic.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/nucleic.scm
Running nucleic:50
Elapsed time: 13.612 seconds (13) for nucleic:50
+!CSVLINE!+s7-10.12,nucleic:50,13.612
real 0m13.662s
user 0m13.611s
sys 0m0.010s
Testing pi under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/pi.scm /tmp/r7rs-benchmarks/S7/pi.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/pi.scm
Running pi:50:500:50:100
;quotient argument, 5.000000000000001e+99, is out of range (it is too large)
; (let loop ((a one) (b (square-root...
; /tmp/r7rs-benchmarks/S7/pi.scm, line 106, position: 3560
; pi-brent-salamin: (let loop ((a one) (b (... ; one: 1e+50
; pi-brent-salamin: ((t (quotient one 4)) (...
; pies: ((b2 (pi-borwein2 n)) (b4 (pi-borwe... ; n: 50
real 0m0.007s
user 0m0.000s
sys 0m0.006s
Testing pnpoly under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/pnpoly.scm /tmp/r7rs-benchmarks/S7/pnpoly.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/pnpoly.scm
Running pnpoly:1000000
Elapsed time: 16.84 seconds (16) for pnpoly:1000000
+!CSVLINE!+s7-10.12,pnpoly:1000000,16.84
real 0m16.877s
user 0m16.843s
sys 0m0.000s
Testing ray under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/ray.scm /tmp/r7rs-benchmarks/S7/ray.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/ray.scm
Running ray:50
Elapsed time: 24.821 seconds (24) for ray:50
+!CSVLINE!+s7-10.12,ray:50,24.821
real 0m24.851s
user 0m24.819s
sys 0m0.007s
Testing simplex under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/simplex.scm /tmp/r7rs-benchmarks/S7/simplex.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/simplex.scm
Running simplex:1000000
Elapsed time: 39.173 seconds (39) for simplex:1000000
+!CSVLINE!+s7-10.12,simplex:1000000,39.173
real 0m39.217s
user 0m39.177s
sys 0m0.000s
Testing ack under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/ack.scm /tmp/r7rs-benchmarks/S7/ack.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/ack.scm
Running ack:3:12:2
Elapsed time: 13.316 seconds (13) for ack:3:12:2
+!CSVLINE!+s7-10.12,ack:3:12:2,13.316
real 0m13.328s
user 0m13.314s
sys 0m0.007s
Testing array1 under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/array1.scm /tmp/r7rs-benchmarks/S7/array1.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/array1.scm
Running array1:1000000:500
Elapsed time: 6.532 seconds (6) for array1:1000000:500
+!CSVLINE!+s7-10.12,array1:1000000:500,6.532
real 0m6.565s
user 0m6.321s
sys 0m0.222s
Testing string under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/string.scm /tmp/r7rs-benchmarks/S7/string.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/string.scm
Running string:500000:100
Elapsed time: 0.779 seconds (0) for string:500000:100
+!CSVLINE!+s7-10.12,string:500000:100,0.779
real 0m0.805s
user 0m0.173s
sys 0m0.627s
Testing sum1 under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/sum1.scm /tmp/r7rs-benchmarks/S7/sum1.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/sum1.scm
Running sum1:25
Elapsed time: 0.556 seconds (0) for sum1:25
+!CSVLINE!+s7-10.12,sum1:25,0.556
real 0m0.564s
user 0m0.556s
sys 0m0.007s
Testing cat under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/cat.scm /tmp/r7rs-benchmarks/S7/cat.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/cat.scm
Running cat:50
Elapsed time: 0.395 seconds (0) for cat:50
+!CSVLINE!+s7-10.12,cat:50,0.395
real 0m0.406s
user 0m0.260s
sys 0m0.143s
Testing tail under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/tail.scm /tmp/r7rs-benchmarks/S7/tail.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/tail.scm
Running tail:50
Elapsed time: 0.315 seconds (0) for tail:50
+!CSVLINE!+s7-10.12,tail:50,0.315
real 0m0.326s
user 0m0.145s
sys 0m0.179s
Testing wc under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/wc.scm /tmp/r7rs-benchmarks/S7/wc.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/wc.scm
Running wc:inputs/bib:50
Elapsed time: 9.466 seconds (9) for wc:inputs/bib:50
+!CSVLINE!+s7-10.12,wc:inputs/bib:50,9.466
real 0m9.483s
user 0m9.436s
sys 0m0.037s
Testing read1 under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/read1.scm /tmp/r7rs-benchmarks/S7/read1.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/read1.scm
Running read1:2500
Elapsed time: 0.329 seconds (0) for read1:2500
+!CSVLINE!+s7-10.12,read1:2500,0.329
real 0m0.337s
user 0m0.313s
sys 0m0.024s
Testing compiler under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/compiler.scm /tmp/r7rs-benchmarks/S7/compiler.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/compiler.scm
Running compiler:2000
Elapsed time: 27.767 seconds (27) for compiler:2000
+!CSVLINE!+s7-10.12,compiler:2000,27.767
real 0m27.951s
user 0m27.775s
sys 0m0.014s
Testing conform under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/conform.scm /tmp/r7rs-benchmarks/S7/conform.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/conform.scm
Running conform:500
Elapsed time: 42.532 seconds (42) for conform:500
+!CSVLINE!+s7-10.12,conform:500,42.532
real 0m42.668s
user 0m42.529s
sys 0m0.011s
Testing dynamic under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/dynamic.scm /tmp/r7rs-benchmarks/S7/dynamic.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/dynamic.scm
Running dynamic:500
;Unknown datum: #_quote
; (cond ((null? e) (dynamic-parse-acti...
; /tmp/r7rs-benchmarks/S7/dynamic.scm, line 197, position: 6373
; dynamic-parse-datum: (cond ((null? e) (dy... ; e: #_quote
; dynamic-parse-procedure-call: (dynamic-pa... ; env: ((binding 8 (() 0 203) . binding))
; op: #_quote
; args: (:)
; dynamic-parse-expressions: ((fst-res (dyn... ; fst-expr: ':
; rem-exprs: ((value-show (binding-value bin...
; dynamic-parse-procedure-call: (10 (() 0 2...
real 0m0.004s
user 0m0.005s
sys 0m0.000s
Testing earley under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/earley.scm /tmp/r7rs-benchmarks/S7/earley.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/earley.scm
Running earley:1
Elapsed time: 43.108 seconds (43) for earley:1
+!CSVLINE!+s7-10.12,earley:1,43.108
real 0m43.256s
user 0m42.173s
sys 0m0.957s
Testing graphs under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/graphs.scm /tmp/r7rs-benchmarks/S7/graphs.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/graphs.scm
Running graphs:7:3
Elapsed time: 99.852 seconds (99) for graphs:7:3
+!CSVLINE!+s7-10.12,graphs:7:3,99.852
real 1m40.234s
user 1m39.773s
sys 0m0.086s
Testing lattice under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/lattice.scm /tmp/r7rs-benchmarks/S7/lattice.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/lattice.scm
Running lattice:44:10
Elapsed time: 162.645 seconds (162) for lattice:44:10
+!CSVLINE!+s7-10.12,lattice:44:10,162.645
real 2m42.824s
user 2m42.646s
sys 0m0.007s
Testing matrix under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/matrix.scm /tmp/r7rs-benchmarks/S7/matrix.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/matrix.scm
Running matrix:5:5:2500
Elapsed time: 58.76 seconds (58) for matrix:5:5:2500
+!CSVLINE!+s7-10.12,matrix:5:5:2500,58.76
real 0m58.871s
user 0m58.761s
sys 0m0.007s
Testing maze under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/maze.scm /tmp/r7rs-benchmarks/S7/maze.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/maze.scm
Running maze:20:7:10000
Elapsed time: 25.788 seconds (25) for maze:20:7:10000
+!CSVLINE!+s7-10.12,maze:20:7:10000,25.788
real 0m25.829s
user 0m25.793s
sys 0m0.003s
Testing mazefun under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/mazefun.scm /tmp/r7rs-benchmarks/S7/mazefun.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/mazefun.scm
Running mazefun:11:11:10000
Elapsed time: 18.038 seconds (18) for mazefun:11:11:10000
+!CSVLINE!+s7-10.12,mazefun:11:11:10000,18.038
real 0m18.063s
user 0m18.037s
sys 0m0.007s
Testing nqueens under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/nqueens.scm /tmp/r7rs-benchmarks/S7/nqueens.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/nqueens.scm
Running nqueens:13:10
Elapsed time: 47.342 seconds (47) for nqueens:13:10
+!CSVLINE!+s7-10.12,nqueens:13:10,47.342
real 0m47.389s
user 0m47.341s
sys 0m0.007s
Testing paraffins under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/paraffins.scm /tmp/r7rs-benchmarks/S7/paraffins.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/paraffins.scm
Running paraffins:23:10
Elapsed time: 4.546 seconds (4) for paraffins:23:10
+!CSVLINE!+s7-10.12,paraffins:23:10,4.546
real 0m4.598s
user 0m4.247s
sys 0m0.336s
Testing parsing under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/parsing.scm /tmp/r7rs-benchmarks/S7/parsing.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/parsing.scm
Running parsing:2500
Elapsed time: 25.119 seconds (25) for parsing:2500
+!CSVLINE!+s7-10.12,parsing:2500,25.119
real 0m25.180s
user 0m25.116s
sys 0m0.010s
Testing peval under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/peval.scm /tmp/r7rs-benchmarks/S7/peval.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/peval.scm
Running peval:2000
ERROR: returned incorrect result: ((lambda (b_2) (quote 11)) (lambda (x_4) (if (< x_4 (quote 0)) (- x_4) (- (quote 10) x_4))) (lambda (l_11) (letrec ((add-list_13_16 (lambda (l_14) (if (null? l_14) ((quote #_quote) (quote ())) (cons (+ (quote 1) (car l_14)) (add-list_13_16 (cdr l_14))))))) (add-list_13_16 l_11))) (lambda (n_18) (cons (+ (quote 1) n_18) (cons (+ (quote 2) n_18) (cons (+ (quote 3) n_18) ((quote #_quote) (quote ())))))) (lambda (env_27) (lookup (quote x) env_27)) (lambda (env_36) (if (eq? (quote f) ((quote #_quote) quote)) (quote 1) (apply (lookup (quote f) env_36) (cons (quote 1) (cons (quote 2) (cons (quote 3) ((quote #_quote) (quote ())))))))) (lambda (b_53) (+ (quote 15) b_53 b_53 b_53 b_53 b_53 b_53)) (lambda () (quote 55)) (lambda () (list (quote a) (quote b) (quote c) (quote d) (quote e) (quote f) (quote g) (quote h) (quote i) (quote j) (quote k) (quote l) (quote m) (quote n) (quote o) (quote p) (quote q) (quote r) (quote s) (quote t) (quote u) (quote v) (quote w) (quote x) (quote y) (quote z))) (lambda () (cons (quote z) (cons (quote y) (cons (quote x) (cons (quote w) (cons (quote v) (cons (quote u) (cons (quote t) (cons (quote s) (cons (quote r) (cons (quote q) (cons (quote p) (cons (quote o) (cons (quote n) (cons (quote m) (cons (quote l) (cons (quote k) (cons (quote j) (cons (quote i) (cons (quote h) (cons (quote g) (cons (quote f) (cons (quote e) (cons (quote d) (cons (quote c) (cons (quote b) (cons (quote a) ((quote #_quote) (quote ()))))))))))))))))))))))))))))))
+!CSVLINE!+s7-10.12,peval:2000,INCORRECT
real 0m41.959s
user 0m41.849s
sys 0m0.007s
Testing primes under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/primes.scm /tmp/r7rs-benchmarks/S7/primes.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/primes.scm
Running primes:1000:10000
Elapsed time: 7.084 seconds (7) for primes:1000:10000
+!CSVLINE!+s7-10.12,primes:1000:10000,7.084
real 0m7.096s
user 0m7.090s
sys 0m0.000s
Testing quicksort under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/quicksort.scm /tmp/r7rs-benchmarks/S7/quicksort.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/quicksort.scm
Running quicksort:10000:2500
Elapsed time: 152.19 seconds (152) for quicksort:10000:2500
+!CSVLINE!+s7-10.12,quicksort:10000:2500,152.19
real 2m32.394s
user 2m32.207s
sys 0m0.007s
Testing scheme under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/scheme.scm /tmp/r7rs-benchmarks/S7/scheme.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/scheme.scm
Running scheme:100000
ERROR: returned incorrect result: (arg1 rte)
+!CSVLINE!+s7-10.12,scheme:100000,INCORRECT
real 0m17.026s
user 0m16.999s
sys 0m0.007s
Testing slatex under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/slatex.scm /tmp/r7rs-benchmarks/S7/slatex.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/slatex.scm
Running slatex:500
Elapsed time: 7.748 seconds (7) for slatex:500
+!CSVLINE!+s7-10.12,slatex:500,7.748
real 0m7.817s
user 0m5.831s
sys 0m1.925s
Testing chudnovsky under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/chudnovsky.scm /tmp/r7rs-benchmarks/S7/chudnovsky.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/chudnovsky.scm
;can't define pi: it is immutable
; (define (pi digits) (let*...
; /tmp/r7rs-benchmarks/S7/chudnovsky.scm, line 119, position: 4133
; (define (pi digits) (let* ((num-terms (ex...
real 0m0.006s
user 0m0.004s
sys 0m0.003s
Testing nboyer under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/nboyer.scm /tmp/r7rs-benchmarks/S7/nboyer.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/nboyer.scm
Running nboyer:5:1
Elapsed time: 26.13 seconds (26) for nboyer:5:1
+!CSVLINE!+s7-10.12,nboyer:5:1,26.13
real 0m26.223s
user 0m25.658s
sys 0m0.489s
Testing sboyer under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/sboyer.scm /tmp/r7rs-benchmarks/S7/sboyer.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/sboyer.scm
Running sboyer:5:1
Elapsed time: 24.452 seconds (24) for sboyer:5:1
+!CSVLINE!+s7-10.12,sboyer:5:1,24.452
real 0m24.536s
user 0m24.370s
sys 0m0.093s
Testing gcbench under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/gcbench.scm /tmp/r7rs-benchmarks/S7/gcbench.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/gcbench.scm
The garbage collector should touch about 128 megabytes of heap storage.
The use of more or less memory will skew the results.
Running gcbench:20:1
Garbage Collector Test
Stretching memory with a binary tree of depth 20
Total memory available= ???????? bytes Free memory= ???????? bytes
GCBench: Main
Creating a long-lived binary tree of depth 18
Creating a long-lived array of 2097148 inexact reals
Total memory available= ???????? bytes Free memory= ???????? bytes
Creating 135300 trees of depth 4
GCBench: Top down construction
GCBench: Bottom up construction
Creating 33026 trees of depth 6
GCBench: Top down construction
GCBench: Bottom up construction
Creating 8208 trees of depth 8
GCBench: Top down construction
GCBench: Bottom up construction
Creating 2048 trees of depth 10
GCBench: Top down construction
GCBench: Bottom up construction
Creating 512 trees of depth 12
GCBench: Top down construction
GCBench: Bottom up construction
Creating 128 trees of depth 14
GCBench: Top down construction
GCBench: Bottom up construction
Creating 32 trees of depth 16
GCBench: Top down construction
GCBench: Bottom up construction
Creating 8 trees of depth 18
GCBench: Top down construction
GCBench: Bottom up construction
Total memory available= ???????? bytes Free memory= ???????? bytes
Elapsed time: 12.209 seconds (12) for gcbench:20:1
+!CSVLINE!+s7-10.12,gcbench:20:1,12.209
real 0m12.254s
user 0m11.728s
sys 0m0.492s
Testing mperm under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/mperm.scm /tmp/r7rs-benchmarks/S7/mperm.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/mperm.scm
Running mperm:20:10:2:1
Elapsed time: 26.344 seconds (26) for mperm:20:10:2:1
+!CSVLINE!+s7-10.12,mperm:20:10:2:1,26.344
real 0m27.749s
user 0m27.151s
sys 0m0.518s
Testing equal under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/equal.scm /tmp/r7rs-benchmarks/S7/equal.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/equal.scm
Running equal:100:100:8:1000:2000:5000
Elapsed time: 0.676 seconds (0) for equal:100:100:8:1000:2000:5000
+!CSVLINE!+s7-10.12,equal:100:100:8:1000:2000:5000,0.676
real 0m0.684s
user 0m0.663s
sys 0m0.021s
Testing bv2string under S7
Including prelude /home/nex/src/r7rs-benchmarks/src/S7-prelude.scm
Compiling...
s7_comp /tmp/r7rs-benchmarks/S7/bv2string.scm /tmp/r7rs-benchmarks/S7/bv2string.scm
Running...
s7: 4-July-2024
load /tmp/r7rs-benchmarks/S7/bv2string.scm
Running bv2string:1000:1000:100
Elapsed time: 9.876 seconds (9) for bv2string:1000:1000:100
+!CSVLINE!+s7-10.12,bv2string:1000:1000:100,9.876
real 0m9.891s
user 0m9.881s
sys 0m0.000s