-
Notifications
You must be signed in to change notification settings - Fork 4
/
data.txt.summary
2098 lines (2098 loc) · 358 KB
/
data.txt.summary
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
check=false algorithm=./omp1 nitems=1000 counters=10 threshold=200 memory=3480 outputsize=1 time=0.000000 walltime=0.000000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=1000 counters=10 threshold=200 memory=25208 outputsize=4 time=0.000000 walltime=0.004000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=1000 counters=10 threshold=200 memory=22360 outputsize=1 time=0.000000 walltime=0.004000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=1000 counters=10 threshold=200 memory=3480 outputsize=1 time=0.000000 walltime=0.001000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=1000 counters=10 threshold=200 memory=25208 outputsize=4 time=0.000000 walltime=0.003000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=1000 counters=10 threshold=200 memory=22360 outputsize=1 time=0.000000 walltime=0.002000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=1000 counters=10 threshold=200 memory=3480 outputsize=1 time=0.000000 walltime=0.001000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=1000 counters=10 threshold=200 memory=25208 outputsize=4 time=0.000000 walltime=0.002000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=1000 counters=10 threshold=200 memory=22360 outputsize=1 time=0.000000 walltime=0.001000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=1000 counters=10 threshold=200 memory=3480 outputsize=1 time=0.000000 walltime=0.001000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=1000 counters=10 threshold=200 memory=25208 outputsize=4 time=0.000000 walltime=0.001000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=1000 counters=10 threshold=200 memory=22360 outputsize=1 time=0.000000 walltime=0.001000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=1000 counters=100 threshold=20 memory=23640 outputsize=20 time=0.000000 walltime=0.001000 epsilon=0.002000 threads=1
check=false algorithm=./omp1_33 nitems=1000 counters=100 threshold=20 memory=160840 outputsize=40 time=0.000000 walltime=0.004000 epsilon=0.002000 threads=1
check=false algorithm=./omp2 nitems=1000 counters=100 threshold=20 memory=160600 outputsize=43 time=0.000000 walltime=0.005000 epsilon=0.003000 threads=1
check=false algorithm=./omp1 nitems=1000 counters=100 threshold=20 memory=23640 outputsize=20 time=0.000000 walltime=0.000000 epsilon=0.002000 threads=2
check=false algorithm=./omp1_33 nitems=1000 counters=100 threshold=20 memory=160840 outputsize=40 time=0.000000 walltime=0.003000 epsilon=0.002000 threads=2
check=false algorithm=./omp2 nitems=1000 counters=100 threshold=20 memory=160600 outputsize=43 time=0.000000 walltime=0.002000 epsilon=0.003000 threads=2
check=false algorithm=./omp1 nitems=1000 counters=100 threshold=20 memory=23640 outputsize=20 time=0.000000 walltime=0.000000 epsilon=0.002000 threads=3
check=false algorithm=./omp1_33 nitems=1000 counters=100 threshold=20 memory=160840 outputsize=40 time=0.000000 walltime=0.002000 epsilon=0.002000 threads=3
check=false algorithm=./omp2 nitems=1000 counters=100 threshold=20 memory=160600 outputsize=43 time=0.000000 walltime=0.002000 epsilon=0.003000 threads=3
check=false algorithm=./omp1 nitems=1000 counters=100 threshold=20 memory=23640 outputsize=20 time=0.000000 walltime=0.000000 epsilon=0.002000 threads=4
check=false algorithm=./omp1_33 nitems=1000 counters=100 threshold=20 memory=160840 outputsize=40 time=0.000000 walltime=0.002000 epsilon=0.002000 threads=4
check=false algorithm=./omp2 nitems=1000 counters=100 threshold=20 memory=160600 outputsize=43 time=0.000000 walltime=0.002000 epsilon=0.003000 threads=4
check=false algorithm=./omp1 nitems=1000 counters=1000 threshold=2 memory=183240 outputsize=286 time=0.000000 walltime=0.001000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=1000 counters=1000 threshold=2 memory=1350840 outputsize=413 time=0.000000 walltime=0.005000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=1000 counters=1000 threshold=2 memory=1444952 outputsize=546 time=0.000000 walltime=0.005000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=1000 counters=1000 threshold=2 memory=183240 outputsize=286 time=0.000000 walltime=0.000000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=1000 counters=1000 threshold=2 memory=1350840 outputsize=413 time=0.000000 walltime=0.004000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=1000 counters=1000 threshold=2 memory=1444952 outputsize=546 time=0.000000 walltime=0.004000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=1000 counters=1000 threshold=2 memory=183240 outputsize=286 time=0.000000 walltime=0.000000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=1000 counters=1000 threshold=2 memory=1350840 outputsize=413 time=0.010000 walltime=0.003000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=1000 counters=1000 threshold=2 memory=1444952 outputsize=546 time=0.000000 walltime=0.002000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=1000 counters=1000 threshold=2 memory=183240 outputsize=286 time=0.000000 walltime=0.001000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=1000 counters=1000 threshold=2 memory=1350840 outputsize=413 time=0.010000 walltime=0.003000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=1000 counters=1000 threshold=2 memory=1444952 outputsize=546 time=0.010000 walltime=0.003000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=1000 counters=1000 threshold=20 memory=183240 outputsize=20 time=0.000000 walltime=0.001000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=1000 counters=1000 threshold=20 memory=1350840 outputsize=40 time=0.000000 walltime=0.005000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=1000 counters=1000 threshold=20 memory=1444952 outputsize=41 time=0.000000 walltime=0.006000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=1000 counters=1000 threshold=20 memory=183240 outputsize=20 time=0.000000 walltime=0.001000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=1000 counters=1000 threshold=20 memory=1350840 outputsize=40 time=0.000000 walltime=0.004000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=1000 counters=1000 threshold=20 memory=1444952 outputsize=41 time=0.000000 walltime=0.004000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=1000 counters=1000 threshold=20 memory=183240 outputsize=20 time=0.000000 walltime=0.000000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=1000 counters=1000 threshold=20 memory=1350840 outputsize=40 time=0.000000 walltime=0.003000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=1000 counters=1000 threshold=20 memory=1444952 outputsize=41 time=0.000000 walltime=0.003000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=1000 counters=1000 threshold=20 memory=183240 outputsize=20 time=0.000000 walltime=0.001000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=1000 counters=1000 threshold=20 memory=1350840 outputsize=40 time=0.000000 walltime=0.002000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=1000 counters=1000 threshold=20 memory=1444952 outputsize=41 time=0.010000 walltime=0.003000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=1000 counters=1000 threshold=5 memory=183240 outputsize=77 time=0.000000 walltime=0.000000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=1000 counters=1000 threshold=5 memory=1350840 outputsize=163 time=0.000000 walltime=0.005000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=1000 counters=1000 threshold=5 memory=1444952 outputsize=227 time=0.000000 walltime=0.006000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=1000 counters=1000 threshold=5 memory=183240 outputsize=77 time=0.000000 walltime=0.000000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=1000 counters=1000 threshold=5 memory=1350840 outputsize=163 time=0.000000 walltime=0.004000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=1000 counters=1000 threshold=5 memory=1444952 outputsize=227 time=0.010000 walltime=0.004000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=1000 counters=1000 threshold=5 memory=183240 outputsize=77 time=0.000000 walltime=0.001000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=1000 counters=1000 threshold=5 memory=1350840 outputsize=163 time=0.000000 walltime=0.003000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=1000 counters=1000 threshold=5 memory=1444952 outputsize=227 time=0.000000 walltime=0.003000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=1000 counters=1000 threshold=5 memory=183240 outputsize=77 time=0.000000 walltime=0.001000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=1000 counters=1000 threshold=5 memory=1350840 outputsize=163 time=0.000000 walltime=0.003000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=1000 counters=1000 threshold=5 memory=1444952 outputsize=227 time=0.010000 walltime=0.002000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=3000 counters=10 threshold=600 memory=3480 outputsize=1 time=0.000000 walltime=0.002000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=3000 counters=10 threshold=600 memory=25208 outputsize=3 time=0.010000 walltime=0.011000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=3000 counters=10 threshold=600 memory=22360 outputsize=1 time=0.010000 walltime=0.011000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=3000 counters=10 threshold=600 memory=3480 outputsize=1 time=0.000000 walltime=0.002000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=3000 counters=10 threshold=600 memory=25208 outputsize=3 time=0.010000 walltime=0.007000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=3000 counters=10 threshold=600 memory=22360 outputsize=1 time=0.010000 walltime=0.006000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=3000 counters=10 threshold=600 memory=3480 outputsize=1 time=0.000000 walltime=0.001000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=3000 counters=10 threshold=600 memory=25208 outputsize=3 time=0.010000 walltime=0.005000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=3000 counters=10 threshold=600 memory=22360 outputsize=1 time=0.010000 walltime=0.004000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=3000 counters=10 threshold=600 memory=3480 outputsize=1 time=0.000000 walltime=0.001000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=3000 counters=10 threshold=600 memory=25208 outputsize=3 time=0.010000 walltime=0.004000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=3000 counters=10 threshold=600 memory=22360 outputsize=1 time=0.010000 walltime=0.003000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=3000 counters=100 threshold=60 memory=23640 outputsize=19 time=0.000000 walltime=0.002000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=3000 counters=100 threshold=60 memory=160840 outputsize=41 time=0.010000 walltime=0.012000 epsilon=0.000333 threads=1
check=false algorithm=./omp2 nitems=3000 counters=100 threshold=60 memory=160600 outputsize=41 time=0.010000 walltime=0.014000 epsilon=0.000667 threads=1
check=false algorithm=./omp1 nitems=3000 counters=100 threshold=60 memory=23640 outputsize=19 time=0.000000 walltime=0.001000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=3000 counters=100 threshold=60 memory=160840 outputsize=41 time=0.020000 walltime=0.010000 epsilon=0.000333 threads=2
check=false algorithm=./omp2 nitems=3000 counters=100 threshold=60 memory=160600 outputsize=41 time=0.010000 walltime=0.009000 epsilon=0.000667 threads=2
check=false algorithm=./omp1 nitems=3000 counters=100 threshold=60 memory=23640 outputsize=19 time=0.000000 walltime=0.001000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=3000 counters=100 threshold=60 memory=160840 outputsize=41 time=0.010000 walltime=0.007000 epsilon=0.000333 threads=3
check=false algorithm=./omp2 nitems=3000 counters=100 threshold=60 memory=160600 outputsize=41 time=0.010000 walltime=0.006000 epsilon=0.000667 threads=3
check=false algorithm=./omp1 nitems=3000 counters=100 threshold=60 memory=23640 outputsize=19 time=0.000000 walltime=0.002000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=3000 counters=100 threshold=60 memory=160840 outputsize=41 time=0.020000 walltime=0.005000 epsilon=0.000333 threads=4
check=false algorithm=./omp2 nitems=3000 counters=100 threshold=60 memory=160600 outputsize=41 time=0.020000 walltime=0.005000 epsilon=0.000667 threads=4
check=false algorithm=./omp1 nitems=3000 counters=1000 threshold=6 memory=183240 outputsize=201 time=0.000000 walltime=0.002000 epsilon=0.000667 threads=1
check=false algorithm=./omp1_33 nitems=3000 counters=1000 threshold=6 memory=1350840 outputsize=406 time=0.010000 walltime=0.013000 epsilon=0.000667 threads=1
check=false algorithm=./omp2 nitems=3000 counters=1000 threshold=6 memory=1444952 outputsize=563 time=0.010000 walltime=0.014000 epsilon=0.000667 threads=1
check=false algorithm=./omp1 nitems=3000 counters=1000 threshold=6 memory=183240 outputsize=201 time=0.000000 walltime=0.002000 epsilon=0.000667 threads=2
check=false algorithm=./omp1_33 nitems=3000 counters=1000 threshold=6 memory=1350840 outputsize=406 time=0.020000 walltime=0.009000 epsilon=0.000667 threads=2
check=false algorithm=./omp2 nitems=3000 counters=1000 threshold=6 memory=1444952 outputsize=563 time=0.020000 walltime=0.010000 epsilon=0.000667 threads=2
check=false algorithm=./omp1 nitems=3000 counters=1000 threshold=6 memory=183240 outputsize=201 time=0.000000 walltime=0.002000 epsilon=0.000667 threads=3
check=false algorithm=./omp1_33 nitems=3000 counters=1000 threshold=6 memory=1350840 outputsize=406 time=0.020000 walltime=0.007000 epsilon=0.000667 threads=3
check=false algorithm=./omp2 nitems=3000 counters=1000 threshold=6 memory=1444952 outputsize=563 time=0.020000 walltime=0.006000 epsilon=0.000667 threads=3
check=false algorithm=./omp1 nitems=3000 counters=1000 threshold=6 memory=183240 outputsize=201 time=0.000000 walltime=0.002000 epsilon=0.000667 threads=4
check=false algorithm=./omp1_33 nitems=3000 counters=1000 threshold=6 memory=1350840 outputsize=406 time=0.020000 walltime=0.006000 epsilon=0.000667 threads=4
check=false algorithm=./omp2 nitems=3000 counters=1000 threshold=6 memory=1444952 outputsize=563 time=0.020000 walltime=0.005000 epsilon=0.000667 threads=4
check=false algorithm=./omp1 nitems=3000 counters=1000 threshold=60 memory=183240 outputsize=19 time=0.000000 walltime=0.002000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=3000 counters=1000 threshold=60 memory=1350840 outputsize=41 time=0.010000 walltime=0.012000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=3000 counters=1000 threshold=60 memory=1444952 outputsize=41 time=0.010000 walltime=0.014000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=3000 counters=1000 threshold=60 memory=183240 outputsize=19 time=0.000000 walltime=0.002000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=3000 counters=1000 threshold=60 memory=1350840 outputsize=41 time=0.020000 walltime=0.010000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=3000 counters=1000 threshold=60 memory=1444952 outputsize=41 time=0.020000 walltime=0.010000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=3000 counters=1000 threshold=60 memory=183240 outputsize=19 time=0.000000 walltime=0.001000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=3000 counters=1000 threshold=60 memory=1350840 outputsize=41 time=0.020000 walltime=0.007000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=3000 counters=1000 threshold=60 memory=1444952 outputsize=41 time=0.020000 walltime=0.006000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=3000 counters=1000 threshold=60 memory=183240 outputsize=19 time=0.000000 walltime=0.002000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=3000 counters=1000 threshold=60 memory=1350840 outputsize=41 time=0.020000 walltime=0.006000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=3000 counters=1000 threshold=60 memory=1444952 outputsize=41 time=0.020000 walltime=0.005000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=3000 counters=1000 threshold=15 memory=183240 outputsize=74 time=0.000000 walltime=0.002000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=3000 counters=1000 threshold=15 memory=1350840 outputsize=161 time=0.010000 walltime=0.012000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=3000 counters=1000 threshold=15 memory=1444952 outputsize=208 time=0.010000 walltime=0.014000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=3000 counters=1000 threshold=15 memory=183240 outputsize=74 time=0.000000 walltime=0.002000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=3000 counters=1000 threshold=15 memory=1350840 outputsize=161 time=0.020000 walltime=0.010000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=3000 counters=1000 threshold=15 memory=1444952 outputsize=208 time=0.020000 walltime=0.009000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=3000 counters=1000 threshold=15 memory=183240 outputsize=74 time=0.000000 walltime=0.001000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=3000 counters=1000 threshold=15 memory=1350840 outputsize=161 time=0.020000 walltime=0.008000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=3000 counters=1000 threshold=15 memory=1444952 outputsize=208 time=0.020000 walltime=0.007000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=3000 counters=1000 threshold=15 memory=183240 outputsize=74 time=0.000000 walltime=0.002000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=3000 counters=1000 threshold=15 memory=1350840 outputsize=161 time=0.020000 walltime=0.006000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=3000 counters=1000 threshold=15 memory=1444952 outputsize=208 time=0.020000 walltime=0.005000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=10000 counters=10 threshold=2000 memory=3480 outputsize=1 time=0.010000 walltime=0.005000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=10000 counters=10 threshold=2000 memory=25208 outputsize=4 time=0.040000 walltime=0.037000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=10000 counters=10 threshold=2000 memory=22360 outputsize=1 time=0.030000 walltime=0.034000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=10000 counters=10 threshold=2000 memory=3480 outputsize=1 time=0.010000 walltime=0.005000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=10000 counters=10 threshold=2000 memory=25208 outputsize=4 time=0.050000 walltime=0.024000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=10000 counters=10 threshold=2000 memory=22360 outputsize=1 time=0.040000 walltime=0.020000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=10000 counters=10 threshold=2000 memory=3480 outputsize=1 time=0.010000 walltime=0.003000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=10000 counters=10 threshold=2000 memory=25208 outputsize=4 time=0.050000 walltime=0.016000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=10000 counters=10 threshold=2000 memory=22360 outputsize=1 time=0.030000 walltime=0.014000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=10000 counters=10 threshold=2000 memory=3480 outputsize=1 time=0.010000 walltime=0.003000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=10000 counters=10 threshold=2000 memory=25208 outputsize=4 time=0.050000 walltime=0.013000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=10000 counters=10 threshold=2000 memory=22360 outputsize=1 time=0.040000 walltime=0.010000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=10000 counters=100 threshold=200 memory=23640 outputsize=20 time=0.010000 walltime=0.006000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=10000 counters=100 threshold=200 memory=160840 outputsize=40 time=0.040000 walltime=0.042000 epsilon=0.000100 threads=1
check=false algorithm=./omp2 nitems=10000 counters=100 threshold=200 memory=160600 outputsize=41 time=0.040000 walltime=0.047000 epsilon=0.000200 threads=1
check=false algorithm=./omp1 nitems=10000 counters=100 threshold=200 memory=23640 outputsize=20 time=0.010000 walltime=0.006000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=10000 counters=100 threshold=200 memory=160840 outputsize=40 time=0.060000 walltime=0.032000 epsilon=0.000100 threads=2
check=false algorithm=./omp2 nitems=10000 counters=100 threshold=200 memory=160600 outputsize=41 time=0.060000 walltime=0.028000 epsilon=0.000200 threads=2
check=false algorithm=./omp1 nitems=10000 counters=100 threshold=200 memory=23640 outputsize=20 time=0.010000 walltime=0.004000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=10000 counters=100 threshold=200 memory=160840 outputsize=40 time=0.060000 walltime=0.022000 epsilon=0.000100 threads=3
check=false algorithm=./omp2 nitems=10000 counters=100 threshold=200 memory=160600 outputsize=41 time=0.060000 walltime=0.019000 epsilon=0.000200 threads=3
check=false algorithm=./omp1 nitems=10000 counters=100 threshold=200 memory=23640 outputsize=20 time=0.020000 walltime=0.004000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=10000 counters=100 threshold=200 memory=160840 outputsize=40 time=0.070000 walltime=0.018000 epsilon=0.000100 threads=4
check=false algorithm=./omp2 nitems=10000 counters=100 threshold=200 memory=160600 outputsize=41 time=0.060000 walltime=0.015000 epsilon=0.000200 threads=4
check=false algorithm=./omp1 nitems=10000 counters=1000 threshold=20 memory=183240 outputsize=172 time=0.010000 walltime=0.005000 epsilon=0.000700 threads=1
check=false algorithm=./omp1_33 nitems=10000 counters=1000 threshold=20 memory=1350840 outputsize=395 time=0.040000 walltime=0.038000 epsilon=0.000700 threads=1
check=false algorithm=./omp2 nitems=10000 counters=1000 threshold=20 memory=1444952 outputsize=527 time=0.040000 walltime=0.045000 epsilon=0.000800 threads=1
check=false algorithm=./omp1 nitems=10000 counters=1000 threshold=20 memory=183240 outputsize=172 time=0.010000 walltime=0.005000 epsilon=0.000700 threads=2
check=false algorithm=./omp1_33 nitems=10000 counters=1000 threshold=20 memory=1350840 outputsize=395 time=0.060000 walltime=0.030000 epsilon=0.000700 threads=2
check=false algorithm=./omp2 nitems=10000 counters=1000 threshold=20 memory=1444952 outputsize=527 time=0.060000 walltime=0.030000 epsilon=0.000800 threads=2
check=false algorithm=./omp1 nitems=10000 counters=1000 threshold=20 memory=183240 outputsize=172 time=0.010000 walltime=0.004000 epsilon=0.000700 threads=3
check=false algorithm=./omp1_33 nitems=10000 counters=1000 threshold=20 memory=1350840 outputsize=395 time=0.070000 walltime=0.023000 epsilon=0.000700 threads=3
check=false algorithm=./omp2 nitems=10000 counters=1000 threshold=20 memory=1444952 outputsize=527 time=0.060000 walltime=0.021000 epsilon=0.000800 threads=3
check=false algorithm=./omp1 nitems=10000 counters=1000 threshold=20 memory=183240 outputsize=172 time=0.020000 walltime=0.005000 epsilon=0.000700 threads=4
check=false algorithm=./omp1_33 nitems=10000 counters=1000 threshold=20 memory=1350840 outputsize=395 time=0.080000 walltime=0.019000 epsilon=0.000700 threads=4
check=false algorithm=./omp2 nitems=10000 counters=1000 threshold=20 memory=1444952 outputsize=527 time=0.070000 walltime=0.018000 epsilon=0.000800 threads=4
check=false algorithm=./omp1 nitems=10000 counters=1000 threshold=200 memory=183240 outputsize=20 time=0.010000 walltime=0.006000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=10000 counters=1000 threshold=200 memory=1350840 outputsize=40 time=0.040000 walltime=0.038000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=10000 counters=1000 threshold=200 memory=1444952 outputsize=41 time=0.040000 walltime=0.044000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=10000 counters=1000 threshold=200 memory=183240 outputsize=20 time=0.010000 walltime=0.005000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=10000 counters=1000 threshold=200 memory=1350840 outputsize=40 time=0.060000 walltime=0.030000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=10000 counters=1000 threshold=200 memory=1444952 outputsize=41 time=0.060000 walltime=0.030000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=10000 counters=1000 threshold=200 memory=183240 outputsize=20 time=0.010000 walltime=0.004000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=10000 counters=1000 threshold=200 memory=1350840 outputsize=40 time=0.070000 walltime=0.024000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=10000 counters=1000 threshold=200 memory=1444952 outputsize=41 time=0.060000 walltime=0.022000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=10000 counters=1000 threshold=200 memory=183240 outputsize=20 time=0.020000 walltime=0.004000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=10000 counters=1000 threshold=200 memory=1350840 outputsize=40 time=0.080000 walltime=0.019000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=10000 counters=1000 threshold=200 memory=1444952 outputsize=41 time=0.100000 walltime=0.034000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=10000 counters=1000 threshold=50 memory=183240 outputsize=65 time=0.010000 walltime=0.006000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=10000 counters=1000 threshold=50 memory=1350840 outputsize=161 time=0.040000 walltime=0.037000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=10000 counters=1000 threshold=50 memory=1444952 outputsize=205 time=0.040000 walltime=0.044000 epsilon=0.000500 threads=1
check=false algorithm=./omp1 nitems=10000 counters=1000 threshold=50 memory=183240 outputsize=65 time=0.010000 walltime=0.005000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=10000 counters=1000 threshold=50 memory=1350840 outputsize=161 time=0.060000 walltime=0.030000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=10000 counters=1000 threshold=50 memory=1444952 outputsize=205 time=0.060000 walltime=0.030000 epsilon=0.000500 threads=2
check=false algorithm=./omp1 nitems=10000 counters=1000 threshold=50 memory=183240 outputsize=65 time=0.010000 walltime=0.004000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=10000 counters=1000 threshold=50 memory=1350840 outputsize=161 time=0.070000 walltime=0.023000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=10000 counters=1000 threshold=50 memory=1444952 outputsize=205 time=0.060000 walltime=0.022000 epsilon=0.000500 threads=3
check=false algorithm=./omp1 nitems=10000 counters=1000 threshold=50 memory=183240 outputsize=65 time=0.020000 walltime=0.004000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=10000 counters=1000 threshold=50 memory=1350840 outputsize=161 time=0.080000 walltime=0.019000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=10000 counters=1000 threshold=50 memory=1444952 outputsize=205 time=0.060000 walltime=0.017000 epsilon=0.000500 threads=4
check=false algorithm=./omp1 nitems=30000 counters=10 threshold=6000 memory=3480 outputsize=1 time=0.020000 walltime=0.016000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=30000 counters=10 threshold=6000 memory=25208 outputsize=4 time=0.110000 walltime=0.110000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=30000 counters=10 threshold=6000 memory=22360 outputsize=1 time=0.100000 walltime=0.103000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=30000 counters=10 threshold=6000 memory=3480 outputsize=1 time=0.020000 walltime=0.013000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=30000 counters=10 threshold=6000 memory=25208 outputsize=4 time=0.130000 walltime=0.071000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=30000 counters=10 threshold=6000 memory=22360 outputsize=1 time=0.110000 walltime=0.059000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=30000 counters=10 threshold=6000 memory=3480 outputsize=1 time=0.030000 walltime=0.008000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=30000 counters=10 threshold=6000 memory=25208 outputsize=4 time=0.140000 walltime=0.047000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=30000 counters=10 threshold=6000 memory=22360 outputsize=1 time=0.120000 walltime=0.041000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=30000 counters=10 threshold=6000 memory=3480 outputsize=1 time=0.040000 walltime=0.009000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=30000 counters=10 threshold=6000 memory=25208 outputsize=4 time=0.160000 walltime=0.040000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=30000 counters=10 threshold=6000 memory=22360 outputsize=1 time=0.120000 walltime=0.032000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=30000 counters=100 threshold=600 memory=23640 outputsize=18 time=0.020000 walltime=0.019000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=30000 counters=100 threshold=600 memory=160840 outputsize=40 time=0.120000 walltime=0.123000 epsilon=0.000033 threads=1
check=false algorithm=./omp2 nitems=30000 counters=100 threshold=600 memory=160600 outputsize=41 time=0.130000 walltime=0.135000 epsilon=0.000067 threads=1
check=false algorithm=./omp1 nitems=30000 counters=100 threshold=600 memory=23640 outputsize=18 time=0.030000 walltime=0.016000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=30000 counters=100 threshold=600 memory=160840 outputsize=40 time=0.140000 walltime=0.096000 epsilon=0.000033 threads=2
check=false algorithm=./omp2 nitems=30000 counters=100 threshold=600 memory=160600 outputsize=41 time=0.150000 walltime=0.085000 epsilon=0.000067 threads=2
check=false algorithm=./omp1 nitems=30000 counters=100 threshold=600 memory=23640 outputsize=18 time=0.040000 walltime=0.012000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=30000 counters=100 threshold=600 memory=160840 outputsize=40 time=0.180000 walltime=0.066000 epsilon=0.000033 threads=3
check=false algorithm=./omp2 nitems=30000 counters=100 threshold=600 memory=160600 outputsize=41 time=0.170000 walltime=0.059000 epsilon=0.000067 threads=3
check=false algorithm=./omp1 nitems=30000 counters=100 threshold=600 memory=23640 outputsize=18 time=0.050000 walltime=0.012000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=30000 counters=100 threshold=600 memory=160840 outputsize=40 time=0.200000 walltime=0.055000 epsilon=0.000033 threads=4
check=false algorithm=./omp2 nitems=30000 counters=100 threshold=600 memory=160600 outputsize=41 time=0.180000 walltime=0.047000 epsilon=0.000067 threads=4
check=false algorithm=./omp1 nitems=30000 counters=1000 threshold=60 memory=183240 outputsize=164 time=0.020000 walltime=0.017000 epsilon=0.000367 threads=1
check=false algorithm=./omp1_33 nitems=30000 counters=1000 threshold=60 memory=1350840 outputsize=395 time=0.110000 walltime=0.108000 epsilon=0.000367 threads=1
check=false algorithm=./omp2 nitems=30000 counters=1000 threshold=60 memory=1444952 outputsize=502 time=0.130000 walltime=0.129000 epsilon=0.000267 threads=1
check=false algorithm=./omp1 nitems=30000 counters=1000 threshold=60 memory=183240 outputsize=164 time=0.030000 walltime=0.015000 epsilon=0.000367 threads=2
check=false algorithm=./omp1_33 nitems=30000 counters=1000 threshold=60 memory=1350840 outputsize=395 time=0.130000 walltime=0.088000 epsilon=0.000367 threads=2
check=false algorithm=./omp2 nitems=30000 counters=1000 threshold=60 memory=1444952 outputsize=502 time=0.150000 walltime=0.088000 epsilon=0.000267 threads=2
check=false algorithm=./omp1 nitems=30000 counters=1000 threshold=60 memory=183240 outputsize=164 time=0.040000 walltime=0.012000 epsilon=0.000367 threads=3
check=false algorithm=./omp1_33 nitems=30000 counters=1000 threshold=60 memory=1350840 outputsize=395 time=0.160000 walltime=0.068000 epsilon=0.000367 threads=3
check=false algorithm=./omp2 nitems=30000 counters=1000 threshold=60 memory=1444952 outputsize=502 time=0.160000 walltime=0.063000 epsilon=0.000267 threads=3
check=false algorithm=./omp1 nitems=30000 counters=1000 threshold=60 memory=183240 outputsize=164 time=0.050000 walltime=0.012000 epsilon=0.000367 threads=4
check=false algorithm=./omp1_33 nitems=30000 counters=1000 threshold=60 memory=1350840 outputsize=395 time=0.200000 walltime=0.057000 epsilon=0.000367 threads=4
check=false algorithm=./omp2 nitems=30000 counters=1000 threshold=60 memory=1444952 outputsize=502 time=0.180000 walltime=0.050000 epsilon=0.000267 threads=4
check=false algorithm=./omp1 nitems=30000 counters=1000 threshold=600 memory=183240 outputsize=18 time=0.020000 walltime=0.017000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=30000 counters=1000 threshold=600 memory=1350840 outputsize=40 time=0.110000 walltime=0.109000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=30000 counters=1000 threshold=600 memory=1444952 outputsize=40 time=0.120000 walltime=0.128000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=30000 counters=1000 threshold=600 memory=183240 outputsize=18 time=0.030000 walltime=0.016000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=30000 counters=1000 threshold=600 memory=1350840 outputsize=40 time=0.130000 walltime=0.087000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=30000 counters=1000 threshold=600 memory=1444952 outputsize=40 time=0.140000 walltime=0.088000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=30000 counters=1000 threshold=600 memory=183240 outputsize=18 time=0.040000 walltime=0.013000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=30000 counters=1000 threshold=600 memory=1350840 outputsize=40 time=0.160000 walltime=0.067000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=30000 counters=1000 threshold=600 memory=1444952 outputsize=40 time=0.160000 walltime=0.063000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=30000 counters=1000 threshold=600 memory=183240 outputsize=18 time=0.050000 walltime=0.013000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=30000 counters=1000 threshold=600 memory=1350840 outputsize=40 time=0.180000 walltime=0.057000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=30000 counters=1000 threshold=600 memory=1444952 outputsize=40 time=0.170000 walltime=0.050000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=30000 counters=1000 threshold=150 memory=183240 outputsize=68 time=0.020000 walltime=0.017000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=30000 counters=1000 threshold=150 memory=1350840 outputsize=160 time=0.110000 walltime=0.108000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=30000 counters=1000 threshold=150 memory=1444952 outputsize=200 time=0.130000 walltime=0.128000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=30000 counters=1000 threshold=150 memory=183240 outputsize=68 time=0.030000 walltime=0.014000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=30000 counters=1000 threshold=150 memory=1350840 outputsize=160 time=0.130000 walltime=0.089000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=30000 counters=1000 threshold=150 memory=1444952 outputsize=200 time=0.140000 walltime=0.088000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=30000 counters=1000 threshold=150 memory=183240 outputsize=68 time=0.040000 walltime=0.013000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=30000 counters=1000 threshold=150 memory=1350840 outputsize=160 time=0.140000 walltime=0.067000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=30000 counters=1000 threshold=150 memory=1444952 outputsize=200 time=0.150000 walltime=0.063000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=30000 counters=1000 threshold=150 memory=183240 outputsize=68 time=0.050000 walltime=0.013000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=30000 counters=1000 threshold=150 memory=1350840 outputsize=160 time=0.200000 walltime=0.057000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=30000 counters=1000 threshold=150 memory=1444952 outputsize=200 time=0.190000 walltime=0.050000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=100000 counters=10 threshold=20000 memory=3480 outputsize=1 time=0.060000 walltime=0.053000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=100000 counters=10 threshold=20000 memory=25208 outputsize=4 time=0.370000 walltime=0.367000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=100000 counters=10 threshold=20000 memory=22360 outputsize=1 time=0.340000 walltime=0.345000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=100000 counters=10 threshold=20000 memory=3480 outputsize=1 time=0.070000 walltime=0.042000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=100000 counters=10 threshold=20000 memory=25208 outputsize=4 time=0.380000 walltime=0.243000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=100000 counters=10 threshold=20000 memory=22360 outputsize=1 time=0.360000 walltime=0.194000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=100000 counters=10 threshold=20000 memory=3480 outputsize=1 time=0.080000 walltime=0.029000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=100000 counters=10 threshold=20000 memory=25208 outputsize=4 time=0.390000 walltime=0.157000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=100000 counters=10 threshold=20000 memory=22360 outputsize=1 time=0.360000 walltime=0.135000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=100000 counters=10 threshold=20000 memory=3480 outputsize=1 time=0.100000 walltime=0.029000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=100000 counters=10 threshold=20000 memory=25208 outputsize=4 time=0.400000 walltime=0.129000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=100000 counters=10 threshold=20000 memory=22360 outputsize=1 time=0.370000 walltime=0.104000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=100000 counters=100 threshold=2000 memory=23640 outputsize=19 time=0.060000 walltime=0.061000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=100000 counters=100 threshold=2000 memory=160840 outputsize=40 time=0.410000 walltime=0.409000 epsilon=0.000010 threads=1
check=false algorithm=./omp2 nitems=100000 counters=100 threshold=2000 memory=160600 outputsize=41 time=0.450000 walltime=0.455000 epsilon=0.000020 threads=1
check=false algorithm=./omp1 nitems=100000 counters=100 threshold=2000 memory=23640 outputsize=19 time=0.070000 walltime=0.053000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=100000 counters=100 threshold=2000 memory=160840 outputsize=40 time=0.420000 walltime=0.317000 epsilon=0.000010 threads=2
check=false algorithm=./omp2 nitems=100000 counters=100 threshold=2000 memory=160600 outputsize=41 time=0.470000 walltime=0.280000 epsilon=0.000020 threads=2
check=false algorithm=./omp1 nitems=100000 counters=100 threshold=2000 memory=23640 outputsize=19 time=0.090000 walltime=0.040000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=100000 counters=100 threshold=2000 memory=160840 outputsize=40 time=0.450000 walltime=0.218000 epsilon=0.000010 threads=3
check=false algorithm=./omp2 nitems=100000 counters=100 threshold=2000 memory=160600 outputsize=41 time=0.480000 walltime=0.196000 epsilon=0.000020 threads=3
check=false algorithm=./omp1 nitems=100000 counters=100 threshold=2000 memory=23640 outputsize=19 time=0.110000 walltime=0.040000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=100000 counters=100 threshold=2000 memory=160840 outputsize=40 time=0.460000 walltime=0.178000 epsilon=0.000010 threads=4
check=false algorithm=./omp2 nitems=100000 counters=100 threshold=2000 memory=160600 outputsize=41 time=0.490000 walltime=0.157000 epsilon=0.000020 threads=4
check=false algorithm=./omp1 nitems=100000 counters=1000 threshold=200 memory=183240 outputsize=159 time=0.050000 walltime=0.056000 epsilon=0.000040 threads=1
check=false algorithm=./omp1_33 nitems=100000 counters=1000 threshold=200 memory=1350840 outputsize=386 time=0.350000 walltime=0.354000 epsilon=0.000060 threads=1
check=false algorithm=./omp2 nitems=100000 counters=1000 threshold=200 memory=1444952 outputsize=499 time=0.420000 walltime=0.422000 epsilon=0.000620 threads=1
check=false algorithm=./omp1 nitems=100000 counters=1000 threshold=200 memory=183240 outputsize=159 time=0.070000 walltime=0.048000 epsilon=0.000040 threads=2
check=false algorithm=./omp1_33 nitems=100000 counters=1000 threshold=200 memory=1350840 outputsize=386 time=0.370000 walltime=0.288000 epsilon=0.000060 threads=2
check=false algorithm=./omp2 nitems=100000 counters=1000 threshold=200 memory=1444952 outputsize=499 time=0.440000 walltime=0.293000 epsilon=0.000620 threads=2
check=false algorithm=./omp1 nitems=100000 counters=1000 threshold=200 memory=183240 outputsize=159 time=0.090000 walltime=0.042000 epsilon=0.000040 threads=3
check=false algorithm=./omp1_33 nitems=100000 counters=1000 threshold=200 memory=1350840 outputsize=386 time=0.390000 walltime=0.223000 epsilon=0.000060 threads=3
check=false algorithm=./omp2 nitems=100000 counters=1000 threshold=200 memory=1444952 outputsize=499 time=0.460000 walltime=0.208000 epsilon=0.000620 threads=3
check=false algorithm=./omp1 nitems=100000 counters=1000 threshold=200 memory=183240 outputsize=159 time=0.110000 walltime=0.042000 epsilon=0.000040 threads=4
check=false algorithm=./omp1_33 nitems=100000 counters=1000 threshold=200 memory=1350840 outputsize=386 time=0.400000 walltime=0.186000 epsilon=0.000060 threads=4
check=false algorithm=./omp2 nitems=100000 counters=1000 threshold=200 memory=1444952 outputsize=499 time=0.480000 walltime=0.165000 epsilon=0.000620 threads=4
check=false algorithm=./omp1 nitems=100000 counters=1000 threshold=2000 memory=183240 outputsize=19 time=0.050000 walltime=0.055000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=100000 counters=1000 threshold=2000 memory=1350840 outputsize=40 time=0.350000 walltime=0.353000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=100000 counters=1000 threshold=2000 memory=1444952 outputsize=40 time=0.420000 walltime=0.422000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=100000 counters=1000 threshold=2000 memory=183240 outputsize=19 time=0.070000 walltime=0.052000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=100000 counters=1000 threshold=2000 memory=1350840 outputsize=40 time=0.370000 walltime=0.287000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=100000 counters=1000 threshold=2000 memory=1444952 outputsize=40 time=0.440000 walltime=0.291000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=100000 counters=1000 threshold=2000 memory=183240 outputsize=19 time=0.090000 walltime=0.042000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=100000 counters=1000 threshold=2000 memory=1350840 outputsize=40 time=0.390000 walltime=0.223000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=100000 counters=1000 threshold=2000 memory=1444952 outputsize=40 time=0.460000 walltime=0.209000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=100000 counters=1000 threshold=2000 memory=183240 outputsize=19 time=0.100000 walltime=0.043000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=100000 counters=1000 threshold=2000 memory=1350840 outputsize=40 time=0.400000 walltime=0.187000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=100000 counters=1000 threshold=2000 memory=1444952 outputsize=40 time=0.480000 walltime=0.165000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=100000 counters=1000 threshold=500 memory=183240 outputsize=65 time=0.050000 walltime=0.056000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=100000 counters=1000 threshold=500 memory=1350840 outputsize=163 time=0.350000 walltime=0.354000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=100000 counters=1000 threshold=500 memory=1444952 outputsize=194 time=0.420000 walltime=0.423000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=100000 counters=1000 threshold=500 memory=183240 outputsize=65 time=0.070000 walltime=0.048000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=100000 counters=1000 threshold=500 memory=1350840 outputsize=163 time=0.370000 walltime=0.287000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=100000 counters=1000 threshold=500 memory=1444952 outputsize=194 time=0.440000 walltime=0.292000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=100000 counters=1000 threshold=500 memory=183240 outputsize=65 time=0.090000 walltime=0.041000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=100000 counters=1000 threshold=500 memory=1350840 outputsize=163 time=0.390000 walltime=0.222000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=100000 counters=1000 threshold=500 memory=1444952 outputsize=194 time=0.470000 walltime=0.213000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=100000 counters=1000 threshold=500 memory=183240 outputsize=65 time=0.110000 walltime=0.041000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=100000 counters=1000 threshold=500 memory=1350840 outputsize=163 time=0.400000 walltime=0.187000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=100000 counters=1000 threshold=500 memory=1444952 outputsize=194 time=0.470000 walltime=0.165000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=300000 counters=10 threshold=60000 memory=3480 outputsize=1 time=0.160000 walltime=0.159000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=300000 counters=10 threshold=60000 memory=25208 outputsize=4 time=1.100000 walltime=1.099000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=300000 counters=10 threshold=60000 memory=22360 outputsize=1 time=1.030000 walltime=1.026000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=300000 counters=10 threshold=60000 memory=3480 outputsize=1 time=0.170000 walltime=0.127000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=300000 counters=10 threshold=60000 memory=25208 outputsize=4 time=1.120000 walltime=0.718000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=300000 counters=10 threshold=60000 memory=22360 outputsize=1 time=1.040000 walltime=0.585000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=300000 counters=10 threshold=60000 memory=3480 outputsize=1 time=0.190000 walltime=0.085000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=300000 counters=10 threshold=60000 memory=25208 outputsize=4 time=1.130000 walltime=0.469000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=300000 counters=10 threshold=60000 memory=22360 outputsize=1 time=1.040000 walltime=0.403000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=300000 counters=10 threshold=60000 memory=3480 outputsize=1 time=0.210000 walltime=0.085000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=300000 counters=10 threshold=60000 memory=25208 outputsize=4 time=1.150000 walltime=0.385000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=300000 counters=10 threshold=60000 memory=22360 outputsize=1 time=1.070000 walltime=0.317000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=300000 counters=100 threshold=6000 memory=23640 outputsize=19 time=0.190000 walltime=0.184000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=300000 counters=100 threshold=6000 memory=160840 outputsize=39 time=1.220000 walltime=1.230000 epsilon=0.000003 threads=1
check=false algorithm=./omp2 nitems=300000 counters=100 threshold=6000 memory=160600 outputsize=41 time=1.360000 walltime=1.352000 epsilon=0.000007 threads=1
check=false algorithm=./omp1 nitems=300000 counters=100 threshold=6000 memory=23640 outputsize=19 time=0.200000 walltime=0.161000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=300000 counters=100 threshold=6000 memory=160840 outputsize=39 time=1.240000 walltime=0.945000 epsilon=0.000003 threads=2
check=false algorithm=./omp2 nitems=300000 counters=100 threshold=6000 memory=160600 outputsize=41 time=1.370000 walltime=0.842000 epsilon=0.000007 threads=2
check=false algorithm=./omp1 nitems=300000 counters=100 threshold=6000 memory=23640 outputsize=19 time=0.210000 walltime=0.119000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=300000 counters=100 threshold=6000 memory=160840 outputsize=39 time=1.260000 walltime=0.647000 epsilon=0.000003 threads=3
check=false algorithm=./omp2 nitems=300000 counters=100 threshold=6000 memory=160600 outputsize=41 time=1.380000 walltime=0.584000 epsilon=0.000007 threads=3
check=false algorithm=./omp1 nitems=300000 counters=100 threshold=6000 memory=23640 outputsize=19 time=0.230000 walltime=0.118000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=300000 counters=100 threshold=6000 memory=160840 outputsize=39 time=1.280000 walltime=0.535000 epsilon=0.000003 threads=4
check=false algorithm=./omp2 nitems=300000 counters=100 threshold=6000 memory=160600 outputsize=41 time=1.400000 walltime=0.458000 epsilon=0.000007 threads=4
check=false algorithm=./omp1 nitems=300000 counters=1000 threshold=600 memory=183240 outputsize=163 time=0.160000 walltime=0.165000 epsilon=0.000120 threads=1
check=false algorithm=./omp1_33 nitems=300000 counters=1000 threshold=600 memory=1350840 outputsize=385 time=1.060000 walltime=1.062000 epsilon=0.000120 threads=1
check=false algorithm=./omp2 nitems=300000 counters=1000 threshold=600 memory=1444952 outputsize=507 time=1.250000 walltime=1.260000 epsilon=0.000390 threads=1
check=false algorithm=./omp1 nitems=300000 counters=1000 threshold=600 memory=183240 outputsize=163 time=0.180000 walltime=0.143000 epsilon=0.000120 threads=2
check=false algorithm=./omp1_33 nitems=300000 counters=1000 threshold=600 memory=1350840 outputsize=385 time=1.070000 walltime=0.859000 epsilon=0.000120 threads=2
check=false algorithm=./omp2 nitems=300000 counters=1000 threshold=600 memory=1444952 outputsize=507 time=1.280000 walltime=0.868000 epsilon=0.000390 threads=2
check=false algorithm=./omp1 nitems=300000 counters=1000 threshold=600 memory=183240 outputsize=163 time=0.200000 walltime=0.126000 epsilon=0.000120 threads=3
check=false algorithm=./omp1_33 nitems=300000 counters=1000 threshold=600 memory=1350840 outputsize=385 time=1.090000 walltime=0.666000 epsilon=0.000120 threads=3
check=false algorithm=./omp2 nitems=300000 counters=1000 threshold=600 memory=1444952 outputsize=507 time=1.300000 walltime=0.624000 epsilon=0.000390 threads=3
check=false algorithm=./omp1 nitems=300000 counters=1000 threshold=600 memory=183240 outputsize=163 time=0.220000 walltime=0.126000 epsilon=0.000120 threads=4
check=false algorithm=./omp1_33 nitems=300000 counters=1000 threshold=600 memory=1350840 outputsize=385 time=1.120000 walltime=0.560000 epsilon=0.000120 threads=4
check=false algorithm=./omp2 nitems=300000 counters=1000 threshold=600 memory=1444952 outputsize=507 time=1.310000 walltime=0.489000 epsilon=0.000390 threads=4
check=false algorithm=./omp1 nitems=300000 counters=1000 threshold=6000 memory=183240 outputsize=19 time=0.170000 walltime=0.165000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=300000 counters=1000 threshold=6000 memory=1350840 outputsize=39 time=1.050000 walltime=1.065000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=300000 counters=1000 threshold=6000 memory=1444952 outputsize=40 time=1.250000 walltime=1.255000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=300000 counters=1000 threshold=6000 memory=183240 outputsize=19 time=0.190000 walltime=0.143000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=300000 counters=1000 threshold=6000 memory=1350840 outputsize=39 time=1.070000 walltime=0.858000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=300000 counters=1000 threshold=6000 memory=1444952 outputsize=40 time=1.280000 walltime=0.870000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=300000 counters=1000 threshold=6000 memory=183240 outputsize=19 time=0.200000 walltime=0.125000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=300000 counters=1000 threshold=6000 memory=1350840 outputsize=39 time=1.090000 walltime=0.669000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=300000 counters=1000 threshold=6000 memory=1444952 outputsize=40 time=1.290000 walltime=0.623000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=300000 counters=1000 threshold=6000 memory=183240 outputsize=19 time=0.220000 walltime=0.125000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=300000 counters=1000 threshold=6000 memory=1350840 outputsize=39 time=1.110000 walltime=0.561000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=300000 counters=1000 threshold=6000 memory=1444952 outputsize=40 time=1.320000 walltime=0.498000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=300000 counters=1000 threshold=1500 memory=183240 outputsize=63 time=0.170000 walltime=0.166000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=300000 counters=1000 threshold=1500 memory=1350840 outputsize=160 time=1.060000 walltime=1.065000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=300000 counters=1000 threshold=1500 memory=1444952 outputsize=195 time=1.260000 walltime=1.262000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=300000 counters=1000 threshold=1500 memory=183240 outputsize=63 time=0.180000 walltime=0.143000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=300000 counters=1000 threshold=1500 memory=1350840 outputsize=160 time=1.070000 walltime=0.862000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=300000 counters=1000 threshold=1500 memory=1444952 outputsize=195 time=1.280000 walltime=0.875000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=300000 counters=1000 threshold=1500 memory=183240 outputsize=63 time=0.200000 walltime=0.128000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=300000 counters=1000 threshold=1500 memory=1350840 outputsize=160 time=1.090000 walltime=0.667000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=300000 counters=1000 threshold=1500 memory=1444952 outputsize=195 time=1.290000 walltime=0.618000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=300000 counters=1000 threshold=1500 memory=183240 outputsize=63 time=0.210000 walltime=0.124000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=300000 counters=1000 threshold=1500 memory=1350840 outputsize=160 time=1.120000 walltime=0.564000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=300000 counters=1000 threshold=1500 memory=1444952 outputsize=195 time=1.310000 walltime=0.491000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=1000000 counters=10 threshold=200000 memory=3480 outputsize=1 time=0.520000 walltime=0.527000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=1000000 counters=10 threshold=200000 memory=25208 outputsize=4 time=3.670000 walltime=3.675000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=1000000 counters=10 threshold=200000 memory=22360 outputsize=1 time=3.420000 walltime=3.428000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=1000000 counters=10 threshold=200000 memory=3480 outputsize=1 time=0.540000 walltime=0.418000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=1000000 counters=10 threshold=200000 memory=25208 outputsize=4 time=3.680000 walltime=2.381000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=1000000 counters=10 threshold=200000 memory=22360 outputsize=1 time=3.430000 walltime=1.950000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=1000000 counters=10 threshold=200000 memory=3480 outputsize=1 time=0.560000 walltime=0.283000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=1000000 counters=10 threshold=200000 memory=25208 outputsize=4 time=3.690000 walltime=1.564000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=1000000 counters=10 threshold=200000 memory=22360 outputsize=1 time=3.460000 walltime=1.353000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=1000000 counters=10 threshold=200000 memory=3480 outputsize=1 time=0.580000 walltime=0.284000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=1000000 counters=10 threshold=200000 memory=25208 outputsize=4 time=3.710000 walltime=1.283000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=1000000 counters=10 threshold=200000 memory=22360 outputsize=1 time=3.470000 walltime=1.052000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=1000000 counters=100 threshold=20000 memory=23640 outputsize=19 time=0.610000 walltime=0.611000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=1000000 counters=100 threshold=20000 memory=160840 outputsize=38 time=4.070000 walltime=4.083000 epsilon=0.000001 threads=1
check=false algorithm=./omp2 nitems=1000000 counters=100 threshold=20000 memory=160600 outputsize=41 time=4.460000 walltime=4.481000 epsilon=0.000002 threads=1
check=false algorithm=./omp1 nitems=1000000 counters=100 threshold=20000 memory=23640 outputsize=19 time=0.630000 walltime=0.532000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=1000000 counters=100 threshold=20000 memory=160840 outputsize=38 time=4.100000 walltime=3.148000 epsilon=0.000001 threads=2
check=false algorithm=./omp2 nitems=1000000 counters=100 threshold=20000 memory=160600 outputsize=41 time=4.510000 walltime=2.786000 epsilon=0.000002 threads=2
check=false algorithm=./omp1 nitems=1000000 counters=100 threshold=20000 memory=23640 outputsize=19 time=0.640000 walltime=0.392000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=1000000 counters=100 threshold=20000 memory=160840 outputsize=38 time=4.110000 walltime=2.143000 epsilon=0.000001 threads=3
check=false algorithm=./omp2 nitems=1000000 counters=100 threshold=20000 memory=160600 outputsize=41 time=4.510000 walltime=1.944000 epsilon=0.000002 threads=3
check=false algorithm=./omp1 nitems=1000000 counters=100 threshold=20000 memory=23640 outputsize=19 time=0.670000 walltime=0.397000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=1000000 counters=100 threshold=20000 memory=160840 outputsize=38 time=4.130000 walltime=1.774000 epsilon=0.000001 threads=4
check=false algorithm=./omp2 nitems=1000000 counters=100 threshold=20000 memory=160600 outputsize=41 time=4.530000 walltime=1.523000 epsilon=0.000002 threads=4
check=false algorithm=./omp1 nitems=1000000 counters=1000 threshold=2000 memory=183240 outputsize=152 time=0.540000 walltime=0.550000 epsilon=0.000011 threads=1
check=false algorithm=./omp1_33 nitems=1000000 counters=1000 threshold=2000 memory=1350840 outputsize=382 time=3.460000 walltime=3.475000 epsilon=0.000022 threads=1
check=false algorithm=./omp2 nitems=1000000 counters=1000 threshold=2000 memory=1444952 outputsize=500 time=4.170000 walltime=4.174000 epsilon=0.000198 threads=1
check=false algorithm=./omp1 nitems=1000000 counters=1000 threshold=2000 memory=183240 outputsize=152 time=0.570000 walltime=0.472000 epsilon=0.000011 threads=2
check=false algorithm=./omp1_33 nitems=1000000 counters=1000 threshold=2000 memory=1350840 outputsize=382 time=3.480000 walltime=2.814000 epsilon=0.000022 threads=2
check=false algorithm=./omp2 nitems=1000000 counters=1000 threshold=2000 memory=1444952 outputsize=500 time=4.190000 walltime=2.892000 epsilon=0.000198 threads=2
check=false algorithm=./omp1 nitems=1000000 counters=1000 threshold=2000 memory=183240 outputsize=152 time=0.580000 walltime=0.413000 epsilon=0.000011 threads=3
check=false algorithm=./omp1_33 nitems=1000000 counters=1000 threshold=2000 memory=1350840 outputsize=382 time=3.490000 walltime=2.188000 epsilon=0.000022 threads=3
check=false algorithm=./omp2 nitems=1000000 counters=1000 threshold=2000 memory=1444952 outputsize=500 time=4.200000 walltime=2.054000 epsilon=0.000198 threads=3
check=false algorithm=./omp1 nitems=1000000 counters=1000 threshold=2000 memory=183240 outputsize=152 time=0.600000 walltime=0.406000 epsilon=0.000011 threads=4
check=false algorithm=./omp1_33 nitems=1000000 counters=1000 threshold=2000 memory=1350840 outputsize=382 time=3.520000 walltime=1.833000 epsilon=0.000022 threads=4
check=false algorithm=./omp2 nitems=1000000 counters=1000 threshold=2000 memory=1444952 outputsize=500 time=4.230000 walltime=1.639000 epsilon=0.000198 threads=4
check=false algorithm=./omp1 nitems=1000000 counters=1000 threshold=20000 memory=183240 outputsize=19 time=0.550000 walltime=0.548000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=1000000 counters=1000 threshold=20000 memory=1350840 outputsize=38 time=3.470000 walltime=3.480000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=1000000 counters=1000 threshold=20000 memory=1444952 outputsize=40 time=4.170000 walltime=4.175000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=1000000 counters=1000 threshold=20000 memory=183240 outputsize=19 time=0.560000 walltime=0.468000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=1000000 counters=1000 threshold=20000 memory=1350840 outputsize=38 time=3.490000 walltime=2.824000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=1000000 counters=1000 threshold=20000 memory=1444952 outputsize=40 time=4.180000 walltime=2.888000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=1000000 counters=1000 threshold=20000 memory=183240 outputsize=19 time=0.580000 walltime=0.407000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=1000000 counters=1000 threshold=20000 memory=1350840 outputsize=38 time=3.500000 walltime=2.188000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=1000000 counters=1000 threshold=20000 memory=1444952 outputsize=40 time=4.220000 walltime=2.065000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=1000000 counters=1000 threshold=20000 memory=183240 outputsize=19 time=0.600000 walltime=0.406000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=1000000 counters=1000 threshold=20000 memory=1350840 outputsize=38 time=3.540000 walltime=1.844000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=1000000 counters=1000 threshold=20000 memory=1444952 outputsize=40 time=4.240000 walltime=1.630000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=1000000 counters=1000 threshold=5000 memory=183240 outputsize=64 time=0.540000 walltime=0.549000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=1000000 counters=1000 threshold=5000 memory=1350840 outputsize=158 time=3.490000 walltime=3.479000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=1000000 counters=1000 threshold=5000 memory=1444952 outputsize=195 time=4.160000 walltime=4.179000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=1000000 counters=1000 threshold=5000 memory=183240 outputsize=64 time=0.580000 walltime=0.471000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=1000000 counters=1000 threshold=5000 memory=1350840 outputsize=158 time=3.480000 walltime=2.825000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=1000000 counters=1000 threshold=5000 memory=1444952 outputsize=195 time=4.190000 walltime=2.884000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=1000000 counters=1000 threshold=5000 memory=183240 outputsize=64 time=0.590000 walltime=0.407000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=1000000 counters=1000 threshold=5000 memory=1350840 outputsize=158 time=3.510000 walltime=2.190000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=1000000 counters=1000 threshold=5000 memory=1444952 outputsize=195 time=4.200000 walltime=2.060000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=1000000 counters=1000 threshold=5000 memory=183240 outputsize=64 time=0.590000 walltime=0.407000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=1000000 counters=1000 threshold=5000 memory=1350840 outputsize=158 time=3.520000 walltime=1.842000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=1000000 counters=1000 threshold=5000 memory=1444952 outputsize=195 time=4.220000 walltime=1.633000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=3000000 counters=10 threshold=600000 memory=3480 outputsize=1 time=1.570000 walltime=1.583000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=3000000 counters=10 threshold=600000 memory=25208 outputsize=4 time=11.010000 walltime=11.034000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=3000000 counters=10 threshold=600000 memory=22360 outputsize=1 time=10.190000 walltime=10.208000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=3000000 counters=10 threshold=600000 memory=3480 outputsize=1 time=1.600000 walltime=1.251000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=3000000 counters=10 threshold=600000 memory=25208 outputsize=4 time=11.020000 walltime=7.172000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=3000000 counters=10 threshold=600000 memory=22360 outputsize=1 time=10.200000 walltime=5.783000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=3000000 counters=10 threshold=600000 memory=3480 outputsize=1 time=1.610000 walltime=0.851000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=3000000 counters=10 threshold=600000 memory=25208 outputsize=4 time=11.030000 walltime=4.706000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=3000000 counters=10 threshold=600000 memory=22360 outputsize=1 time=10.250000 walltime=4.017000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=3000000 counters=10 threshold=600000 memory=3480 outputsize=1 time=1.630000 walltime=0.851000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=3000000 counters=10 threshold=600000 memory=25208 outputsize=4 time=11.050000 walltime=3.858000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=3000000 counters=10 threshold=600000 memory=22360 outputsize=1 time=10.240000 walltime=3.128000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=3000000 counters=100 threshold=60000 memory=23640 outputsize=20 time=1.830000 walltime=1.837000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=3000000 counters=100 threshold=60000 memory=160840 outputsize=40 time=12.230000 walltime=12.250000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=3000000 counters=100 threshold=60000 memory=160600 outputsize=41 time=13.320000 walltime=13.331000 epsilon=0.008923 threads=1
check=false algorithm=./omp1 nitems=3000000 counters=100 threshold=60000 memory=23640 outputsize=20 time=1.850000 walltime=1.606000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=3000000 counters=100 threshold=60000 memory=160840 outputsize=40 time=12.240000 walltime=9.446000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=3000000 counters=100 threshold=60000 memory=160600 outputsize=41 time=13.330000 walltime=8.286000 epsilon=0.008923 threads=2
check=false algorithm=./omp1 nitems=3000000 counters=100 threshold=60000 memory=23640 outputsize=20 time=1.870000 walltime=1.178000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=3000000 counters=100 threshold=60000 memory=160840 outputsize=40 time=12.270000 walltime=6.447000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=3000000 counters=100 threshold=60000 memory=160600 outputsize=41 time=13.380000 walltime=5.797000 epsilon=0.008923 threads=3
check=false algorithm=./omp1 nitems=3000000 counters=100 threshold=60000 memory=23640 outputsize=20 time=1.880000 walltime=1.179000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=3000000 counters=100 threshold=60000 memory=160840 outputsize=40 time=12.280000 walltime=5.316000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=3000000 counters=100 threshold=60000 memory=160600 outputsize=41 time=13.370000 walltime=4.528000 epsilon=0.008923 threads=4
check=false algorithm=./omp1 nitems=3000000 counters=1000 threshold=6000 memory=183240 outputsize=151 time=1.640000 walltime=1.634000 epsilon=0.000012 threads=1
check=false algorithm=./omp1_33 nitems=3000000 counters=1000 threshold=6000 memory=1350840 outputsize=382 time=10.380000 walltime=10.403000 epsilon=0.000012 threads=1
check=false algorithm=./omp2 nitems=3000000 counters=1000 threshold=6000 memory=1444952 outputsize=492 time=12.400000 walltime=12.409000 epsilon=0.000867 threads=1
check=false algorithm=./omp1 nitems=3000000 counters=1000 threshold=6000 memory=183240 outputsize=151 time=1.650000 walltime=1.405000 epsilon=0.000012 threads=2
check=false algorithm=./omp1_33 nitems=3000000 counters=1000 threshold=6000 memory=1350840 outputsize=382 time=10.400000 walltime=8.441000 epsilon=0.000012 threads=2
check=false algorithm=./omp2 nitems=3000000 counters=1000 threshold=6000 memory=1444952 outputsize=492 time=12.430000 walltime=8.594000 epsilon=0.000867 threads=2
check=false algorithm=./omp1 nitems=3000000 counters=1000 threshold=6000 memory=183240 outputsize=151 time=1.670000 walltime=1.233000 epsilon=0.000012 threads=3
check=false algorithm=./omp1_33 nitems=3000000 counters=1000 threshold=6000 memory=1350840 outputsize=382 time=10.410000 walltime=6.549000 epsilon=0.000012 threads=3
check=false algorithm=./omp2 nitems=3000000 counters=1000 threshold=6000 memory=1444952 outputsize=492 time=12.430000 walltime=6.135000 epsilon=0.000867 threads=3
check=false algorithm=./omp1 nitems=3000000 counters=1000 threshold=6000 memory=183240 outputsize=151 time=1.690000 walltime=1.217000 epsilon=0.000012 threads=4
check=false algorithm=./omp1_33 nitems=3000000 counters=1000 threshold=6000 memory=1350840 outputsize=382 time=10.410000 walltime=5.484000 epsilon=0.000012 threads=4
check=false algorithm=./omp2 nitems=3000000 counters=1000 threshold=6000 memory=1444952 outputsize=492 time=12.450000 walltime=4.853000 epsilon=0.000867 threads=4
check=false algorithm=./omp1 nitems=3000000 counters=1000 threshold=60000 memory=183240 outputsize=20 time=1.630000 walltime=1.628000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=3000000 counters=1000 threshold=60000 memory=1350840 outputsize=40 time=10.380000 walltime=10.391000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=3000000 counters=1000 threshold=60000 memory=1444952 outputsize=40 time=12.380000 walltime=12.413000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=3000000 counters=1000 threshold=60000 memory=183240 outputsize=20 time=1.660000 walltime=1.406000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=3000000 counters=1000 threshold=60000 memory=1350840 outputsize=40 time=10.400000 walltime=8.439000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=3000000 counters=1000 threshold=60000 memory=1444952 outputsize=40 time=12.420000 walltime=8.584000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=3000000 counters=1000 threshold=60000 memory=183240 outputsize=20 time=1.670000 walltime=1.218000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=3000000 counters=1000 threshold=60000 memory=1350840 outputsize=40 time=10.410000 walltime=6.557000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=3000000 counters=1000 threshold=60000 memory=1444952 outputsize=40 time=12.410000 walltime=6.125000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=3000000 counters=1000 threshold=60000 memory=183240 outputsize=20 time=1.690000 walltime=1.223000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=3000000 counters=1000 threshold=60000 memory=1350840 outputsize=40 time=10.490000 walltime=5.530000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=3000000 counters=1000 threshold=60000 memory=1444952 outputsize=40 time=12.430000 walltime=4.836000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=3000000 counters=1000 threshold=15000 memory=183240 outputsize=64 time=1.620000 walltime=1.623000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=3000000 counters=1000 threshold=15000 memory=1350840 outputsize=160 time=10.390000 walltime=10.415000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=3000000 counters=1000 threshold=15000 memory=1444952 outputsize=195 time=12.390000 walltime=12.424000 epsilon=0.000867 threads=1
check=false algorithm=./omp1 nitems=3000000 counters=1000 threshold=15000 memory=183240 outputsize=64 time=1.660000 walltime=1.401000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=3000000 counters=1000 threshold=15000 memory=1350840 outputsize=160 time=10.400000 walltime=8.446000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=3000000 counters=1000 threshold=15000 memory=1444952 outputsize=195 time=12.410000 walltime=8.600000 epsilon=0.000867 threads=2
check=false algorithm=./omp1 nitems=3000000 counters=1000 threshold=15000 memory=183240 outputsize=64 time=1.670000 walltime=1.226000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=3000000 counters=1000 threshold=15000 memory=1350840 outputsize=160 time=10.430000 walltime=6.574000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=3000000 counters=1000 threshold=15000 memory=1444952 outputsize=195 time=12.440000 walltime=6.150000 epsilon=0.000867 threads=3
check=false algorithm=./omp1 nitems=3000000 counters=1000 threshold=15000 memory=183240 outputsize=64 time=1.680000 walltime=1.223000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=3000000 counters=1000 threshold=15000 memory=1350840 outputsize=160 time=10.430000 walltime=5.492000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=3000000 counters=1000 threshold=15000 memory=1444952 outputsize=195 time=12.460000 walltime=4.863000 epsilon=0.000867 threads=4
check=false algorithm=./omp1 nitems=10000000 counters=10 threshold=2000000 memory=3480 outputsize=1 time=5.240000 walltime=5.254000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=10000000 counters=10 threshold=2000000 memory=25208 outputsize=4 time=36.490000 walltime=36.570000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=10000000 counters=10 threshold=2000000 memory=22360 outputsize=2 time=34.140000 walltime=34.216000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=10000000 counters=10 threshold=2000000 memory=3480 outputsize=1 time=5.260000 walltime=4.136000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=10000000 counters=10 threshold=2000000 memory=25208 outputsize=4 time=36.500000 walltime=23.771000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=10000000 counters=10 threshold=2000000 memory=22360 outputsize=2 time=34.160000 walltime=19.408000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=10000000 counters=10 threshold=2000000 memory=3480 outputsize=1 time=5.260000 walltime=2.826000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=10000000 counters=10 threshold=2000000 memory=25208 outputsize=4 time=36.520000 walltime=15.603000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=10000000 counters=10 threshold=2000000 memory=22360 outputsize=2 time=34.140000 walltime=13.421000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=10000000 counters=10 threshold=2000000 memory=3480 outputsize=1 time=5.280000 walltime=2.828000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=10000000 counters=10 threshold=2000000 memory=25208 outputsize=4 time=36.530000 walltime=12.819000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=10000000 counters=10 threshold=2000000 memory=22360 outputsize=2 time=34.170000 walltime=10.507000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=10000000 counters=100 threshold=200000 memory=23640 outputsize=19 time=6.070000 walltime=6.082000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=10000000 counters=100 threshold=200000 memory=160840 outputsize=39 time=40.570000 walltime=40.648000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=10000000 counters=100 threshold=200000 memory=160600 outputsize=41 time=44.490000 walltime=44.596000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=10000000 counters=100 threshold=200000 memory=23640 outputsize=19 time=6.090000 walltime=5.316000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=10000000 counters=100 threshold=200000 memory=160840 outputsize=39 time=40.540000 walltime=31.230000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=10000000 counters=100 threshold=200000 memory=160600 outputsize=41 time=44.510000 walltime=27.741000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=10000000 counters=100 threshold=200000 memory=23640 outputsize=19 time=6.120000 walltime=3.896000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=10000000 counters=100 threshold=200000 memory=160840 outputsize=39 time=40.550000 walltime=21.299000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=10000000 counters=100 threshold=200000 memory=160600 outputsize=41 time=44.520000 walltime=19.395000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=10000000 counters=100 threshold=200000 memory=23640 outputsize=19 time=6.130000 walltime=3.893000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=10000000 counters=100 threshold=200000 memory=160840 outputsize=39 time=40.560000 walltime=17.598000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=10000000 counters=100 threshold=200000 memory=160600 outputsize=41 time=44.710000 walltime=15.210000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=10000000 counters=1000 threshold=20000 memory=183240 outputsize=155 time=5.400000 walltime=5.406000 epsilon=0.000494 threads=1
check=false algorithm=./omp1_33 nitems=10000000 counters=1000 threshold=20000 memory=1350840 outputsize=380 time=34.410000 walltime=34.484000 epsilon=0.000494 threads=1
check=false algorithm=./omp2 nitems=10000000 counters=1000 threshold=20000 memory=1444952 outputsize=485 time=41.430000 walltime=41.503000 epsilon=0.000260 threads=1
check=false algorithm=./omp1 nitems=10000000 counters=1000 threshold=20000 memory=183240 outputsize=155 time=5.430000 walltime=4.642000 epsilon=0.000494 threads=2
check=false algorithm=./omp1_33 nitems=10000000 counters=1000 threshold=20000 memory=1350840 outputsize=380 time=34.430000 walltime=27.941000 epsilon=0.000494 threads=2
check=false algorithm=./omp2 nitems=10000000 counters=1000 threshold=20000 memory=1444952 outputsize=485 time=41.440000 walltime=28.780000 epsilon=0.000260 threads=2
check=false algorithm=./omp1 nitems=10000000 counters=1000 threshold=20000 memory=183240 outputsize=155 time=5.460000 walltime=4.039000 epsilon=0.000494 threads=3
check=false algorithm=./omp1_33 nitems=10000000 counters=1000 threshold=20000 memory=1350840 outputsize=380 time=34.440000 walltime=21.664000 epsilon=0.000494 threads=3
check=false algorithm=./omp2 nitems=10000000 counters=1000 threshold=20000 memory=1444952 outputsize=485 time=41.430000 walltime=20.540000 epsilon=0.000260 threads=3
check=false algorithm=./omp1 nitems=10000000 counters=1000 threshold=20000 memory=183240 outputsize=155 time=5.480000 walltime=4.039000 epsilon=0.000494 threads=4
check=false algorithm=./omp1_33 nitems=10000000 counters=1000 threshold=20000 memory=1350840 outputsize=380 time=34.450000 walltime=18.367000 epsilon=0.000494 threads=4
check=false algorithm=./omp2 nitems=10000000 counters=1000 threshold=20000 memory=1444952 outputsize=485 time=41.470000 walltime=16.273000 epsilon=0.000260 threads=4
check=false algorithm=./omp1 nitems=10000000 counters=1000 threshold=200000 memory=183240 outputsize=19 time=5.400000 walltime=5.409000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=10000000 counters=1000 threshold=200000 memory=1350840 outputsize=39 time=34.360000 walltime=34.395000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=10000000 counters=1000 threshold=200000 memory=1444952 outputsize=40 time=41.340000 walltime=41.392000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=10000000 counters=1000 threshold=200000 memory=183240 outputsize=19 time=5.440000 walltime=4.645000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=10000000 counters=1000 threshold=200000 memory=1350840 outputsize=39 time=34.420000 walltime=27.952000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=10000000 counters=1000 threshold=200000 memory=1444952 outputsize=40 time=41.440000 walltime=28.766000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=10000000 counters=1000 threshold=200000 memory=183240 outputsize=19 time=5.500000 walltime=4.080000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=10000000 counters=1000 threshold=200000 memory=1350840 outputsize=39 time=34.420000 walltime=21.620000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=10000000 counters=1000 threshold=200000 memory=1444952 outputsize=40 time=41.430000 walltime=20.513000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=10000000 counters=1000 threshold=200000 memory=183240 outputsize=19 time=5.530000 walltime=4.073000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=10000000 counters=1000 threshold=200000 memory=1350840 outputsize=39 time=34.470000 walltime=18.145000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=10000000 counters=1000 threshold=200000 memory=1444952 outputsize=40 time=41.550000 walltime=16.268000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=10000000 counters=1000 threshold=50000 memory=183240 outputsize=68 time=5.390000 walltime=5.409000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=10000000 counters=1000 threshold=50000 memory=1350840 outputsize=161 time=34.290000 walltime=34.307000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=10000000 counters=1000 threshold=50000 memory=1444952 outputsize=197 time=41.400000 walltime=41.496000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=10000000 counters=1000 threshold=50000 memory=183240 outputsize=68 time=5.450000 walltime=4.643000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=10000000 counters=1000 threshold=50000 memory=1350840 outputsize=161 time=34.430000 walltime=27.923000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=10000000 counters=1000 threshold=50000 memory=1444952 outputsize=197 time=41.440000 walltime=28.800000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=10000000 counters=1000 threshold=50000 memory=183240 outputsize=68 time=5.470000 walltime=4.040000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=10000000 counters=1000 threshold=50000 memory=1350840 outputsize=161 time=34.410000 walltime=21.642000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=10000000 counters=1000 threshold=50000 memory=1444952 outputsize=197 time=41.420000 walltime=20.534000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=10000000 counters=1000 threshold=50000 memory=183240 outputsize=68 time=5.480000 walltime=4.046000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=10000000 counters=1000 threshold=50000 memory=1350840 outputsize=161 time=34.450000 walltime=18.146000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=10000000 counters=1000 threshold=50000 memory=1444952 outputsize=197 time=41.500000 walltime=16.271000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=30000000 counters=10 threshold=6000000 memory=3480 outputsize=1 time=15.730000 walltime=15.749000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=30000000 counters=10 threshold=6000000 memory=25208 outputsize=4 time=109.440000 walltime=109.667000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=30000000 counters=10 threshold=6000000 memory=22360 outputsize=2 time=102.610000 walltime=102.795000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=30000000 counters=10 threshold=6000000 memory=3480 outputsize=1 time=15.750000 walltime=12.413000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=30000000 counters=10 threshold=6000000 memory=25208 outputsize=4 time=109.570000 walltime=71.286000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=30000000 counters=10 threshold=6000000 memory=22360 outputsize=2 time=102.640000 walltime=58.409000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=30000000 counters=10 threshold=6000000 memory=3480 outputsize=1 time=15.710000 walltime=8.469000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=30000000 counters=10 threshold=6000000 memory=25208 outputsize=4 time=109.280000 walltime=46.824000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=30000000 counters=10 threshold=6000000 memory=22360 outputsize=2 time=102.740000 walltime=40.400000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=30000000 counters=10 threshold=6000000 memory=3480 outputsize=1 time=15.740000 walltime=8.461000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=30000000 counters=10 threshold=6000000 memory=25208 outputsize=4 time=109.350000 walltime=38.536000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=30000000 counters=10 threshold=6000000 memory=22360 outputsize=2 time=102.570000 walltime=31.525000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=30000000 counters=100 threshold=600000 memory=23640 outputsize=18 time=18.160000 walltime=18.217000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=30000000 counters=100 threshold=600000 memory=160840 outputsize=40 time=120.800000 walltime=120.842000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=30000000 counters=100 threshold=600000 memory=160600 outputsize=42 time=133.170000 walltime=133.302000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=30000000 counters=100 threshold=600000 memory=23640 outputsize=18 time=18.130000 walltime=15.827000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=30000000 counters=100 threshold=600000 memory=160840 outputsize=40 time=121.240000 walltime=93.450000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=30000000 counters=100 threshold=600000 memory=160600 outputsize=42 time=133.460000 walltime=82.781000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=30000000 counters=100 threshold=600000 memory=23640 outputsize=18 time=18.150000 walltime=11.651000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=30000000 counters=100 threshold=600000 memory=160840 outputsize=40 time=121.160000 walltime=63.587000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=30000000 counters=100 threshold=600000 memory=160600 outputsize=42 time=133.450000 walltime=57.906000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=30000000 counters=100 threshold=600000 memory=23640 outputsize=18 time=18.170000 walltime=11.573000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=30000000 counters=100 threshold=600000 memory=160840 outputsize=40 time=121.210000 walltime=52.457000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=30000000 counters=100 threshold=600000 memory=160600 outputsize=42 time=133.690000 walltime=45.594000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=30000000 counters=1000 threshold=60000 memory=183240 outputsize=160 time=16.210000 walltime=16.241000 epsilon=0.000001 threads=1
check=false algorithm=./omp1_33 nitems=30000000 counters=1000 threshold=60000 memory=1350840 outputsize=377 time=102.510000 walltime=102.532000 epsilon=0.000001 threads=1
check=false algorithm=./omp2 nitems=30000000 counters=1000 threshold=60000 memory=1444952 outputsize=487 time=124.710000 walltime=124.844000 epsilon=0.000533 threads=1
check=false algorithm=./omp1 nitems=30000000 counters=1000 threshold=60000 memory=183240 outputsize=160 time=16.210000 walltime=13.827000 epsilon=0.000001 threads=2
check=false algorithm=./omp1_33 nitems=30000000 counters=1000 threshold=60000 memory=1350840 outputsize=377 time=102.670000 walltime=83.080000 epsilon=0.000001 threads=2
check=false algorithm=./omp2 nitems=30000000 counters=1000 threshold=60000 memory=1444952 outputsize=487 time=124.980000 walltime=86.880000 epsilon=0.000533 threads=2
check=false algorithm=./omp1 nitems=30000000 counters=1000 threshold=60000 memory=183240 outputsize=160 time=16.280000 walltime=12.067000 epsilon=0.000001 threads=3
check=false algorithm=./omp1_33 nitems=30000000 counters=1000 threshold=60000 memory=1350840 outputsize=377 time=102.760000 walltime=64.356000 epsilon=0.000001 threads=3
check=false algorithm=./omp2 nitems=30000000 counters=1000 threshold=60000 memory=1444952 outputsize=487 time=124.830000 walltime=61.836000 epsilon=0.000533 threads=3
check=false algorithm=./omp1 nitems=30000000 counters=1000 threshold=60000 memory=183240 outputsize=160 time=16.290000 walltime=12.052000 epsilon=0.000001 threads=4
check=false algorithm=./omp1_33 nitems=30000000 counters=1000 threshold=60000 memory=1350840 outputsize=377 time=103.050000 walltime=54.123000 epsilon=0.000001 threads=4
check=false algorithm=./omp2 nitems=30000000 counters=1000 threshold=60000 memory=1444952 outputsize=487 time=125.060000 walltime=49.007000 epsilon=0.000533 threads=4
check=false algorithm=./omp1 nitems=30000000 counters=1000 threshold=600000 memory=183240 outputsize=18 time=16.170000 walltime=16.221000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=30000000 counters=1000 threshold=600000 memory=1350840 outputsize=40 time=102.940000 walltime=103.103000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=30000000 counters=1000 threshold=600000 memory=1444952 outputsize=41 time=124.400000 walltime=124.448000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=30000000 counters=1000 threshold=600000 memory=183240 outputsize=18 time=16.240000 walltime=13.890000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=30000000 counters=1000 threshold=600000 memory=1350840 outputsize=40 time=102.700000 walltime=83.195000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=30000000 counters=1000 threshold=600000 memory=1444952 outputsize=41 time=124.820000 walltime=86.497000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=30000000 counters=1000 threshold=600000 memory=183240 outputsize=18 time=16.230000 walltime=11.979000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=30000000 counters=1000 threshold=600000 memory=1350840 outputsize=40 time=103.030000 walltime=64.714000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=30000000 counters=1000 threshold=600000 memory=1444952 outputsize=41 time=124.960000 walltime=61.853000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=30000000 counters=1000 threshold=600000 memory=183240 outputsize=18 time=16.460000 walltime=12.221000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=30000000 counters=1000 threshold=600000 memory=1350840 outputsize=40 time=103.210000 walltime=54.229000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=30000000 counters=1000 threshold=600000 memory=1444952 outputsize=41 time=124.940000 walltime=48.731000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=30000000 counters=1000 threshold=150000 memory=183240 outputsize=64 time=16.140000 walltime=16.179000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=30000000 counters=1000 threshold=150000 memory=1350840 outputsize=161 time=102.910000 walltime=103.086000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=30000000 counters=1000 threshold=150000 memory=1444952 outputsize=196 time=124.660000 walltime=124.702000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=30000000 counters=1000 threshold=150000 memory=183240 outputsize=64 time=16.200000 walltime=13.820000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=30000000 counters=1000 threshold=150000 memory=1350840 outputsize=161 time=103.020000 walltime=83.641000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=30000000 counters=1000 threshold=150000 memory=1444952 outputsize=196 time=124.540000 walltime=86.247000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=30000000 counters=1000 threshold=150000 memory=183240 outputsize=64 time=16.240000 walltime=11.991000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=30000000 counters=1000 threshold=150000 memory=1350840 outputsize=161 time=103.190000 walltime=64.874000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=30000000 counters=1000 threshold=150000 memory=1444952 outputsize=196 time=124.780000 walltime=61.728000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=30000000 counters=1000 threshold=150000 memory=183240 outputsize=64 time=16.310000 walltime=12.083000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=30000000 counters=1000 threshold=150000 memory=1350840 outputsize=161 time=103.080000 walltime=54.213000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=30000000 counters=1000 threshold=150000 memory=1444952 outputsize=196 time=125.340000 walltime=49.124000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=100000000 counters=10 threshold=20000000 memory=3480 outputsize=1 time=52.400000 walltime=52.450000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=100000000 counters=10 threshold=20000000 memory=25208 outputsize=4 time=365.480000 walltime=365.880000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=100000000 counters=10 threshold=20000000 memory=22360 outputsize=1 time=342.200000 walltime=342.496000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=100000000 counters=10 threshold=20000000 memory=3480 outputsize=1 time=52.630000 walltime=41.560000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=100000000 counters=10 threshold=20000000 memory=25208 outputsize=4 time=365.310000 walltime=238.061000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=100000000 counters=10 threshold=20000000 memory=22360 outputsize=1 time=341.810000 walltime=194.379000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=100000000 counters=10 threshold=20000000 memory=3480 outputsize=1 time=52.480000 walltime=28.447000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=100000000 counters=10 threshold=20000000 memory=25208 outputsize=4 time=365.150000 walltime=156.624000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=100000000 counters=10 threshold=20000000 memory=22360 outputsize=1 time=342.010000 walltime=135.418000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=100000000 counters=10 threshold=20000000 memory=3480 outputsize=1 time=52.510000 walltime=28.418000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=100000000 counters=10 threshold=20000000 memory=25208 outputsize=4 time=365.310000 walltime=128.214000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=100000000 counters=10 threshold=20000000 memory=22360 outputsize=1 time=342.100000 walltime=105.391000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=100000000 counters=100 threshold=2000000 memory=23640 outputsize=19 time=60.690000 walltime=60.736000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=100000000 counters=100 threshold=2000000 memory=160840 outputsize=39 time=405.300000 walltime=405.412000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=100000000 counters=100 threshold=2000000 memory=160600 outputsize=41 time=445.260000 walltime=445.527000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=100000000 counters=100 threshold=2000000 memory=23640 outputsize=19 time=60.730000 walltime=53.082000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=100000000 counters=100 threshold=2000000 memory=160840 outputsize=39 time=406.340000 walltime=313.137000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=100000000 counters=100 threshold=2000000 memory=160600 outputsize=41 time=445.960000 walltime=278.132000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=100000000 counters=100 threshold=2000000 memory=23640 outputsize=19 time=60.970000 walltime=39.142000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=100000000 counters=100 threshold=2000000 memory=160840 outputsize=39 time=406.780000 walltime=213.337000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=100000000 counters=100 threshold=2000000 memory=160600 outputsize=41 time=447.320000 walltime=194.919000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=100000000 counters=100 threshold=2000000 memory=23640 outputsize=19 time=60.980000 walltime=39.173000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=100000000 counters=100 threshold=2000000 memory=160840 outputsize=39 time=406.020000 walltime=175.429000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=100000000 counters=100 threshold=2000000 memory=160600 outputsize=41 time=446.410000 walltime=152.940000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=100000000 counters=1000 threshold=200000 memory=183240 outputsize=155 time=54.170000 walltime=54.300000 epsilon=0.000001 threads=1
check=false algorithm=./omp1_33 nitems=100000000 counters=1000 threshold=200000 memory=1350840 outputsize=382 time=345.170000 walltime=345.383000 epsilon=0.000001 threads=1
check=false algorithm=./omp2 nitems=100000000 counters=1000 threshold=200000 memory=1444952 outputsize=490 time=414.810000 walltime=414.960000 epsilon=0.000451 threads=1
check=false algorithm=./omp1 nitems=100000000 counters=1000 threshold=200000 memory=183240 outputsize=155 time=54.460000 walltime=46.690000 epsilon=0.000001 threads=2
check=false algorithm=./omp1_33 nitems=100000000 counters=1000 threshold=200000 memory=1350840 outputsize=382 time=345.420000 walltime=280.046000 epsilon=0.000001 threads=2
check=false algorithm=./omp2 nitems=100000000 counters=1000 threshold=200000 memory=1444952 outputsize=490 time=415.780000 walltime=287.394000 epsilon=0.000451 threads=2
check=false algorithm=./omp1 nitems=100000000 counters=1000 threshold=200000 memory=183240 outputsize=155 time=54.250000 walltime=40.216000 epsilon=0.000001 threads=3
check=false algorithm=./omp1_33 nitems=100000000 counters=1000 threshold=200000 memory=1350840 outputsize=382 time=345.700000 walltime=217.533000 epsilon=0.000001 threads=3
check=false algorithm=./omp2 nitems=100000000 counters=1000 threshold=200000 memory=1444952 outputsize=490 time=416.250000 walltime=206.492000 epsilon=0.000451 threads=3
check=false algorithm=./omp1 nitems=100000000 counters=1000 threshold=200000 memory=183240 outputsize=155 time=54.540000 walltime=40.578000 epsilon=0.000001 threads=4
check=false algorithm=./omp1_33 nitems=100000000 counters=1000 threshold=200000 memory=1350840 outputsize=382 time=345.240000 walltime=181.562000 epsilon=0.000001 threads=4
check=false algorithm=./omp2 nitems=100000000 counters=1000 threshold=200000 memory=1444952 outputsize=490 time=416.300000 walltime=163.351000 epsilon=0.000451 threads=4
check=false algorithm=./omp1 nitems=100000000 counters=1000 threshold=2000000 memory=183240 outputsize=19 time=53.930000 walltime=53.954000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=100000000 counters=1000 threshold=2000000 memory=1350840 outputsize=39 time=346.940000 walltime=347.602000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=100000000 counters=1000 threshold=2000000 memory=1444952 outputsize=40 time=417.940000 walltime=418.774000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=100000000 counters=1000 threshold=2000000 memory=183240 outputsize=19 time=54.450000 walltime=46.649000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=100000000 counters=1000 threshold=2000000 memory=1350840 outputsize=39 time=344.520000 walltime=279.163000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=100000000 counters=1000 threshold=2000000 memory=1444952 outputsize=40 time=417.790000 walltime=289.968000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=100000000 counters=1000 threshold=2000000 memory=183240 outputsize=19 time=54.490000 walltime=40.578000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=100000000 counters=1000 threshold=2000000 memory=1350840 outputsize=39 time=346.310000 walltime=218.102000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=100000000 counters=1000 threshold=2000000 memory=1444952 outputsize=40 time=416.490000 walltime=206.266000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=100000000 counters=1000 threshold=2000000 memory=183240 outputsize=19 time=54.400000 walltime=40.258000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=100000000 counters=1000 threshold=2000000 memory=1350840 outputsize=39 time=345.930000 walltime=182.275000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=100000000 counters=1000 threshold=2000000 memory=1444952 outputsize=40 time=415.950000 walltime=162.522000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=100000000 counters=1000 threshold=500000 memory=183240 outputsize=65 time=53.800000 walltime=53.852000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=100000000 counters=1000 threshold=500000 memory=1350840 outputsize=163 time=345.420000 walltime=345.836000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=100000000 counters=1000 threshold=500000 memory=1444952 outputsize=199 time=417.630000 walltime=418.367000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=100000000 counters=1000 threshold=500000 memory=183240 outputsize=65 time=54.530000 walltime=46.757000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=100000000 counters=1000 threshold=500000 memory=1350840 outputsize=163 time=346.080000 walltime=281.176000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=100000000 counters=1000 threshold=500000 memory=1444952 outputsize=199 time=416.350000 walltime=288.124000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=100000000 counters=1000 threshold=500000 memory=183240 outputsize=65 time=54.350000 walltime=40.384000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=100000000 counters=1000 threshold=500000 memory=1350840 outputsize=163 time=344.900000 walltime=215.808000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=100000000 counters=1000 threshold=500000 memory=1444952 outputsize=199 time=416.220000 walltime=206.181000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=100000000 counters=1000 threshold=500000 memory=183240 outputsize=65 time=54.560000 walltime=40.574000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=100000000 counters=1000 threshold=500000 memory=1350840 outputsize=163 time=345.620000 walltime=180.991000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=100000000 counters=1000 threshold=500000 memory=1444952 outputsize=199 time=417.500000 walltime=163.980000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=250000000 counters=10 threshold=50000000 memory=3480 outputsize=1 time=131.350000 walltime=131.481000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=250000000 counters=10 threshold=50000000 memory=25208 outputsize=4 time=915.000000 walltime=915.542000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=250000000 counters=10 threshold=50000000 memory=22360 outputsize=1 time=837.910000 walltime=839.306000 epsilon=0.000000 threads=1
check=false algorithm=./omp1 nitems=250000000 counters=10 threshold=50000000 memory=3480 outputsize=1 time=131.920000 walltime=104.033000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=250000000 counters=10 threshold=50000000 memory=25208 outputsize=4 time=916.670000 walltime=598.104000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=250000000 counters=10 threshold=50000000 memory=22360 outputsize=1 time=836.100000 walltime=472.813000 epsilon=0.000000 threads=2
check=false algorithm=./omp1 nitems=250000000 counters=10 threshold=50000000 memory=3480 outputsize=1 time=131.340000 walltime=70.650000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=250000000 counters=10 threshold=50000000 memory=25208 outputsize=4 time=914.730000 walltime=389.976000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=250000000 counters=10 threshold=50000000 memory=22360 outputsize=1 time=836.000000 walltime=330.766000 epsilon=0.000000 threads=3
check=false algorithm=./omp1 nitems=250000000 counters=10 threshold=50000000 memory=3480 outputsize=1 time=131.120000 walltime=70.838000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=250000000 counters=10 threshold=50000000 memory=25208 outputsize=4 time=914.000000 walltime=320.525000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=250000000 counters=10 threshold=50000000 memory=22360 outputsize=1 time=836.360000 walltime=256.522000 epsilon=0.000000 threads=4
check=false algorithm=./omp1 nitems=250000000 counters=100 threshold=5000000 memory=23640 outputsize=19 time=151.950000 walltime=152.039000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=250000000 counters=100 threshold=5000000 memory=160840 outputsize=40 time=1014.460000 walltime=1014.910000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=250000000 counters=100 threshold=5000000 memory=160600 outputsize=42 time=1093.580000 walltime=1094.171000 epsilon=0.005641 threads=1
check=false algorithm=./omp1 nitems=250000000 counters=100 threshold=5000000 memory=23640 outputsize=19 time=152.250000 walltime=132.904000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=250000000 counters=100 threshold=5000000 memory=160840 outputsize=40 time=1015.560000 walltime=782.301000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=250000000 counters=100 threshold=5000000 memory=160600 outputsize=42 time=1093.580000 walltime=681.007000 epsilon=0.005641 threads=2
check=false algorithm=./omp1 nitems=250000000 counters=100 threshold=5000000 memory=23640 outputsize=19 time=152.070000 walltime=97.403000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=250000000 counters=100 threshold=5000000 memory=160840 outputsize=40 time=1015.050000 walltime=532.362000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=250000000 counters=100 threshold=5000000 memory=160600 outputsize=42 time=1097.230000 walltime=476.469000 epsilon=0.005641 threads=3
check=false algorithm=./omp1 nitems=250000000 counters=100 threshold=5000000 memory=23640 outputsize=19 time=151.990000 walltime=97.251000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=250000000 counters=100 threshold=5000000 memory=160840 outputsize=40 time=1015.210000 walltime=439.489000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=250000000 counters=100 threshold=5000000 memory=160600 outputsize=42 time=1095.030000 walltime=372.579000 epsilon=0.005641 threads=4
check=false algorithm=./omp1 nitems=250000000 counters=1000 threshold=500000 memory=183240 outputsize=156 time=134.520000 walltime=134.638000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=250000000 counters=1000 threshold=500000 memory=1350840 outputsize=383 time=860.160000 walltime=860.908000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=250000000 counters=1000 threshold=500000 memory=1444952 outputsize=475 time=1024.920000 walltime=1025.546000 epsilon=0.000560 threads=1
check=false algorithm=./omp1 nitems=250000000 counters=1000 threshold=500000 memory=183240 outputsize=156 time=135.280000 walltime=115.633000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=250000000 counters=1000 threshold=500000 memory=1350840 outputsize=383 time=860.690000 walltime=697.161000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=250000000 counters=1000 threshold=500000 memory=1444952 outputsize=475 time=1027.120000 walltime=712.890000 epsilon=0.000560 threads=2
check=false algorithm=./omp1 nitems=250000000 counters=1000 threshold=500000 memory=183240 outputsize=156 time=135.580000 walltime=100.430000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=250000000 counters=1000 threshold=500000 memory=1350840 outputsize=383 time=861.290000 walltime=540.365000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=250000000 counters=1000 threshold=500000 memory=1444952 outputsize=475 time=1028.580000 walltime=506.476000 epsilon=0.000560 threads=3
check=false algorithm=./omp1 nitems=250000000 counters=1000 threshold=500000 memory=183240 outputsize=156 time=135.620000 walltime=100.451000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=250000000 counters=1000 threshold=500000 memory=1350840 outputsize=383 time=862.860000 walltime=455.040000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=250000000 counters=1000 threshold=500000 memory=1444952 outputsize=475 time=1029.290000 walltime=403.791000 epsilon=0.000560 threads=4
check=false algorithm=./omp1 nitems=250000000 counters=1000 threshold=5000000 memory=183240 outputsize=19 time=135.150000 walltime=135.232000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=250000000 counters=1000 threshold=5000000 memory=1350840 outputsize=40 time=863.280000 walltime=864.306000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=250000000 counters=1000 threshold=5000000 memory=1444952 outputsize=41 time=1027.120000 walltime=1028.223000 epsilon=0.000560 threads=1
check=false algorithm=./omp1 nitems=250000000 counters=1000 threshold=5000000 memory=183240 outputsize=19 time=136.890000 walltime=117.249000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=250000000 counters=1000 threshold=5000000 memory=1350840 outputsize=40 time=864.740000 walltime=701.976000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=250000000 counters=1000 threshold=5000000 memory=1444952 outputsize=41 time=1027.780000 walltime=709.265000 epsilon=0.000560 threads=2
check=false algorithm=./omp1 nitems=250000000 counters=1000 threshold=5000000 memory=183240 outputsize=19 time=135.600000 walltime=100.590000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=250000000 counters=1000 threshold=5000000 memory=1350840 outputsize=40 time=861.020000 walltime=540.185000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=250000000 counters=1000 threshold=5000000 memory=1444952 outputsize=41 time=1027.970000 walltime=506.605000 epsilon=0.000560 threads=3
check=false algorithm=./omp1 nitems=250000000 counters=1000 threshold=5000000 memory=183240 outputsize=19 time=136.210000 walltime=101.153000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=250000000 counters=1000 threshold=5000000 memory=1350840 outputsize=40 time=860.230000 walltime=452.940000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=250000000 counters=1000 threshold=5000000 memory=1444952 outputsize=41 time=1030.740000 walltime=402.863000 epsilon=0.000560 threads=4
check=false algorithm=./omp1 nitems=250000000 counters=1000 threshold=1250000 memory=183240 outputsize=61 time=134.760000 walltime=134.888000 epsilon=0.000000 threads=1
check=false algorithm=./omp1_33 nitems=250000000 counters=1000 threshold=1250000 memory=1350840 outputsize=162 time=860.790000 walltime=861.782000 epsilon=0.000000 threads=1
check=false algorithm=./omp2 nitems=250000000 counters=1000 threshold=1250000 memory=1444952 outputsize=195 time=1030.400000 walltime=1031.989000 epsilon=0.000560 threads=1
check=false algorithm=./omp1 nitems=250000000 counters=1000 threshold=1250000 memory=183240 outputsize=61 time=135.700000 walltime=115.987000 epsilon=0.000000 threads=2
check=false algorithm=./omp1_33 nitems=250000000 counters=1000 threshold=1250000 memory=1350840 outputsize=162 time=861.860000 walltime=698.898000 epsilon=0.000000 threads=2
check=false algorithm=./omp2 nitems=250000000 counters=1000 threshold=1250000 memory=1444952 outputsize=195 time=1025.670000 walltime=708.771000 epsilon=0.000560 threads=2
check=false algorithm=./omp1 nitems=250000000 counters=1000 threshold=1250000 memory=183240 outputsize=61 time=135.310000 walltime=100.271000 epsilon=0.000000 threads=3
check=false algorithm=./omp1_33 nitems=250000000 counters=1000 threshold=1250000 memory=1350840 outputsize=162 time=862.470000 walltime=539.972000 epsilon=0.000000 threads=3
check=false algorithm=./omp2 nitems=250000000 counters=1000 threshold=1250000 memory=1444952 outputsize=195 time=1027.840000 walltime=507.671000 epsilon=0.000560 threads=3
check=false algorithm=./omp1 nitems=250000000 counters=1000 threshold=1250000 memory=183240 outputsize=61 time=135.940000 walltime=100.577000 epsilon=0.000000 threads=4
check=false algorithm=./omp1_33 nitems=250000000 counters=1000 threshold=1250000 memory=1350840 outputsize=162 time=862.710000 walltime=454.381000 epsilon=0.000000 threads=4
check=false algorithm=./omp2 nitems=250000000 counters=1000 threshold=1250000 memory=1444952 outputsize=195 time=1030.070000 walltime=403.506000 epsilon=0.000560 threads=4
check=false algorithm=./hhh1 nitems=1000 counters=10 threshold=200 memory=3480 outputsize=1 time=0.000000 walltime=0.001000 epsilon=0.000000
check=false algorithm=./ancestry1 nitems=1000 counters=10 threshold=200 memory=1112 outputsize=1 time=0.000000 walltime=0.001000 epsilon=0.000000
check=false algorithm=./full1 nitems=1000 counters=10 threshold=200 memory=2680 outputsize=1 time=0.000000 walltime=0.000000 epsilon=0.000000
check=false algorithm=./hhh1_33 nitems=1000 counters=10 threshold=200 memory=25208 outputsize=4 time=0.000000 walltime=0.004000 epsilon=0.000000
check=false algorithm=./ancestry1_33 nitems=1000 counters=10 threshold=200 memory=3928 outputsize=6 time=0.010000 walltime=0.011000 epsilon=0.095000
check=false algorithm=./full1_33 nitems=1000 counters=10 threshold=200 memory=18840 outputsize=4 time=0.000000 walltime=0.005000 epsilon=0.000000
check=false algorithm=./hhh2 nitems=1000 counters=10 threshold=200 memory=22360 outputsize=1 time=0.000000 walltime=0.004000 epsilon=0.000000
check=false algorithm=./ancestry2 nitems=1000 counters=10 threshold=200 memory=13080 outputsize=1 time=0.010000 walltime=0.016000 epsilon=0.000000
check=false algorithm=./full2 nitems=1000 counters=10 threshold=200 memory=17920 outputsize=1 time=0.010000 walltime=0.010000 epsilon=0.000000
check=false algorithm=./hhh1 nitems=1000 counters=100 threshold=20 memory=23640 outputsize=20 time=0.000000 walltime=0.001000 epsilon=0.002000
check=false algorithm=./ancestry1 nitems=1000 counters=100 threshold=20 memory=9640 outputsize=20 time=0.000000 walltime=0.001000 epsilon=0.007000
check=false algorithm=./full1 nitems=1000 counters=100 threshold=20 memory=19752 outputsize=20 time=0.000000 walltime=0.000000 epsilon=0.001000
check=false algorithm=./hhh1_33 nitems=1000 counters=100 threshold=20 memory=160840 outputsize=40 time=0.000000 walltime=0.006000 epsilon=0.002000
check=false algorithm=./ancestry1_33 nitems=1000 counters=100 threshold=20 memory=35208 outputsize=58 time=0.000000 walltime=0.007000 epsilon=0.009000
check=false algorithm=./full1_33 nitems=1000 counters=100 threshold=20 memory=135528 outputsize=40 time=0.000000 walltime=0.004000 epsilon=0.001000
check=false algorithm=./hhh2 nitems=1000 counters=100 threshold=20 memory=160600 outputsize=43 time=0.000000 walltime=0.006000 epsilon=0.003000
check=false algorithm=./ancestry2 nitems=1000 counters=100 threshold=20 memory=100080 outputsize=47 time=0.010000 walltime=0.011000 epsilon=0.008000
check=false algorithm=./full2 nitems=1000 counters=100 threshold=20 memory=154560 outputsize=43 time=0.010000 walltime=0.010000 epsilon=0.004000
check=false algorithm=./hhh1 nitems=1000 counters=1000 threshold=2 memory=183240 outputsize=286 time=0.000000 walltime=0.001000 epsilon=0.000000
check=false algorithm=./ancestry1 nitems=1000 counters=1000 threshold=2 memory=62216 outputsize=286 time=0.000000 walltime=0.000000 epsilon=0.000000
check=false algorithm=./full1 nitems=1000 counters=1000 threshold=2 memory=95560 outputsize=286 time=0.000000 walltime=0.001000 epsilon=0.000000
check=false algorithm=./hhh1_33 nitems=1000 counters=1000 threshold=2 memory=1350840 outputsize=413 time=0.000000 walltime=0.006000 epsilon=0.000000
check=false algorithm=./ancestry1_33 nitems=1000 counters=1000 threshold=2 memory=286440 outputsize=413 time=0.000000 walltime=0.001000 epsilon=0.000000
check=false algorithm=./full1_33 nitems=1000 counters=1000 threshold=2 memory=636136 outputsize=413 time=0.000000 walltime=0.003000 epsilon=0.000000
check=false algorithm=./hhh2 nitems=1000 counters=1000 threshold=2 memory=1444952 outputsize=546 time=0.000000 walltime=0.007000 epsilon=0.000000
check=false algorithm=./ancestry2 nitems=1000 counters=1000 threshold=2 memory=427400 outputsize=544 time=0.000000 walltime=0.001000 epsilon=0.000000
check=false algorithm=./full2 nitems=1000 counters=1000 threshold=2 memory=711680 outputsize=544 time=0.000000 walltime=0.006000 epsilon=0.000000
check=false algorithm=./hhh1 nitems=1000 counters=1000 threshold=20 memory=183240 outputsize=20 time=0.000000 walltime=0.001000 epsilon=0.000000
check=false algorithm=./ancestry1 nitems=1000 counters=1000 threshold=20 memory=62216 outputsize=20 time=0.000000 walltime=0.000000 epsilon=0.000000
check=false algorithm=./full1 nitems=1000 counters=1000 threshold=20 memory=95560 outputsize=20 time=0.000000 walltime=0.000000 epsilon=0.000000
check=false algorithm=./hhh1_33 nitems=1000 counters=1000 threshold=20 memory=1350840 outputsize=40 time=0.000000 walltime=0.007000 epsilon=0.000000
check=false algorithm=./ancestry1_33 nitems=1000 counters=1000 threshold=20 memory=286440 outputsize=40 time=0.000000 walltime=0.001000 epsilon=0.000000
check=false algorithm=./full1_33 nitems=1000 counters=1000 threshold=20 memory=636136 outputsize=40 time=0.000000 walltime=0.003000 epsilon=0.000000
check=false algorithm=./hhh2 nitems=1000 counters=1000 threshold=20 memory=1444952 outputsize=41 time=0.000000 walltime=0.007000 epsilon=0.000000
check=false algorithm=./ancestry2 nitems=1000 counters=1000 threshold=20 memory=427400 outputsize=41 time=0.000000 walltime=0.002000 epsilon=0.000000
check=false algorithm=./full2 nitems=1000 counters=1000 threshold=20 memory=711680 outputsize=41 time=0.000000 walltime=0.005000 epsilon=0.000000
check=false algorithm=./hhh1 nitems=1000 counters=1000 threshold=5 memory=183240 outputsize=77 time=0.000000 walltime=0.001000 epsilon=0.000000
check=false algorithm=./ancestry1 nitems=1000 counters=1000 threshold=5 memory=62216 outputsize=77 time=0.000000 walltime=0.001000 epsilon=0.000000
check=false algorithm=./full1 nitems=1000 counters=1000 threshold=5 memory=95560 outputsize=77 time=0.000000 walltime=0.000000 epsilon=0.000000
check=false algorithm=./hhh1_33 nitems=1000 counters=1000 threshold=5 memory=1350840 outputsize=163 time=0.000000 walltime=0.007000 epsilon=0.000000
check=false algorithm=./ancestry1_33 nitems=1000 counters=1000 threshold=5 memory=286440 outputsize=163 time=0.000000 walltime=0.000000 epsilon=0.000000
check=false algorithm=./full1_33 nitems=1000 counters=1000 threshold=5 memory=636136 outputsize=163 time=0.000000 walltime=0.003000 epsilon=0.000000
check=false algorithm=./hhh2 nitems=1000 counters=1000 threshold=5 memory=1444952 outputsize=227 time=0.000000 walltime=0.008000 epsilon=0.000000
check=false algorithm=./ancestry2 nitems=1000 counters=1000 threshold=5 memory=427400 outputsize=225 time=0.000000 walltime=0.002000 epsilon=0.000000
check=false algorithm=./full2 nitems=1000 counters=1000 threshold=5 memory=711680 outputsize=225 time=0.000000 walltime=0.006000 epsilon=0.000000
check=false algorithm=./hhh1 nitems=3000 counters=10 threshold=600 memory=3480 outputsize=1 time=0.000000 walltime=0.001000 epsilon=0.000000
check=false algorithm=./ancestry1 nitems=3000 counters=10 threshold=600 memory=1176 outputsize=1 time=0.000000 walltime=0.002000 epsilon=0.000000
check=false algorithm=./full1 nitems=3000 counters=10 threshold=600 memory=2680 outputsize=1 time=0.000000 walltime=0.003000 epsilon=0.000000
check=false algorithm=./hhh1_33 nitems=3000 counters=10 threshold=600 memory=25208 outputsize=3 time=0.010000 walltime=0.011000 epsilon=0.000000
check=false algorithm=./ancestry1_33 nitems=3000 counters=10 threshold=600 memory=3960 outputsize=6 time=0.030000 walltime=0.033000 epsilon=0.098667
check=false algorithm=./full1_33 nitems=3000 counters=10 threshold=600 memory=18840 outputsize=3 time=0.010000 walltime=0.015000 epsilon=0.000000
check=false algorithm=./hhh2 nitems=3000 counters=10 threshold=600 memory=22360 outputsize=1 time=0.010000 walltime=0.010000 epsilon=0.000000
check=false algorithm=./ancestry2 nitems=3000 counters=10 threshold=600 memory=13280 outputsize=1 time=0.040000 walltime=0.044000 epsilon=0.000000
check=false algorithm=./full2 nitems=3000 counters=10 threshold=600 memory=17920 outputsize=1 time=0.030000 walltime=0.032000 epsilon=0.000000
check=false algorithm=./hhh1 nitems=3000 counters=100 threshold=60 memory=23640 outputsize=19 time=0.000000 walltime=0.001000 epsilon=0.000000
check=false algorithm=./ancestry1 nitems=3000 counters=100 threshold=60 memory=9960 outputsize=22 time=0.000000 walltime=0.001000 epsilon=0.009667
check=false algorithm=./full1 nitems=3000 counters=100 threshold=60 memory=19752 outputsize=19 time=0.000000 walltime=0.001000 epsilon=0.000000
check=false algorithm=./hhh1_33 nitems=3000 counters=100 threshold=60 memory=160840 outputsize=41 time=0.010000 walltime=0.016000 epsilon=0.000333
check=false algorithm=./ancestry1_33 nitems=3000 counters=100 threshold=60 memory=36168 outputsize=58 time=0.020000 walltime=0.020000 epsilon=0.009667
check=false algorithm=./full1_33 nitems=3000 counters=100 threshold=60 memory=135528 outputsize=41 time=0.010000 walltime=0.011000 epsilon=0.000333
check=false algorithm=./hhh2 nitems=3000 counters=100 threshold=60 memory=160600 outputsize=41 time=0.020000 walltime=0.017000 epsilon=0.000667
check=false algorithm=./ancestry2 nitems=3000 counters=100 threshold=60 memory=114840 outputsize=44 time=0.030000 walltime=0.036000 epsilon=0.009333
check=false algorithm=./full2 nitems=3000 counters=100 threshold=60 memory=154560 outputsize=41 time=0.030000 walltime=0.029000 epsilon=0.001333
check=false algorithm=./hhh1 nitems=3000 counters=1000 threshold=6 memory=183240 outputsize=201 time=0.000000 walltime=0.002000 epsilon=0.000667
check=false algorithm=./ancestry1 nitems=3000 counters=1000 threshold=6 memory=79592 outputsize=235 time=0.000000 walltime=0.001000 epsilon=0.000667
check=false algorithm=./full1 nitems=3000 counters=1000 threshold=6 memory=133544 outputsize=197 time=0.000000 walltime=0.002000 epsilon=0.000333
check=false algorithm=./hhh1_33 nitems=3000 counters=1000 threshold=6 memory=1350840 outputsize=406 time=0.020000 walltime=0.018000 epsilon=0.000667
check=false algorithm=./ancestry1_33 nitems=3000 counters=1000 threshold=6 memory=309736 outputsize=538 time=0.010000 walltime=0.015000 epsilon=0.000667
check=false algorithm=./full1_33 nitems=3000 counters=1000 threshold=6 memory=877800 outputsize=404 time=0.010000 walltime=0.010000 epsilon=0.000333
check=false algorithm=./hhh2 nitems=3000 counters=1000 threshold=6 memory=1444952 outputsize=563 time=0.020000 walltime=0.022000 epsilon=0.000667
check=false algorithm=./ancestry2 nitems=3000 counters=1000 threshold=6 memory=470720 outputsize=551 time=0.000000 walltime=0.003000 epsilon=0.000000
check=false algorithm=./full2 nitems=3000 counters=1000 threshold=6 memory=1103520 outputsize=562 time=0.020000 walltime=0.026000 epsilon=0.000333
check=false algorithm=./hhh1 nitems=3000 counters=1000 threshold=60 memory=183240 outputsize=19 time=0.000000 walltime=0.002000 epsilon=0.000000
check=false algorithm=./ancestry1 nitems=3000 counters=1000 threshold=60 memory=79592 outputsize=19 time=0.000000 walltime=0.001000 epsilon=0.000000
check=false algorithm=./full1 nitems=3000 counters=1000 threshold=60 memory=133544 outputsize=19 time=0.000000 walltime=0.002000 epsilon=0.000000
check=false algorithm=./hhh1_33 nitems=3000 counters=1000 threshold=60 memory=1350840 outputsize=41 time=0.020000 walltime=0.018000 epsilon=0.000000
check=false algorithm=./ancestry1_33 nitems=3000 counters=1000 threshold=60 memory=309736 outputsize=41 time=0.010000 walltime=0.016000 epsilon=0.000667
check=false algorithm=./full1_33 nitems=3000 counters=1000 threshold=60 memory=877800 outputsize=41 time=0.010000 walltime=0.010000 epsilon=0.000000
check=false algorithm=./hhh2 nitems=3000 counters=1000 threshold=60 memory=1444952 outputsize=41 time=0.020000 walltime=0.021000 epsilon=0.000000
check=false algorithm=./ancestry2 nitems=3000 counters=1000 threshold=60 memory=470720 outputsize=41 time=0.000000 walltime=0.003000 epsilon=0.000000
check=false algorithm=./full2 nitems=3000 counters=1000 threshold=60 memory=1103520 outputsize=41 time=0.020000 walltime=0.027000 epsilon=0.000000
check=false algorithm=./hhh1 nitems=3000 counters=1000 threshold=15 memory=183240 outputsize=74 time=0.000000 walltime=0.002000 epsilon=0.000000
check=false algorithm=./ancestry1 nitems=3000 counters=1000 threshold=15 memory=79592 outputsize=75 time=0.000000 walltime=0.001000 epsilon=0.000667
check=false algorithm=./full1 nitems=3000 counters=1000 threshold=15 memory=133544 outputsize=74 time=0.000000 walltime=0.001000 epsilon=0.000000
check=false algorithm=./hhh1_33 nitems=3000 counters=1000 threshold=15 memory=1350840 outputsize=161 time=0.020000 walltime=0.019000 epsilon=0.000000
check=false algorithm=./ancestry1_33 nitems=3000 counters=1000 threshold=15 memory=309736 outputsize=182 time=0.010000 walltime=0.016000 epsilon=0.000667
check=false algorithm=./full1_33 nitems=3000 counters=1000 threshold=15 memory=877800 outputsize=161 time=0.000000 walltime=0.010000 epsilon=0.000000
check=false algorithm=./hhh2 nitems=3000 counters=1000 threshold=15 memory=1444952 outputsize=208 time=0.020000 walltime=0.022000 epsilon=0.000000
check=false algorithm=./ancestry2 nitems=3000 counters=1000 threshold=15 memory=470720 outputsize=205 time=0.000000 walltime=0.003000 epsilon=0.000000
check=false algorithm=./full2 nitems=3000 counters=1000 threshold=15 memory=1103520 outputsize=207 time=0.020000 walltime=0.027000 epsilon=0.000000
check=false algorithm=./hhh1 nitems=10000 counters=10 threshold=2000 memory=3480 outputsize=1 time=0.010000 walltime=0.006000 epsilon=0.000000
check=false algorithm=./ancestry1 nitems=10000 counters=10 threshold=2000 memory=1176 outputsize=1 time=0.010000 walltime=0.007000 epsilon=0.000000
check=false algorithm=./full1 nitems=10000 counters=10 threshold=2000 memory=2680 outputsize=1 time=0.010000 walltime=0.008000 epsilon=0.000000
check=false algorithm=./hhh1_33 nitems=10000 counters=10 threshold=2000 memory=25208 outputsize=4 time=0.040000 walltime=0.036000 epsilon=0.000000
check=false algorithm=./ancestry1_33 nitems=10000 counters=10 threshold=2000 memory=3960 outputsize=6 time=0.110000 walltime=0.111000 epsilon=0.090000
check=false algorithm=./full1_33 nitems=10000 counters=10 threshold=2000 memory=18840 outputsize=4 time=0.050000 walltime=0.049000 epsilon=0.000000
check=false algorithm=./hhh2 nitems=10000 counters=10 threshold=2000 memory=22360 outputsize=1 time=0.040000 walltime=0.036000 epsilon=0.000000
check=false algorithm=./ancestry2 nitems=10000 counters=10 threshold=2000 memory=13280 outputsize=1 time=0.140000 walltime=0.148000 epsilon=0.000000
check=false algorithm=./full2 nitems=10000 counters=10 threshold=2000 memory=17920 outputsize=1 time=0.100000 walltime=0.103000 epsilon=0.000000
check=false algorithm=./hhh1 nitems=10000 counters=100 threshold=200 memory=23640 outputsize=20 time=0.010000 walltime=0.006000 epsilon=0.000000
check=false algorithm=./ancestry1 nitems=10000 counters=100 threshold=200 memory=9960 outputsize=22 time=0.010000 walltime=0.005000 epsilon=0.009900
check=false algorithm=./full1 nitems=10000 counters=100 threshold=200 memory=19752 outputsize=20 time=0.010000 walltime=0.005000 epsilon=0.000000
check=false algorithm=./hhh1_33 nitems=10000 counters=100 threshold=200 memory=160840 outputsize=40 time=0.050000 walltime=0.052000 epsilon=0.000100
check=false algorithm=./ancestry1_33 nitems=10000 counters=100 threshold=200 memory=36168 outputsize=56 time=0.060000 walltime=0.064000 epsilon=0.009900
check=false algorithm=./full1_33 nitems=10000 counters=100 threshold=200 memory=135528 outputsize=40 time=0.040000 walltime=0.040000 epsilon=0.000100
check=false algorithm=./hhh2 nitems=10000 counters=100 threshold=200 memory=160600 outputsize=41 time=0.050000 walltime=0.056000 epsilon=0.000200
check=false algorithm=./ancestry2 nitems=10000 counters=100 threshold=200 memory=120560 outputsize=42 time=0.120000 walltime=0.120000 epsilon=0.009800
check=false algorithm=./full2 nitems=10000 counters=100 threshold=200 memory=154560 outputsize=41 time=0.090000 walltime=0.099000 epsilon=0.000400
check=false algorithm=./hhh1 nitems=10000 counters=1000 threshold=20 memory=183240 outputsize=172 time=0.010000 walltime=0.007000 epsilon=0.000700
check=false algorithm=./ancestry1 nitems=10000 counters=1000 threshold=20 memory=85064 outputsize=200 time=0.000000 walltime=0.004000 epsilon=0.000900
check=false algorithm=./full1 nitems=10000 counters=1000 threshold=20 memory=133544 outputsize=173 time=0.000000 walltime=0.005000 epsilon=0.000800
check=false algorithm=./hhh1_33 nitems=10000 counters=1000 threshold=20 memory=1350840 outputsize=395 time=0.060000 walltime=0.062000 epsilon=0.000700
check=false algorithm=./ancestry1_33 nitems=10000 counters=1000 threshold=20 memory=338632 outputsize=566 time=0.040000 walltime=0.043000 epsilon=0.000900
check=false algorithm=./full1_33 nitems=10000 counters=1000 threshold=20 memory=877800 outputsize=399 time=0.030000 walltime=0.034000 epsilon=0.000600
check=false algorithm=./hhh2 nitems=10000 counters=1000 threshold=20 memory=1444952 outputsize=527 time=0.070000 walltime=0.075000 epsilon=0.000800
check=false algorithm=./ancestry2 nitems=10000 counters=1000 threshold=20 memory=764320 outputsize=623 time=0.070000 walltime=0.072000 epsilon=0.000800
check=false algorithm=./full2 nitems=10000 counters=1000 threshold=20 memory=1103520 outputsize=528 time=0.090000 walltime=0.095000 epsilon=0.000800
check=false algorithm=./hhh1 nitems=10000 counters=1000 threshold=200 memory=183240 outputsize=20 time=0.010000 walltime=0.006000 epsilon=0.000000
check=false algorithm=./ancestry1 nitems=10000 counters=1000 threshold=200 memory=85064 outputsize=20 time=0.000000 walltime=0.003000 epsilon=0.000000
check=false algorithm=./full1 nitems=10000 counters=1000 threshold=200 memory=133544 outputsize=20 time=0.000000 walltime=0.005000 epsilon=0.000000
check=false algorithm=./hhh1_33 nitems=10000 counters=1000 threshold=200 memory=1350840 outputsize=40 time=0.060000 walltime=0.061000 epsilon=0.000000
check=false algorithm=./ancestry1_33 nitems=10000 counters=1000 threshold=200 memory=338632 outputsize=41 time=0.040000 walltime=0.043000 epsilon=0.000900
check=false algorithm=./full1_33 nitems=10000 counters=1000 threshold=200 memory=877800 outputsize=40 time=0.030000 walltime=0.033000 epsilon=0.000000
check=false algorithm=./hhh2 nitems=10000 counters=1000 threshold=200 memory=1444952 outputsize=41 time=0.070000 walltime=0.074000 epsilon=0.000000
check=false algorithm=./ancestry2 nitems=10000 counters=1000 threshold=200 memory=764320 outputsize=41 time=0.070000 walltime=0.073000 epsilon=0.000800
check=false algorithm=./full2 nitems=10000 counters=1000 threshold=200 memory=1103520 outputsize=41 time=0.090000 walltime=0.096000 epsilon=0.000000
check=false algorithm=./hhh1 nitems=10000 counters=1000 threshold=50 memory=183240 outputsize=65 time=0.010000 walltime=0.007000 epsilon=0.000000
check=false algorithm=./ancestry1 nitems=10000 counters=1000 threshold=50 memory=85064 outputsize=66 time=0.000000 walltime=0.004000 epsilon=0.000900
check=false algorithm=./full1 nitems=10000 counters=1000 threshold=50 memory=133544 outputsize=65 time=0.000000 walltime=0.005000 epsilon=0.000000
check=false algorithm=./hhh1_33 nitems=10000 counters=1000 threshold=50 memory=1350840 outputsize=161 time=0.060000 walltime=0.060000 epsilon=0.000000
check=false algorithm=./ancestry1_33 nitems=10000 counters=1000 threshold=50 memory=338632 outputsize=183 time=0.040000 walltime=0.043000 epsilon=0.000900
check=false algorithm=./full1_33 nitems=10000 counters=1000 threshold=50 memory=877800 outputsize=161 time=0.030000 walltime=0.033000 epsilon=0.000000
check=false algorithm=./hhh2 nitems=10000 counters=1000 threshold=50 memory=1444952 outputsize=205 time=0.070000 walltime=0.074000 epsilon=0.000500
check=false algorithm=./ancestry2 nitems=10000 counters=1000 threshold=50 memory=764320 outputsize=210 time=0.070000 walltime=0.071000 epsilon=0.000800
check=false algorithm=./full2 nitems=10000 counters=1000 threshold=50 memory=1103520 outputsize=206 time=0.090000 walltime=0.095000 epsilon=0.000500
check=false algorithm=./hhh1 nitems=30000 counters=10 threshold=6000 memory=3480 outputsize=1 time=0.020000 walltime=0.017000 epsilon=0.000000
check=false algorithm=./ancestry1 nitems=30000 counters=10 threshold=6000 memory=1240 outputsize=1 time=0.020000 walltime=0.021000 epsilon=0.000000
check=false algorithm=./full1 nitems=30000 counters=10 threshold=6000 memory=2680 outputsize=1 time=0.020000 walltime=0.023000 epsilon=0.000000
check=false algorithm=./hhh1_33 nitems=30000 counters=10 threshold=6000 memory=25208 outputsize=4 time=0.100000 walltime=0.107000 epsilon=0.000000
check=false algorithm=./ancestry1_33 nitems=30000 counters=10 threshold=6000 memory=3960 outputsize=5 time=0.340000 walltime=0.337000 epsilon=0.095500
check=false algorithm=./full1_33 nitems=30000 counters=10 threshold=6000 memory=18840 outputsize=4 time=0.150000 walltime=0.150000 epsilon=0.000000
check=false algorithm=./hhh2 nitems=30000 counters=10 threshold=6000 memory=22360 outputsize=1 time=0.100000 walltime=0.100000 epsilon=0.000000
check=false algorithm=./ancestry2 nitems=30000 counters=10 threshold=6000 memory=13280 outputsize=1 time=0.430000 walltime=0.435000 epsilon=0.000000
check=false algorithm=./full2 nitems=30000 counters=10 threshold=6000 memory=17920 outputsize=1 time=0.300000 walltime=0.305000 epsilon=0.000000
check=false algorithm=./hhh1 nitems=30000 counters=100 threshold=600 memory=23640 outputsize=18 time=0.020000 walltime=0.019000 epsilon=0.000000
check=false algorithm=./ancestry1 nitems=30000 counters=100 threshold=600 memory=10088 outputsize=21 time=0.010000 walltime=0.015000 epsilon=0.009967
check=false algorithm=./full1 nitems=30000 counters=100 threshold=600 memory=19752 outputsize=18 time=0.020000 walltime=0.017000 epsilon=0.000000
check=false algorithm=./hhh1_33 nitems=30000 counters=100 threshold=600 memory=160840 outputsize=40 time=0.160000 walltime=0.158000 epsilon=0.000033
check=false algorithm=./ancestry1_33 nitems=30000 counters=100 threshold=600 memory=36168 outputsize=55 time=0.190000 walltime=0.193000 epsilon=0.009933
check=false algorithm=./full1_33 nitems=30000 counters=100 threshold=600 memory=135528 outputsize=40 time=0.120000 walltime=0.115000 epsilon=0.000033
check=false algorithm=./hhh2 nitems=30000 counters=100 threshold=600 memory=160600 outputsize=41 time=0.170000 walltime=0.168000 epsilon=0.000067
check=false algorithm=./ancestry2 nitems=30000 counters=100 threshold=600 memory=120560 outputsize=43 time=0.360000 walltime=0.370000 epsilon=0.009933
check=false algorithm=./full2 nitems=30000 counters=100 threshold=600 memory=154560 outputsize=41 time=0.280000 walltime=0.292000 epsilon=0.000133
check=false algorithm=./hhh1 nitems=30000 counters=1000 threshold=60 memory=183240 outputsize=164 time=0.020000 walltime=0.019000 epsilon=0.000367
check=false algorithm=./ancestry1 nitems=30000 counters=1000 threshold=60 memory=85928 outputsize=181 time=0.010000 walltime=0.012000 epsilon=0.000967
check=false algorithm=./full1 nitems=30000 counters=1000 threshold=60 memory=133544 outputsize=164 time=0.010000 walltime=0.015000 epsilon=0.000567
check=false algorithm=./hhh1_33 nitems=30000 counters=1000 threshold=60 memory=1350840 outputsize=395 time=0.170000 walltime=0.176000 epsilon=0.000367
check=false algorithm=./ancestry1_33 nitems=30000 counters=1000 threshold=60 memory=342760 outputsize=542 time=0.120000 walltime=0.119000 epsilon=0.000967
check=false algorithm=./full1_33 nitems=30000 counters=1000 threshold=60 memory=877800 outputsize=395 time=0.100000 walltime=0.100000 epsilon=0.000567
check=false algorithm=./hhh2 nitems=30000 counters=1000 threshold=60 memory=1444952 outputsize=502 time=0.210000 walltime=0.217000 epsilon=0.000267
check=false algorithm=./ancestry2 nitems=30000 counters=1000 threshold=60 memory=925320 outputsize=625 time=0.230000 walltime=0.230000 epsilon=0.000933
check=false algorithm=./full2 nitems=30000 counters=1000 threshold=60 memory=1103520 outputsize=504 time=0.290000 walltime=0.289000 epsilon=0.000633
check=false algorithm=./hhh1 nitems=30000 counters=1000 threshold=600 memory=183240 outputsize=18 time=0.020000 walltime=0.020000 epsilon=0.000000
check=false algorithm=./ancestry1 nitems=30000 counters=1000 threshold=600 memory=85928 outputsize=18 time=0.010000 walltime=0.011000 epsilon=0.000000
check=false algorithm=./full1 nitems=30000 counters=1000 threshold=600 memory=133544 outputsize=18 time=0.010000 walltime=0.014000 epsilon=0.000000
check=false algorithm=./hhh1_33 nitems=30000 counters=1000 threshold=600 memory=1350840 outputsize=40 time=0.180000 walltime=0.178000 epsilon=0.000000
check=false algorithm=./ancestry1_33 nitems=30000 counters=1000 threshold=600 memory=342760 outputsize=40 time=0.120000 walltime=0.119000 epsilon=0.000967
check=false algorithm=./full1_33 nitems=30000 counters=1000 threshold=600 memory=877800 outputsize=40 time=0.100000 walltime=0.106000 epsilon=0.000000
check=false algorithm=./hhh2 nitems=30000 counters=1000 threshold=600 memory=1444952 outputsize=40 time=0.220000 walltime=0.222000 epsilon=0.000000
check=false algorithm=./ancestry2 nitems=30000 counters=1000 threshold=600 memory=925320 outputsize=40 time=0.230000 walltime=0.235000 epsilon=0.000867
check=false algorithm=./full2 nitems=30000 counters=1000 threshold=600 memory=1103520 outputsize=40 time=0.300000 walltime=0.299000 epsilon=0.000000
check=false algorithm=./hhh1 nitems=30000 counters=1000 threshold=150 memory=183240 outputsize=68 time=0.020000 walltime=0.020000 epsilon=0.000000
check=false algorithm=./ancestry1 nitems=30000 counters=1000 threshold=150 memory=85928 outputsize=70 time=0.010000 walltime=0.011000 epsilon=0.000967
check=false algorithm=./full1 nitems=30000 counters=1000 threshold=150 memory=133544 outputsize=68 time=0.020000 walltime=0.015000 epsilon=0.000000
check=false algorithm=./hhh1_33 nitems=30000 counters=1000 threshold=150 memory=1350840 outputsize=160 time=0.180000 walltime=0.177000 epsilon=0.000000
check=false algorithm=./ancestry1_33 nitems=30000 counters=1000 threshold=150 memory=342760 outputsize=188 time=0.120000 walltime=0.119000 epsilon=0.000967
check=false algorithm=./full1_33 nitems=30000 counters=1000 threshold=150 memory=877800 outputsize=160 time=0.100000 walltime=0.115000 epsilon=0.000000
check=false algorithm=./hhh2 nitems=30000 counters=1000 threshold=150 memory=1444952 outputsize=200 time=0.220000 walltime=0.220000 epsilon=0.000000
check=false algorithm=./ancestry2 nitems=30000 counters=1000 threshold=150 memory=925320 outputsize=213 time=0.240000 walltime=0.238000 epsilon=0.000933
check=false algorithm=./full2 nitems=30000 counters=1000 threshold=150 memory=1103520 outputsize=199 time=0.290000 walltime=0.298000 epsilon=0.000000
check=false algorithm=./hhh1 nitems=100000 counters=10 threshold=20000 memory=3480 outputsize=1 time=0.050000 walltime=0.054000 epsilon=0.000000
check=false algorithm=./ancestry1 nitems=100000 counters=10 threshold=20000 memory=1240 outputsize=2 time=0.070000 walltime=0.070000 epsilon=0.099990
check=false algorithm=./full1 nitems=100000 counters=10 threshold=20000 memory=2680 outputsize=1 time=0.080000 walltime=0.075000 epsilon=0.000000
check=false algorithm=./hhh1_33 nitems=100000 counters=10 threshold=20000 memory=25208 outputsize=4 time=0.350000 walltime=0.359000 epsilon=0.000000
check=false algorithm=./ancestry1_33 nitems=100000 counters=10 threshold=20000 memory=3960 outputsize=5 time=1.130000 walltime=1.129000 epsilon=0.098770
check=false algorithm=./full1_33 nitems=100000 counters=10 threshold=20000 memory=18840 outputsize=4 time=0.500000 walltime=0.503000 epsilon=0.000000
check=false algorithm=./hhh2 nitems=100000 counters=10 threshold=20000 memory=22360 outputsize=1 time=0.330000 walltime=0.336000 epsilon=0.000000
check=false algorithm=./ancestry2 nitems=100000 counters=10 threshold=20000 memory=13560 outputsize=1 time=1.450000 walltime=1.460000 epsilon=0.000000
check=false algorithm=./full2 nitems=100000 counters=10 threshold=20000 memory=17920 outputsize=1 time=1.020000 walltime=1.030000 epsilon=0.000000
check=false algorithm=./hhh1 nitems=100000 counters=100 threshold=2000 memory=23640 outputsize=19 time=0.060000 walltime=0.062000 epsilon=0.000000
check=false algorithm=./ancestry1 nitems=100000 counters=100 threshold=2000 memory=10184 outputsize=21 time=0.050000 walltime=0.049000 epsilon=0.009990
check=false algorithm=./full1 nitems=100000 counters=100 threshold=2000 memory=19752 outputsize=19 time=0.050000 walltime=0.055000 epsilon=0.000000
check=false algorithm=./hhh1_33 nitems=100000 counters=100 threshold=2000 memory=160840 outputsize=40 time=0.510000 walltime=0.520000 epsilon=0.000010
check=false algorithm=./ancestry1_33 nitems=100000 counters=100 threshold=2000 memory=36168 outputsize=56 time=0.650000 walltime=0.648000 epsilon=0.009930
check=false algorithm=./full1_33 nitems=100000 counters=100 threshold=2000 memory=135528 outputsize=40 time=0.370000 walltime=0.380000 epsilon=0.000010
check=false algorithm=./hhh2 nitems=100000 counters=100 threshold=2000 memory=160600 outputsize=41 time=0.560000 walltime=0.560000 epsilon=0.000020
check=false algorithm=./ancestry2 nitems=100000 counters=100 threshold=2000 memory=120560 outputsize=42 time=1.200000 walltime=1.208000 epsilon=0.009980
check=false algorithm=./full2 nitems=100000 counters=100 threshold=2000 memory=154560 outputsize=41 time=0.930000 walltime=0.938000 epsilon=0.000040
check=false algorithm=./hhh1 nitems=100000 counters=1000 threshold=200 memory=183240 outputsize=159 time=0.060000 walltime=0.064000 epsilon=0.000040
check=false algorithm=./ancestry1 nitems=100000 counters=1000 threshold=200 memory=87432 outputsize=181 time=0.040000 walltime=0.038000 epsilon=0.000990
check=false algorithm=./full1 nitems=100000 counters=1000 threshold=200 memory=133544 outputsize=159 time=0.040000 walltime=0.044000 epsilon=0.000590
check=false algorithm=./hhh1_33 nitems=100000 counters=1000 threshold=200 memory=1350840 outputsize=386 time=0.580000 walltime=0.579000 epsilon=0.000060
check=false algorithm=./ancestry1_33 nitems=100000 counters=1000 threshold=200 memory=342760 outputsize=547 time=0.380000 walltime=0.387000 epsilon=0.000990
check=false algorithm=./full1_33 nitems=100000 counters=1000 threshold=200 memory=877800 outputsize=387 time=0.320000 walltime=0.319000 epsilon=0.000590
check=false algorithm=./hhh2 nitems=100000 counters=1000 threshold=200 memory=1444952 outputsize=499 time=0.720000 walltime=0.723000 epsilon=0.000620
check=false algorithm=./ancestry2 nitems=100000 counters=1000 threshold=200 memory=982880 outputsize=621 time=0.810000 walltime=0.816000 epsilon=0.000980
check=false algorithm=./full2 nitems=100000 counters=1000 threshold=200 memory=1103520 outputsize=499 time=0.970000 walltime=0.978000 epsilon=0.000730
check=false algorithm=./hhh1 nitems=100000 counters=1000 threshold=2000 memory=183240 outputsize=19 time=0.060000 walltime=0.066000 epsilon=0.000000
check=false algorithm=./ancestry1 nitems=100000 counters=1000 threshold=2000 memory=87432 outputsize=19 time=0.030000 walltime=0.037000 epsilon=0.000000
check=false algorithm=./full1 nitems=100000 counters=1000 threshold=2000 memory=133544 outputsize=19 time=0.040000 walltime=0.048000 epsilon=0.000000
check=false algorithm=./hhh1_33 nitems=100000 counters=1000 threshold=2000 memory=1350840 outputsize=40 time=0.580000 walltime=0.585000 epsilon=0.000000
check=false algorithm=./ancestry1_33 nitems=100000 counters=1000 threshold=2000 memory=342760 outputsize=40 time=0.380000 walltime=0.382000 epsilon=0.000990
check=false algorithm=./full1_33 nitems=100000 counters=1000 threshold=2000 memory=877800 outputsize=40 time=0.330000 walltime=0.333000 epsilon=0.000000
check=false algorithm=./hhh2 nitems=100000 counters=1000 threshold=2000 memory=1444952 outputsize=40 time=0.730000 walltime=0.736000 epsilon=0.000000
check=false algorithm=./ancestry2 nitems=100000 counters=1000 threshold=2000 memory=982880 outputsize=41 time=0.810000 walltime=0.813000 epsilon=0.000960
check=false algorithm=./full2 nitems=100000 counters=1000 threshold=2000 memory=1103520 outputsize=40 time=0.980000 walltime=0.998000 epsilon=0.000000
check=false algorithm=./hhh1 nitems=100000 counters=1000 threshold=500 memory=183240 outputsize=65 time=0.060000 walltime=0.064000 epsilon=0.000000
check=false algorithm=./ancestry1 nitems=100000 counters=1000 threshold=500 memory=87432 outputsize=66 time=0.040000 walltime=0.037000 epsilon=0.000990
check=false algorithm=./full1 nitems=100000 counters=1000 threshold=500 memory=133544 outputsize=65 time=0.040000 walltime=0.049000 epsilon=0.000000
check=false algorithm=./hhh1_33 nitems=100000 counters=1000 threshold=500 memory=1350840 outputsize=163 time=0.580000 walltime=0.579000 epsilon=0.000000
check=false algorithm=./ancestry1_33 nitems=100000 counters=1000 threshold=500 memory=342760 outputsize=185 time=0.380000 walltime=0.382000 epsilon=0.000990
check=false algorithm=./full1_33 nitems=100000 counters=1000 threshold=500 memory=877800 outputsize=163 time=0.320000 walltime=0.320000 epsilon=0.000000
check=false algorithm=./hhh2 nitems=100000 counters=1000 threshold=500 memory=1444952 outputsize=194 time=0.720000 walltime=0.725000 epsilon=0.000000
check=false algorithm=./ancestry2 nitems=100000 counters=1000 threshold=500 memory=982880 outputsize=211 time=0.810000 walltime=0.818000 epsilon=0.000980
check=false algorithm=./full2 nitems=100000 counters=1000 threshold=500 memory=1103520 outputsize=194 time=0.980000 walltime=0.988000 epsilon=0.000010
check=false algorithm=./hhh1 nitems=300000 counters=10 threshold=60000 memory=3480 outputsize=1 time=0.160000 walltime=0.163000 epsilon=0.000000
check=false algorithm=./ancestry1 nitems=300000 counters=10 threshold=60000 memory=1240 outputsize=2 time=0.210000 walltime=0.210000 epsilon=0.099997
check=false algorithm=./full1 nitems=300000 counters=10 threshold=60000 memory=2680 outputsize=1 time=0.220000 walltime=0.212000 epsilon=0.000000
check=false algorithm=./hhh1_33 nitems=300000 counters=10 threshold=60000 memory=25208 outputsize=4 time=1.070000 walltime=1.076000 epsilon=0.000000
check=false algorithm=./ancestry1_33 nitems=300000 counters=10 threshold=60000 memory=3960 outputsize=5 time=3.400000 walltime=3.405000 epsilon=0.099170
check=false algorithm=./full1_33 nitems=300000 counters=10 threshold=60000 memory=18840 outputsize=4 time=1.410000 walltime=1.409000 epsilon=0.000000
check=false algorithm=./hhh2 nitems=300000 counters=10 threshold=60000 memory=22360 outputsize=1 time=0.990000 walltime=0.999000 epsilon=0.000000
check=false algorithm=./ancestry2 nitems=300000 counters=10 threshold=60000 memory=13680 outputsize=1 time=4.320000 walltime=4.330000 epsilon=0.000000
check=false algorithm=./full2 nitems=300000 counters=10 threshold=60000 memory=17920 outputsize=1 time=3.040000 walltime=3.041000 epsilon=0.000000
check=false algorithm=./hhh1 nitems=300000 counters=100 threshold=6000 memory=23640 outputsize=19 time=0.190000 walltime=0.186000 epsilon=0.000000
check=false algorithm=./ancestry1 nitems=300000 counters=100 threshold=6000 memory=10184 outputsize=20 time=0.150000 walltime=0.146000 epsilon=0.009997
check=false algorithm=./full1 nitems=300000 counters=100 threshold=6000 memory=19752 outputsize=19 time=0.160000 walltime=0.154000 epsilon=0.000000
check=false algorithm=./hhh1_33 nitems=300000 counters=100 threshold=6000 memory=160840 outputsize=39 time=1.550000 walltime=1.559000 epsilon=0.000003
check=false algorithm=./ancestry1_33 nitems=300000 counters=100 threshold=6000 memory=36168 outputsize=59 time=1.950000 walltime=1.950000 epsilon=0.009993
check=false algorithm=./full1_33 nitems=300000 counters=100 threshold=6000 memory=135528 outputsize=39 time=1.120000 walltime=1.124000 epsilon=0.000003
check=false algorithm=./hhh2 nitems=300000 counters=100 threshold=6000 memory=160600 outputsize=41 time=1.670000 walltime=1.670000 epsilon=0.000007
check=false algorithm=./ancestry2 nitems=300000 counters=100 threshold=6000 memory=120560 outputsize=41 time=3.540000 walltime=3.549000 epsilon=0.009947
check=false algorithm=./full2 nitems=300000 counters=100 threshold=6000 memory=154560 outputsize=41 time=2.810000 walltime=2.813000 epsilon=0.000013
check=false algorithm=./hhh1 nitems=300000 counters=1000 threshold=600 memory=183240 outputsize=163 time=0.190000 walltime=0.191000 epsilon=0.000120
check=false algorithm=./ancestry1 nitems=300000 counters=1000 threshold=600 memory=88136 outputsize=175 time=0.120000 walltime=0.112000 epsilon=0.000997
check=false algorithm=./full1 nitems=300000 counters=1000 threshold=600 memory=133544 outputsize=163 time=0.140000 walltime=0.134000 epsilon=0.000133
check=false algorithm=./hhh1_33 nitems=300000 counters=1000 threshold=600 memory=1350840 outputsize=385 time=1.730000 walltime=1.746000 epsilon=0.000120
check=false algorithm=./ancestry1_33 nitems=300000 counters=1000 threshold=600 memory=342760 outputsize=546 time=1.150000 walltime=1.152000 epsilon=0.000997
check=false algorithm=./full1_33 nitems=300000 counters=1000 threshold=600 memory=877800 outputsize=386 time=0.970000 walltime=0.971000 epsilon=0.000153
check=false algorithm=./hhh2 nitems=300000 counters=1000 threshold=600 memory=1444952 outputsize=507 time=2.290000 walltime=2.291000 epsilon=0.000390
check=false algorithm=./ancestry2 nitems=300000 counters=1000 threshold=600 memory=997920 outputsize=613 time=2.590000 walltime=2.596000 epsilon=0.000993
check=false algorithm=./full2 nitems=300000 counters=1000 threshold=600 memory=1103520 outputsize=510 time=2.900000 walltime=2.917000 epsilon=0.000480
check=false algorithm=./hhh1 nitems=300000 counters=1000 threshold=6000 memory=183240 outputsize=19 time=0.190000 walltime=0.195000 epsilon=0.000000
check=false algorithm=./ancestry1 nitems=300000 counters=1000 threshold=6000 memory=88136 outputsize=19 time=0.120000 walltime=0.113000 epsilon=0.000000
check=false algorithm=./full1 nitems=300000 counters=1000 threshold=6000 memory=133544 outputsize=19 time=0.130000 walltime=0.134000 epsilon=0.000000
check=false algorithm=./hhh1_33 nitems=300000 counters=1000 threshold=6000 memory=1350840 outputsize=39 time=1.720000 walltime=1.726000 epsilon=0.000000
check=false algorithm=./ancestry1_33 nitems=300000 counters=1000 threshold=6000 memory=342760 outputsize=40 time=1.150000 walltime=1.148000 epsilon=0.000987
check=false algorithm=./full1_33 nitems=300000 counters=1000 threshold=6000 memory=877800 outputsize=39 time=1.010000 walltime=1.012000 epsilon=0.000000
check=false algorithm=./hhh2 nitems=300000 counters=1000 threshold=6000 memory=1444952 outputsize=40 time=2.160000 walltime=2.177000 epsilon=0.000000
check=false algorithm=./ancestry2 nitems=300000 counters=1000 threshold=6000 memory=997920 outputsize=41 time=2.530000 walltime=2.534000 epsilon=0.000833
check=false algorithm=./full2 nitems=300000 counters=1000 threshold=6000 memory=1103520 outputsize=40 time=2.900000 walltime=2.902000 epsilon=0.000000
check=false algorithm=./hhh1 nitems=300000 counters=1000 threshold=1500 memory=183240 outputsize=63 time=0.190000 walltime=0.191000 epsilon=0.000000
check=false algorithm=./ancestry1 nitems=300000 counters=1000 threshold=1500 memory=88136 outputsize=64 time=0.110000 walltime=0.113000 epsilon=0.000997
check=false algorithm=./full1 nitems=300000 counters=1000 threshold=1500 memory=133544 outputsize=63 time=0.140000 walltime=0.134000 epsilon=0.000000
check=false algorithm=./hhh1_33 nitems=300000 counters=1000 threshold=1500 memory=1350840 outputsize=160 time=1.720000 walltime=1.715000 epsilon=0.000000
check=false algorithm=./ancestry1_33 nitems=300000 counters=1000 threshold=1500 memory=342760 outputsize=184 time=1.150000 walltime=1.152000 epsilon=0.000997
check=false algorithm=./full1_33 nitems=300000 counters=1000 threshold=1500 memory=877800 outputsize=160 time=0.960000 walltime=0.961000 epsilon=0.000000
check=false algorithm=./hhh2 nitems=300000 counters=1000 threshold=1500 memory=1444952 outputsize=195 time=2.140000 walltime=2.148000 epsilon=0.000000
check=false algorithm=./ancestry2 nitems=300000 counters=1000 threshold=1500 memory=997920 outputsize=209 time=2.480000 walltime=2.492000 epsilon=0.000993
check=false algorithm=./full2 nitems=300000 counters=1000 threshold=1500 memory=1103520 outputsize=195 time=3.300000 walltime=3.302000 epsilon=0.000000
check=false algorithm=./hhh1 nitems=1000000 counters=10 threshold=200000 memory=3480 outputsize=1 time=0.560000 walltime=0.548000 epsilon=0.000000
check=false algorithm=./ancestry1 nitems=1000000 counters=10 threshold=200000 memory=1272 outputsize=2 time=0.700000 walltime=0.701000 epsilon=0.099999
check=false algorithm=./full1 nitems=1000000 counters=10 threshold=200000 memory=2680 outputsize=1 time=0.720000 walltime=0.738000 epsilon=0.000000
check=false algorithm=./hhh1_33 nitems=1000000 counters=10 threshold=200000 memory=25208 outputsize=4 time=3.560000 walltime=3.573000 epsilon=0.000000
check=false algorithm=./ancestry1_33 nitems=1000000 counters=10 threshold=200000 memory=3960 outputsize=6 time=11.350000 walltime=11.371000 epsilon=0.099981
check=false algorithm=./full1_33 nitems=1000000 counters=10 threshold=200000 memory=18840 outputsize=4 time=4.830000 walltime=4.822000 epsilon=0.000000
check=false algorithm=./hhh2 nitems=1000000 counters=10 threshold=200000 memory=22360 outputsize=1 time=3.350000 walltime=3.346000 epsilon=0.000000
check=false algorithm=./ancestry2 nitems=1000000 counters=10 threshold=200000 memory=13920 outputsize=1 time=14.360000 walltime=14.372000 epsilon=0.000000
check=false algorithm=./full2 nitems=1000000 counters=10 threshold=200000 memory=17920 outputsize=1 time=10.330000 walltime=10.335000 epsilon=0.000000
check=false algorithm=./hhh1 nitems=1000000 counters=100 threshold=20000 memory=23640 outputsize=19 time=0.620000 walltime=0.625000 epsilon=0.000000