-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogs_power9.txt
1086 lines (1086 loc) · 31.8 KB
/
logs_power9.txt
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
Detected 160 cores
#1: memory_model n_threads n_iter n dur_ms tot_dur_work_ms
n_threads = 1
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 48.35 ns
total work duration = 967 ms
Benchmarking started
Duration for strong queue = 15802ms
Duration for weak queue = 13552 ms
#1: strong 1 100 10000000 15802.000000 967.000000
#1: weak 1 100 10000000 13552.000000 967.000000
Benchmarking ended
n_threads = 1
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.67 ns
total work duration = 953.4 ms
Benchmarking started
Duration for strong queue = 15841ms
Duration for weak queue = 13603 ms
#1: strong 1 100 10000000 15841.000000 953.400000
#1: weak 1 100 10000000 13603.000000 953.400000
Benchmarking ended
n_threads = 1
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.91 ns
total work duration = 958.2 ms
Benchmarking started
Duration for strong queue = 15838ms
Duration for weak queue = 13603 ms
#1: strong 1 100 10000000 15838.000000 958.200000
#1: weak 1 100 10000000 13603.000000 958.200000
Benchmarking ended
n_threads = 1
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.6 ns
total work duration = 952 ms
Benchmarking started
Duration for strong queue = 15783ms
Duration for weak queue = 13557 ms
#1: strong 1 100 10000000 15783.000000 952.000000
#1: weak 1 100 10000000 13557.000000 952.000000
Benchmarking ended
n_threads = 1
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 52.62 ns
total work duration = 1052.4 ms
Benchmarking started
Duration for strong queue = 15767ms
Duration for weak queue = 13592 ms
#1: strong 1 100 10000000 15767.000000 1052.400000
#1: weak 1 100 10000000 13592.000000 1052.400000
Benchmarking ended
n_threads = 2
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.67 ns
total work duration = 476.7 ms
Benchmarking started
Duration for strong queue = 11645ms
Duration for weak queue = 8224 ms
#1: strong 2 100 10000000 11645.000000 476.700000
#1: weak 2 100 10000000 8224.000000 476.700000
Benchmarking ended
n_threads = 2
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.56 ns
total work duration = 475.6 ms
Benchmarking started
Duration for strong queue = 11118ms
Duration for weak queue = 7897 ms
#1: strong 2 100 10000000 11118.000000 475.600000
#1: weak 2 100 10000000 7897.000000 475.600000
Benchmarking ended
n_threads = 2
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.41 ns
total work duration = 474.1 ms
Benchmarking started
Duration for strong queue = 11647ms
Duration for weak queue = 7778 ms
#1: strong 2 100 10000000 11647.000000 474.100000
#1: weak 2 100 10000000 7778.000000 474.100000
Benchmarking ended
n_threads = 2
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.69 ns
total work duration = 476.9 ms
Benchmarking started
Duration for strong queue = 11539ms
Duration for weak queue = 8126 ms
#1: strong 2 100 10000000 11539.000000 476.900000
#1: weak 2 100 10000000 8126.000000 476.900000
Benchmarking ended
n_threads = 2
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.69 ns
total work duration = 476.9 ms
Benchmarking started
Duration for strong queue = 11085ms
Duration for weak queue = 7980 ms
#1: strong 2 100 10000000 11085.000000 476.900000
#1: weak 2 100 10000000 7980.000000 476.900000
Benchmarking ended
n_threads = 3
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.79 ns
total work duration = 318.6 ms
Benchmarking started
Duration for strong queue = 13043ms
Duration for weak queue = 10613 ms
#1: strong 3 100 10000000 13043.000000 318.599968
#1: weak 3 100 10000000 10613.000000 318.599968
Benchmarking ended
n_threads = 3
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 55 ns
total work duration = 366.667 ms
Benchmarking started
Duration for strong queue = 12068ms
Duration for weak queue = 10467 ms
#1: strong 3 100 10000000 12068.000000 366.666630
#1: weak 3 100 10000000 10467.000000 366.666630
Benchmarking ended
n_threads = 3
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 53.6 ns
total work duration = 357.333 ms
Benchmarking started
Duration for strong queue = 12623ms
Duration for weak queue = 10343 ms
#1: strong 3 100 10000000 12623.000000 357.333298
#1: weak 3 100 10000000 10343.000000 357.333298
Benchmarking ended
n_threads = 3
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.79 ns
total work duration = 318.6 ms
Benchmarking started
Duration for strong queue = 13054ms
Duration for weak queue = 10754 ms
#1: strong 3 100 10000000 13054.000000 318.599968
#1: weak 3 100 10000000 10754.000000 318.599968
Benchmarking ended
n_threads = 3
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.56 ns
total work duration = 317.067 ms
Benchmarking started
Duration for strong queue = 12822ms
Duration for weak queue = 10310 ms
#1: strong 3 100 10000000 12822.000000 317.066635
#1: weak 3 100 10000000 10310.000000 317.066635
Benchmarking ended
n_threads = 4
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 53.44 ns
total work duration = 267.2 ms
Benchmarking started
Duration for strong queue = 11751ms
Duration for weak queue = 10224 ms
#1: strong 4 100 10000000 11751.000000 267.200000
#1: weak 4 100 10000000 10224.000000 267.200000
Benchmarking ended
n_threads = 4
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 52.24 ns
total work duration = 261.2 ms
Benchmarking started
Duration for strong queue = 12974ms
Duration for weak queue = 11083 ms
#1: strong 4 100 10000000 12974.000000 261.200000
#1: weak 4 100 10000000 11083.000000 261.200000
Benchmarking ended
n_threads = 4
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 52.05 ns
total work duration = 260.25 ms
Benchmarking started
Duration for strong queue = 12334ms
Duration for weak queue = 11412 ms
#1: strong 4 100 10000000 12334.000000 260.250000
#1: weak 4 100 10000000 11412.000000 260.250000
Benchmarking ended
n_threads = 4
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 54.77 ns
total work duration = 273.85 ms
Benchmarking started
Duration for strong queue = 12606ms
Duration for weak queue = 11100 ms
#1: strong 4 100 10000000 12606.000000 273.850000
#1: weak 4 100 10000000 11100.000000 273.850000
Benchmarking ended
n_threads = 4
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 49.96 ns
total work duration = 249.8 ms
Benchmarking started
Duration for strong queue = 12519ms
Duration for weak queue = 10742 ms
#1: strong 4 100 10000000 12519.000000 249.800000
#1: weak 4 100 10000000 10742.000000 249.800000
Benchmarking ended
n_threads = 5
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.44 ns
total work duration = 189.76 ms
Benchmarking started
Duration for strong queue = 13054ms
Duration for weak queue = 11636 ms
#1: strong 5 100 10000000 13054.000000 189.760000
#1: weak 5 100 10000000 11636.000000 189.760000
Benchmarking ended
n_threads = 5
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 48.16 ns
total work duration = 192.64 ms
Benchmarking started
Duration for strong queue = 12516ms
Duration for weak queue = 12922 ms
#1: strong 5 100 10000000 12516.000000 192.640000
#1: weak 5 100 10000000 12922.000000 192.640000
Benchmarking ended
n_threads = 5
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.72 ns
total work duration = 190.88 ms
Benchmarking started
Duration for strong queue = 13423ms
Duration for weak queue = 12723 ms
#1: strong 5 100 10000000 13423.000000 190.880000
#1: weak 5 100 10000000 12723.000000 190.880000
Benchmarking ended
n_threads = 5
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.56 ns
total work duration = 190.24 ms
Benchmarking started
Duration for strong queue = 12931ms
Duration for weak queue = 13000 ms
#1: strong 5 100 10000000 12931.000000 190.240000
#1: weak 5 100 10000000 13000.000000 190.240000
Benchmarking ended
n_threads = 5
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 51.77 ns
total work duration = 207.08 ms
Benchmarking started
Duration for strong queue = 13292ms
Duration for weak queue = 12185 ms
#1: strong 5 100 10000000 13292.000000 207.080000
#1: weak 5 100 10000000 12185.000000 207.080000
Benchmarking ended
n_threads = 6
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.76 ns
total work duration = 159.2 ms
Benchmarking started
Duration for strong queue = 12161ms
Duration for weak queue = 12716 ms
#1: strong 6 100 10000000 12161.000000 159.199936
#1: weak 6 100 10000000 12716.000000 159.199936
Benchmarking ended
n_threads = 6
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 48.28 ns
total work duration = 160.933 ms
Benchmarking started
Duration for strong queue = 12913ms
Duration for weak queue = 13151 ms
#1: strong 6 100 10000000 12913.000000 160.933269
#1: weak 6 100 10000000 13151.000000 160.933269
Benchmarking ended
n_threads = 6
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.91 ns
total work duration = 159.7 ms
Benchmarking started
Duration for strong queue = 13608ms
Duration for weak queue = 12616 ms
#1: strong 6 100 10000000 13608.000000 159.699936
#1: weak 6 100 10000000 12616.000000 159.699936
Benchmarking ended
n_threads = 6
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.51 ns
total work duration = 158.367 ms
Benchmarking started
Duration for strong queue = 13207ms
Duration for weak queue = 13091 ms
#1: strong 6 100 10000000 13207.000000 158.366603
#1: weak 6 100 10000000 13091.000000 158.366603
Benchmarking ended
n_threads = 6
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.53 ns
total work duration = 158.433 ms
Benchmarking started
Duration for strong queue = 13229ms
Duration for weak queue = 12319 ms
#1: strong 6 100 10000000 13229.000000 158.433270
#1: weak 6 100 10000000 12319.000000 158.433270
Benchmarking ended
n_threads = 7
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 56.86 ns
total work duration = 162.457 ms
Benchmarking started
Duration for strong queue = 13514ms
Duration for weak queue = 13037 ms
#1: strong 7 100 10000000 13514.000000 162.457094
#1: weak 7 100 10000000 13037.000000 162.457094
Benchmarking ended
n_threads = 7
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 52.53 ns
total work duration = 150.086 ms
Benchmarking started
Duration for strong queue = 13522ms
Duration for weak queue = 13978 ms
#1: strong 7 100 10000000 13522.000000 150.085669
#1: weak 7 100 10000000 13978.000000 150.085669
Benchmarking ended
n_threads = 7
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 52.52 ns
total work duration = 150.057 ms
Benchmarking started
Duration for strong queue = 13741ms
Duration for weak queue = 13502 ms
#1: strong 7 100 10000000 13741.000000 150.057098
#1: weak 7 100 10000000 13502.000000 150.057098
Benchmarking ended
n_threads = 7
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.64 ns
total work duration = 136.114 ms
Benchmarking started
Duration for strong queue = 13750ms
Duration for weak queue = 13763 ms
#1: strong 7 100 10000000 13750.000000 136.114245
#1: weak 7 100 10000000 13763.000000 136.114245
Benchmarking ended
n_threads = 7
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.55 ns
total work duration = 135.857 ms
Benchmarking started
Duration for strong queue = 14021ms
Duration for weak queue = 14005 ms
#1: strong 7 100 10000000 14021.000000 135.857102
#1: weak 7 100 10000000 14005.000000 135.857102
Benchmarking ended
n_threads = 8
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.86 ns
total work duration = 119.65 ms
Benchmarking started
Duration for strong queue = 13811ms
Duration for weak queue = 13376 ms
#1: strong 8 100 10000000 13811.000000 119.650000
#1: weak 8 100 10000000 13376.000000 119.650000
Benchmarking ended
n_threads = 8
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 48.59 ns
total work duration = 121.475 ms
Benchmarking started
Duration for strong queue = 13307ms
Duration for weak queue = 13140 ms
#1: strong 8 100 10000000 13307.000000 121.475000
#1: weak 8 100 10000000 13140.000000 121.475000
Benchmarking ended
n_threads = 8
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.52 ns
total work duration = 118.8 ms
Benchmarking started
Duration for strong queue = 14046ms
Duration for weak queue = 13244 ms
#1: strong 8 100 10000000 14046.000000 118.800000
#1: weak 8 100 10000000 13244.000000 118.800000
Benchmarking ended
n_threads = 8
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 48.95 ns
total work duration = 122.375 ms
Benchmarking started
Duration for strong queue = 14277ms
Duration for weak queue = 13559 ms
#1: strong 8 100 10000000 14277.000000 122.375000
#1: weak 8 100 10000000 13559.000000 122.375000
Benchmarking ended
n_threads = 8
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.85 ns
total work duration = 119.625 ms
Benchmarking started
Duration for strong queue = 13235ms
Duration for weak queue = 13325 ms
#1: strong 8 100 10000000 13235.000000 119.625000
#1: weak 8 100 10000000 13325.000000 119.625000
Benchmarking ended
n_threads = 9
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.52 ns
total work duration = 105.6 ms
Benchmarking started
Duration for strong queue = 14102ms
Duration for weak queue = 14187 ms
#1: strong 9 100 10000000 14102.000000 105.599989
#1: weak 9 100 10000000 14187.000000 105.599989
Benchmarking ended
n_threads = 9
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 59.85 ns
total work duration = 133 ms
Benchmarking started
Duration for strong queue = 14525ms
Duration for weak queue = 13942 ms
#1: strong 9 100 10000000 14525.000000 132.999987
#1: weak 9 100 10000000 13942.000000 132.999987
Benchmarking ended
n_threads = 9
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.82 ns
total work duration = 106.267 ms
Benchmarking started
Duration for strong queue = 14746ms
Duration for weak queue = 13766 ms
#1: strong 9 100 10000000 14746.000000 106.266656
#1: weak 9 100 10000000 13766.000000 106.266656
Benchmarking ended
n_threads = 9
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 48.17 ns
total work duration = 107.044 ms
Benchmarking started
Duration for strong queue = 14546ms
Duration for weak queue = 13727 ms
#1: strong 9 100 10000000 14546.000000 107.044434
#1: weak 9 100 10000000 13727.000000 107.044434
Benchmarking ended
n_threads = 9
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.65 ns
total work duration = 105.889 ms
Benchmarking started
Duration for strong queue = 14050ms
Duration for weak queue = 13877 ms
#1: strong 9 100 10000000 14050.000000 105.888878
#1: weak 9 100 10000000 13877.000000 105.888878
Benchmarking ended
n_threads = 10
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.96 ns
total work duration = 95.92 ms
Benchmarking started
Duration for strong queue = 14738ms
Duration for weak queue = 14351 ms
#1: strong 10 100 10000000 14738.000000 95.920000
#1: weak 10 100 10000000 14351.000000 95.920000
Benchmarking ended
n_threads = 10
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.78 ns
total work duration = 95.56 ms
Benchmarking started
Duration for strong queue = 14283ms
Duration for weak queue = 13732 ms
#1: strong 10 100 10000000 14283.000000 95.560000
#1: weak 10 100 10000000 13732.000000 95.560000
Benchmarking ended
n_threads = 10
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.5 ns
total work duration = 95 ms
Benchmarking started
Duration for strong queue = 14718ms
Duration for weak queue = 14242 ms
#1: strong 10 100 10000000 14718.000000 95.000000
#1: weak 10 100 10000000 14242.000000 95.000000
Benchmarking ended
n_threads = 10
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.45 ns
total work duration = 94.9 ms
Benchmarking started
Duration for strong queue = 14214ms
Duration for weak queue = 14351 ms
#1: strong 10 100 10000000 14214.000000 94.900000
#1: weak 10 100 10000000 14351.000000 94.900000
Benchmarking ended
n_threads = 10
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.58 ns
total work duration = 95.16 ms
Benchmarking started
Duration for strong queue = 14163ms
Duration for weak queue = 14126 ms
#1: strong 10 100 10000000 14163.000000 95.160000
#1: weak 10 100 10000000 14126.000000 95.160000
Benchmarking ended
n_threads = 11
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 48.08 ns
total work duration = 87.4181 ms
Benchmarking started
Duration for strong queue = 14725ms
Duration for weak queue = 14653 ms
#1: strong 11 100 10000000 14725.000000 87.418094
#1: weak 11 100 10000000 14653.000000 87.418094
Benchmarking ended
n_threads = 11
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.73 ns
total work duration = 86.7817 ms
Benchmarking started
Duration for strong queue = 14362ms
Duration for weak queue = 14380 ms
#1: strong 11 100 10000000 14362.000000 86.781731
#1: weak 11 100 10000000 14380.000000 86.781731
Benchmarking ended
n_threads = 11
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.81 ns
total work duration = 86.9272 ms
Benchmarking started
Duration for strong queue = 15054ms
Duration for weak queue = 14451 ms
#1: strong 11 100 10000000 15054.000000 86.927186
#1: weak 11 100 10000000 14451.000000 86.927186
Benchmarking ended
n_threads = 11
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.62 ns
total work duration = 86.5817 ms
Benchmarking started
Duration for strong queue = 14921ms
Duration for weak queue = 14333 ms
#1: strong 11 100 10000000 14921.000000 86.581732
#1: weak 11 100 10000000 14333.000000 86.581732
Benchmarking ended
n_threads = 11
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.79 ns
total work duration = 86.8908 ms
Benchmarking started
Duration for strong queue = 13975ms
Duration for weak queue = 13994 ms
#1: strong 11 100 10000000 13975.000000 86.890822
#1: weak 11 100 10000000 13994.000000 86.890822
Benchmarking ended
n_threads = 12
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.97 ns
total work duration = 79.95 ms
Benchmarking started
Duration for strong queue = 14016ms
Duration for weak queue = 14097 ms
#1: strong 12 100 10000000 14016.000000 79.949968
#1: weak 12 100 10000000 14097.000000 79.949968
Benchmarking ended
n_threads = 12
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 51.93 ns
total work duration = 86.55 ms
Benchmarking started
Duration for strong queue = 14683ms
Duration for weak queue = 14195 ms
#1: strong 12 100 10000000 14683.000000 86.549965
#1: weak 12 100 10000000 14195.000000 86.549965
Benchmarking ended
n_threads = 12
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.73 ns
total work duration = 79.55 ms
Benchmarking started
Duration for strong queue = 14965ms
Duration for weak queue = 14638 ms
#1: strong 12 100 10000000 14965.000000 79.549968
#1: weak 12 100 10000000 14638.000000 79.549968
Benchmarking ended
n_threads = 12
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.94 ns
total work duration = 79.9 ms
Benchmarking started
Duration for strong queue = 14682ms
Duration for weak queue = 14644 ms
#1: strong 12 100 10000000 14682.000000 79.899968
#1: weak 12 100 10000000 14644.000000 79.899968
Benchmarking ended
n_threads = 12
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.81 ns
total work duration = 79.6833 ms
Benchmarking started
Duration for strong queue = 14934ms
Duration for weak queue = 14229 ms
#1: strong 12 100 10000000 14934.000000 79.683301
#1: weak 12 100 10000000 14229.000000 79.683301
Benchmarking ended
n_threads = 13
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.62 ns
total work duration = 73.2615 ms
Benchmarking started
Duration for strong queue = 15071ms
Duration for weak queue = 14682 ms
#1: strong 13 100 10000000 15071.000000 73.261465
#1: weak 13 100 10000000 14682.000000 73.261465
Benchmarking ended
n_threads = 13
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 53.1 ns
total work duration = 81.6922 ms
Benchmarking started
Duration for strong queue = 14783ms
Duration for weak queue = 14831 ms
#1: strong 13 100 10000000 14783.000000 81.692226
#1: weak 13 100 10000000 14831.000000 81.692226
Benchmarking ended
n_threads = 13
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.67 ns
total work duration = 73.3384 ms
Benchmarking started
Duration for strong queue = 14149ms
Duration for weak queue = 14208 ms
#1: strong 13 100 10000000 14149.000000 73.338388
#1: weak 13 100 10000000 14208.000000 73.338388
Benchmarking ended
n_threads = 13
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.5 ns
total work duration = 73.0768 ms
Benchmarking started
Duration for strong queue = 14371ms
Duration for weak queue = 14070 ms
#1: strong 13 100 10000000 14371.000000 73.076850
#1: weak 13 100 10000000 14070.000000 73.076850
Benchmarking ended
n_threads = 13
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 49.02 ns
total work duration = 75.4153 ms
Benchmarking started
Duration for strong queue = 15210ms
Duration for weak queue = 14811 ms
#1: strong 13 100 10000000 15210.000000 75.415309
#1: weak 13 100 10000000 14811.000000 75.415309
Benchmarking ended
n_threads = 14
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.63 ns
total work duration = 68.0428 ms
Benchmarking started
Duration for strong queue = 14927ms
Duration for weak queue = 15181 ms
#1: strong 14 100 10000000 14927.000000 68.042789
#1: weak 14 100 10000000 15181.000000 68.042789
Benchmarking ended
n_threads = 14
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.58 ns
total work duration = 67.9714 ms
Benchmarking started
Duration for strong queue = 15025ms
Duration for weak queue = 14797 ms
#1: strong 14 100 10000000 15025.000000 67.971361
#1: weak 14 100 10000000 14797.000000 67.971361
Benchmarking ended
n_threads = 14
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 50 ns
total work duration = 71.4285 ms
Benchmarking started
Duration for strong queue = 14584ms
Duration for weak queue = 15134 ms
#1: strong 14 100 10000000 14584.000000 71.428500
#1: weak 14 100 10000000 15134.000000 71.428500
Benchmarking ended
n_threads = 14
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.73 ns
total work duration = 68.1856 ms
Benchmarking started
Duration for strong queue = 15025ms
Duration for weak queue = 14795 ms
#1: strong 14 100 10000000 15025.000000 68.185646
#1: weak 14 100 10000000 14795.000000 68.185646
Benchmarking ended
n_threads = 14
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.69 ns
total work duration = 68.1285 ms
Benchmarking started
Duration for strong queue = 14628ms
Duration for weak queue = 14862 ms
#1: strong 14 100 10000000 14628.000000 68.128503
#1: weak 14 100 10000000 14862.000000 68.128503
Benchmarking ended
n_threads = 15
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 52.37 ns
total work duration = 69.8266 ms
Benchmarking started
Duration for strong queue = 14819ms
Duration for weak queue = 14890 ms
#1: strong 15 100 10000000 14819.000000 69.826597
#1: weak 15 100 10000000 14890.000000 69.826597
Benchmarking ended
n_threads = 15
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.67 ns
total work duration = 63.5599 ms
Benchmarking started
Duration for strong queue = 14962ms
Duration for weak queue = 14882 ms
#1: strong 15 100 10000000 14962.000000 63.559936
#1: weak 15 100 10000000 14882.000000 63.559936
Benchmarking ended
n_threads = 15
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.46 ns
total work duration = 63.2799 ms
Benchmarking started
Duration for strong queue = 14846ms
Duration for weak queue = 14803 ms
#1: strong 15 100 10000000 14846.000000 63.279937
#1: weak 15 100 10000000 14803.000000 63.279937
Benchmarking ended
n_threads = 15
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.61 ns
total work duration = 63.4799 ms
Benchmarking started
Duration for strong queue = 14141ms
Duration for weak queue = 13791 ms
#1: strong 15 100 10000000 14141.000000 63.479937
#1: weak 15 100 10000000 13791.000000 63.479937
Benchmarking ended
n_threads = 15
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.93 ns
total work duration = 63.9066 ms
Benchmarking started
Duration for strong queue = 14930ms
Duration for weak queue = 14573 ms
#1: strong 15 100 10000000 14930.000000 63.906603
#1: weak 15 100 10000000 14573.000000 63.906603
Benchmarking ended
n_threads = 16
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 51.76 ns
total work duration = 64.7 ms
Benchmarking started
Duration for strong queue = 13628ms
Duration for weak queue = 14128 ms
#1: strong 16 100 10000000 13628.000000 64.700000
#1: weak 16 100 10000000 14128.000000 64.700000
Benchmarking ended
n_threads = 16
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.96 ns
total work duration = 59.95 ms
Benchmarking started
Duration for strong queue = 15125ms
Duration for weak queue = 14856 ms
#1: strong 16 100 10000000 15125.000000 59.950000
#1: weak 16 100 10000000 14856.000000 59.950000
Benchmarking ended
n_threads = 16
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.6 ns
total work duration = 59.5 ms
Benchmarking started
Duration for strong queue = 15057ms
Duration for weak queue = 14579 ms
#1: strong 16 100 10000000 15057.000000 59.500000
#1: weak 16 100 10000000 14579.000000 59.500000
Benchmarking ended
n_threads = 16
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.56 ns
total work duration = 59.45 ms
Benchmarking started
Duration for strong queue = 15073ms
Duration for weak queue = 14763 ms
#1: strong 16 100 10000000 15073.000000 59.450000
#1: weak 16 100 10000000 14763.000000 59.450000
Benchmarking ended
n_threads = 16
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.38 ns
total work duration = 59.225 ms
Benchmarking started
Duration for strong queue = 14979ms
Duration for weak queue = 14832 ms
#1: strong 16 100 10000000 14979.000000 59.225000
#1: weak 16 100 10000000 14832.000000 59.225000
Benchmarking ended
n_threads = 17
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.89 ns
total work duration = 56.3411 ms
Benchmarking started
Duration for strong queue = 14790ms
Duration for weak queue = 14621 ms
#1: strong 17 100 10000000 14790.000000 56.341148
#1: weak 17 100 10000000 14621.000000 56.341148
Benchmarking ended
n_threads = 17
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.38 ns
total work duration = 55.7411 ms
Benchmarking started
Duration for strong queue = 14902ms
Duration for weak queue = 14634 ms
#1: strong 17 100 10000000 14902.000000 55.741149
#1: weak 17 100 10000000 14634.000000 55.741149
Benchmarking ended
n_threads = 17
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.83 ns
total work duration = 56.2706 ms
Benchmarking started
Duration for strong queue = 15010ms
Duration for weak queue = 14870 ms
#1: strong 17 100 10000000 15010.000000 56.270560
#1: weak 17 100 10000000 14870.000000 56.270560
Benchmarking ended
n_threads = 17
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.38 ns
total work duration = 55.7411 ms
Benchmarking started
Duration for strong queue = 14902ms
Duration for weak queue = 15053 ms
#1: strong 17 100 10000000 14902.000000 55.741149
#1: weak 17 100 10000000 15053.000000 55.741149
Benchmarking ended
n_threads = 17
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.68 ns
total work duration = 56.0941 ms
Benchmarking started
Duration for strong queue = 14964ms
Duration for weak queue = 14686 ms
#1: strong 17 100 10000000 14964.000000 56.094090
#1: weak 17 100 10000000 14686.000000 56.094090
Benchmarking ended
n_threads = 18
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.37 ns
total work duration = 52.6333 ms
Benchmarking started
Duration for strong queue = 14466ms
Duration for weak queue = 14066 ms
#1: strong 18 100 10000000 14466.000000 52.633281
#1: weak 18 100 10000000 14066.000000 52.633281
Benchmarking ended
n_threads = 18
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.81 ns
total work duration = 53.1222 ms
Benchmarking started
Duration for strong queue = 14583ms
Duration for weak queue = 14890 ms
#1: strong 18 100 10000000 14583.000000 53.122169
#1: weak 18 100 10000000 14890.000000 53.122169
Benchmarking ended
n_threads = 18
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.87 ns
total work duration = 53.1888 ms
Benchmarking started
Duration for strong queue = 14041ms
Duration for weak queue = 13762 ms
#1: strong 18 100 10000000 14041.000000 53.188836
#1: weak 18 100 10000000 13762.000000 53.188836
Benchmarking ended
n_threads = 18
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 47.44 ns
total work duration = 52.7111 ms
Benchmarking started
Duration for strong queue = 14895ms
Duration for weak queue = 14949 ms
#1: strong 18 100 10000000 14895.000000 52.711058
#1: weak 18 100 10000000 14949.000000 52.711058
Benchmarking ended
n_threads = 18
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 53.92 ns
total work duration = 59.9111 ms
Benchmarking started
Duration for strong queue = 13848ms
Duration for weak queue = 13827 ms
#1: strong 18 100 10000000 13848.000000 59.911051
#1: weak 18 100 10000000 13827.000000 59.911051
Benchmarking ended
n_threads = 19
n_iter = 100
number of enqueue/dequeue = 10000000
work duration = 48.09 ns
total work duration = 50.621 ms
Benchmarking started
Duration for strong queue = 14068ms
Duration for weak queue = 14127 ms