-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathout2.out
2000 lines (2000 loc) · 148 KB
/
out2.out
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
OMP: Info #155: KMP_AFFINITY: Initial OS proc set respected: 0-31
OMP: Info #216: KMP_AFFINITY: decoding x2APIC ids.
OMP: Info #157: KMP_AFFINITY: 32 available OS procs
OMP: Info #158: KMP_AFFINITY: Uniform topology
OMP: Info #289: KMP_AFFINITY: topology layer "LL cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L3 cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L2 cache" is equivalent to "core".
OMP: Info #289: KMP_AFFINITY: topology layer "L1 cache" is equivalent to "core".
OMP: Info #191: KMP_AFFINITY: 2 sockets x 8 cores/socket x 2 threads/core (16 total cores)
OMP: Info #218: KMP_AFFINITY: OS proc to physical thread map:
OMP: Info #172: KMP_AFFINITY: OS proc 0 maps to socket 0 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 16 maps to socket 0 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 1 maps to socket 0 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 17 maps to socket 0 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 2 maps to socket 0 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 18 maps to socket 0 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 3 maps to socket 0 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 19 maps to socket 0 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 4 maps to socket 0 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 20 maps to socket 0 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 5 maps to socket 0 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 21 maps to socket 0 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 6 maps to socket 0 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 22 maps to socket 0 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 7 maps to socket 0 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 23 maps to socket 0 core 7 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 8 maps to socket 1 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 24 maps to socket 1 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 9 maps to socket 1 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 25 maps to socket 1 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 10 maps to socket 1 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 26 maps to socket 1 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 11 maps to socket 1 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 27 maps to socket 1 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 12 maps to socket 1 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 28 maps to socket 1 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 13 maps to socket 1 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 29 maps to socket 1 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 14 maps to socket 1 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 30 maps to socket 1 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 15 maps to socket 1 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 31 maps to socket 1 core 7 thread 1
OMP: Info #145: KMP_AFFINITY: Threads may migrate across 1 innermost levels of machine
OMP: Info #254: KMP_AFFINITY: pid 65277 tid 65277 thread 0 bound to OS proc set 0,16
Decomposition time: 177.492
176.73user 1.56system 2:58.35elapsed 99%CPU (0avgtext+0avgdata 1503392maxresident)k
280inputs+24outputs (1major+1630912minor)pagefaults 0swaps
OMP: Info #155: KMP_AFFINITY: Initial OS proc set respected: 0-31
OMP: Info #216: KMP_AFFINITY: decoding x2APIC ids.
OMP: Info #157: KMP_AFFINITY: 32 available OS procs
OMP: Info #158: KMP_AFFINITY: Uniform topology
OMP: Info #289: KMP_AFFINITY: topology layer "LL cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L3 cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L2 cache" is equivalent to "core".
OMP: Info #289: KMP_AFFINITY: topology layer "L1 cache" is equivalent to "core".
OMP: Info #191: KMP_AFFINITY: 2 sockets x 8 cores/socket x 2 threads/core (16 total cores)
OMP: Info #218: KMP_AFFINITY: OS proc to physical thread map:
OMP: Info #172: KMP_AFFINITY: OS proc 0 maps to socket 0 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 16 maps to socket 0 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 1 maps to socket 0 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 17 maps to socket 0 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 2 maps to socket 0 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 18 maps to socket 0 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 3 maps to socket 0 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 19 maps to socket 0 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 4 maps to socket 0 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 20 maps to socket 0 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 5 maps to socket 0 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 21 maps to socket 0 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 6 maps to socket 0 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 22 maps to socket 0 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 7 maps to socket 0 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 23 maps to socket 0 core 7 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 8 maps to socket 1 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 24 maps to socket 1 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 9 maps to socket 1 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 25 maps to socket 1 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 10 maps to socket 1 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 26 maps to socket 1 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 11 maps to socket 1 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 27 maps to socket 1 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 12 maps to socket 1 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 28 maps to socket 1 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 13 maps to socket 1 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 29 maps to socket 1 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 14 maps to socket 1 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 30 maps to socket 1 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 15 maps to socket 1 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 31 maps to socket 1 core 7 thread 1
OMP: Info #145: KMP_AFFINITY: Threads may migrate across 1 innermost levels of machine
OMP: Info #254: KMP_AFFINITY: pid 65428 tid 65428 thread 0 bound to OS proc set 0,16
OMP: Info #254: OMP_PROC_BIND: pid 65428 tid 65429 thread 9 bound to OS proc set 8,24
Decomposition time: 94.8088
187.91user 2.61system 1:35.39elapsed 199%CPU (0avgtext+0avgdata 1503540maxresident)k
0inputs+32outputs (0major+1448975minor)pagefaults 0swaps
OMP: Info #155: KMP_AFFINITY: Initial OS proc set respected: 0-31
OMP: Info #216: KMP_AFFINITY: decoding x2APIC ids.
OMP: Info #157: KMP_AFFINITY: 32 available OS procs
OMP: Info #158: KMP_AFFINITY: Uniform topology
OMP: Info #289: KMP_AFFINITY: topology layer "LL cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L3 cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L2 cache" is equivalent to "core".
OMP: Info #289: KMP_AFFINITY: topology layer "L1 cache" is equivalent to "core".
OMP: Info #191: KMP_AFFINITY: 2 sockets x 8 cores/socket x 2 threads/core (16 total cores)
OMP: Info #218: KMP_AFFINITY: OS proc to physical thread map:
OMP: Info #172: KMP_AFFINITY: OS proc 0 maps to socket 0 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 16 maps to socket 0 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 1 maps to socket 0 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 17 maps to socket 0 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 2 maps to socket 0 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 18 maps to socket 0 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 3 maps to socket 0 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 19 maps to socket 0 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 4 maps to socket 0 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 20 maps to socket 0 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 5 maps to socket 0 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 21 maps to socket 0 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 6 maps to socket 0 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 22 maps to socket 0 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 7 maps to socket 0 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 23 maps to socket 0 core 7 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 8 maps to socket 1 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 24 maps to socket 1 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 9 maps to socket 1 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 25 maps to socket 1 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 10 maps to socket 1 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 26 maps to socket 1 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 11 maps to socket 1 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 27 maps to socket 1 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 12 maps to socket 1 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 28 maps to socket 1 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 13 maps to socket 1 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 29 maps to socket 1 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 14 maps to socket 1 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 30 maps to socket 1 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 15 maps to socket 1 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 31 maps to socket 1 core 7 thread 1
OMP: Info #145: KMP_AFFINITY: Threads may migrate across 1 innermost levels of machine
OMP: Info #254: KMP_AFFINITY: pid 65521 tid 65521 thread 0 bound to OS proc set 0,16
OMP: Info #254: OMP_PROC_BIND: pid 65521 tid 65522 thread 9 bound to OS proc set 5,21
OMP: Info #254: OMP_PROC_BIND: pid 65521 tid 65523 thread 10 bound to OS proc set 11,27
Decomposition time: 71.4585
211.08user 4.25system 1:11.94elapsed 299%CPU (0avgtext+0avgdata 1503588maxresident)k
0inputs+32outputs (0major+1424600minor)pagefaults 0swaps
OMP: Info #155: KMP_AFFINITY: Initial OS proc set respected: 0-31
OMP: Info #216: KMP_AFFINITY: decoding x2APIC ids.
OMP: Info #157: KMP_AFFINITY: 32 available OS procs
OMP: Info #158: KMP_AFFINITY: Uniform topology
OMP: Info #289: KMP_AFFINITY: topology layer "LL cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L3 cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L2 cache" is equivalent to "core".
OMP: Info #289: KMP_AFFINITY: topology layer "L1 cache" is equivalent to "core".
OMP: Info #191: KMP_AFFINITY: 2 sockets x 8 cores/socket x 2 threads/core (16 total cores)
OMP: Info #218: KMP_AFFINITY: OS proc to physical thread map:
OMP: Info #172: KMP_AFFINITY: OS proc 0 maps to socket 0 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 16 maps to socket 0 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 1 maps to socket 0 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 17 maps to socket 0 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 2 maps to socket 0 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 18 maps to socket 0 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 3 maps to socket 0 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 19 maps to socket 0 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 4 maps to socket 0 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 20 maps to socket 0 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 5 maps to socket 0 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 21 maps to socket 0 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 6 maps to socket 0 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 22 maps to socket 0 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 7 maps to socket 0 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 23 maps to socket 0 core 7 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 8 maps to socket 1 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 24 maps to socket 1 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 9 maps to socket 1 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 25 maps to socket 1 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 10 maps to socket 1 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 26 maps to socket 1 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 11 maps to socket 1 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 27 maps to socket 1 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 12 maps to socket 1 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 28 maps to socket 1 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 13 maps to socket 1 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 29 maps to socket 1 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 14 maps to socket 1 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 30 maps to socket 1 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 15 maps to socket 1 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 31 maps to socket 1 core 7 thread 1
OMP: Info #145: KMP_AFFINITY: Threads may migrate across 1 innermost levels of machine
OMP: Info #254: KMP_AFFINITY: pid 350 tid 350 thread 0 bound to OS proc set 0,16
OMP: Info #254: OMP_PROC_BIND: pid 350 tid 351 thread 9 bound to OS proc set 4,20
OMP: Info #254: OMP_PROC_BIND: pid 350 tid 352 thread 10 bound to OS proc set 8,24
OMP: Info #254: OMP_PROC_BIND: pid 350 tid 354 thread 11 bound to OS proc set 12,28
Decomposition time: 57.69
227.05user 4.59system 0:58.11elapsed 398%CPU (0avgtext+0avgdata 1503640maxresident)k
0inputs+32outputs (0major+1332315minor)pagefaults 0swaps
OMP: Info #155: KMP_AFFINITY: Initial OS proc set respected: 0-31
OMP: Info #216: KMP_AFFINITY: decoding x2APIC ids.
OMP: Info #157: KMP_AFFINITY: 32 available OS procs
OMP: Info #158: KMP_AFFINITY: Uniform topology
OMP: Info #289: KMP_AFFINITY: topology layer "LL cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L3 cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L2 cache" is equivalent to "core".
OMP: Info #289: KMP_AFFINITY: topology layer "L1 cache" is equivalent to "core".
OMP: Info #191: KMP_AFFINITY: 2 sockets x 8 cores/socket x 2 threads/core (16 total cores)
OMP: Info #218: KMP_AFFINITY: OS proc to physical thread map:
OMP: Info #172: KMP_AFFINITY: OS proc 0 maps to socket 0 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 16 maps to socket 0 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 1 maps to socket 0 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 17 maps to socket 0 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 2 maps to socket 0 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 18 maps to socket 0 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 3 maps to socket 0 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 19 maps to socket 0 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 4 maps to socket 0 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 20 maps to socket 0 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 5 maps to socket 0 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 21 maps to socket 0 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 6 maps to socket 0 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 22 maps to socket 0 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 7 maps to socket 0 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 23 maps to socket 0 core 7 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 8 maps to socket 1 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 24 maps to socket 1 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 9 maps to socket 1 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 25 maps to socket 1 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 10 maps to socket 1 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 26 maps to socket 1 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 11 maps to socket 1 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 27 maps to socket 1 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 12 maps to socket 1 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 28 maps to socket 1 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 13 maps to socket 1 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 29 maps to socket 1 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 14 maps to socket 1 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 30 maps to socket 1 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 15 maps to socket 1 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 31 maps to socket 1 core 7 thread 1
OMP: Info #145: KMP_AFFINITY: Threads may migrate across 1 innermost levels of machine
OMP: Info #254: KMP_AFFINITY: pid 407 tid 407 thread 0 bound to OS proc set 0,16
OMP: Info #254: OMP_PROC_BIND: pid 407 tid 411 thread 12 bound to OS proc set 13,29
OMP: Info #254: OMP_PROC_BIND: pid 407 tid 410 thread 11 bound to OS proc set 10,26
OMP: Info #254: OMP_PROC_BIND: pid 407 tid 409 thread 10 bound to OS proc set 6,22
OMP: Info #254: OMP_PROC_BIND: pid 407 tid 408 thread 9 bound to OS proc set 3,19
Decomposition time: 55.15
269.93user 6.62system 0:55.55elapsed 497%CPU (0avgtext+0avgdata 1503688maxresident)k
0inputs+32outputs (0major+1341165minor)pagefaults 0swaps
OMP: Info #155: KMP_AFFINITY: Initial OS proc set respected: 0-31
OMP: Info #216: KMP_AFFINITY: decoding x2APIC ids.
OMP: Info #157: KMP_AFFINITY: 32 available OS procs
OMP: Info #158: KMP_AFFINITY: Uniform topology
OMP: Info #289: KMP_AFFINITY: topology layer "LL cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L3 cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L2 cache" is equivalent to "core".
OMP: Info #289: KMP_AFFINITY: topology layer "L1 cache" is equivalent to "core".
OMP: Info #191: KMP_AFFINITY: 2 sockets x 8 cores/socket x 2 threads/core (16 total cores)
OMP: Info #218: KMP_AFFINITY: OS proc to physical thread map:
OMP: Info #172: KMP_AFFINITY: OS proc 0 maps to socket 0 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 16 maps to socket 0 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 1 maps to socket 0 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 17 maps to socket 0 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 2 maps to socket 0 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 18 maps to socket 0 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 3 maps to socket 0 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 19 maps to socket 0 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 4 maps to socket 0 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 20 maps to socket 0 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 5 maps to socket 0 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 21 maps to socket 0 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 6 maps to socket 0 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 22 maps to socket 0 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 7 maps to socket 0 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 23 maps to socket 0 core 7 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 8 maps to socket 1 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 24 maps to socket 1 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 9 maps to socket 1 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 25 maps to socket 1 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 10 maps to socket 1 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 26 maps to socket 1 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 11 maps to socket 1 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 27 maps to socket 1 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 12 maps to socket 1 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 28 maps to socket 1 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 13 maps to socket 1 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 29 maps to socket 1 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 14 maps to socket 1 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 30 maps to socket 1 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 15 maps to socket 1 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 31 maps to socket 1 core 7 thread 1
OMP: Info #145: KMP_AFFINITY: Threads may migrate across 1 innermost levels of machine
OMP: Info #254: KMP_AFFINITY: pid 462 tid 462 thread 0 bound to OS proc set 0,16
OMP: Info #254: OMP_PROC_BIND: pid 462 tid 465 thread 11 bound to OS proc set 8,24
OMP: Info #254: OMP_PROC_BIND: pid 462 tid 464 thread 10 bound to OS proc set 5,21
OMP: Info #254: OMP_PROC_BIND: pid 462 tid 466 thread 12 bound to OS proc set 11,27
OMP: Info #254: OMP_PROC_BIND: pid 462 tid 463 thread 9 bound to OS proc set 2,18
OMP: Info #254: OMP_PROC_BIND: pid 462 tid 467 thread 13 bound to OS proc set 14,30
Decomposition time: 48.87
287.79user 6.32system 0:49.26elapsed 596%CPU (0avgtext+0avgdata 1503700maxresident)k
0inputs+32outputs (0major+1322599minor)pagefaults 0swaps
OMP: Info #155: KMP_AFFINITY: Initial OS proc set respected: 0-31
OMP: Info #216: KMP_AFFINITY: decoding x2APIC ids.
OMP: Info #157: KMP_AFFINITY: 32 available OS procs
OMP: Info #158: KMP_AFFINITY: Uniform topology
OMP: Info #289: KMP_AFFINITY: topology layer "LL cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L3 cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L2 cache" is equivalent to "core".
OMP: Info #289: KMP_AFFINITY: topology layer "L1 cache" is equivalent to "core".
OMP: Info #191: KMP_AFFINITY: 2 sockets x 8 cores/socket x 2 threads/core (16 total cores)
OMP: Info #218: KMP_AFFINITY: OS proc to physical thread map:
OMP: Info #172: KMP_AFFINITY: OS proc 0 maps to socket 0 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 16 maps to socket 0 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 1 maps to socket 0 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 17 maps to socket 0 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 2 maps to socket 0 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 18 maps to socket 0 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 3 maps to socket 0 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 19 maps to socket 0 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 4 maps to socket 0 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 20 maps to socket 0 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 5 maps to socket 0 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 21 maps to socket 0 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 6 maps to socket 0 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 22 maps to socket 0 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 7 maps to socket 0 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 23 maps to socket 0 core 7 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 8 maps to socket 1 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 24 maps to socket 1 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 9 maps to socket 1 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 25 maps to socket 1 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 10 maps to socket 1 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 26 maps to socket 1 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 11 maps to socket 1 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 27 maps to socket 1 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 12 maps to socket 1 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 28 maps to socket 1 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 13 maps to socket 1 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 29 maps to socket 1 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 14 maps to socket 1 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 30 maps to socket 1 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 15 maps to socket 1 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 31 maps to socket 1 core 7 thread 1
OMP: Info #145: KMP_AFFINITY: Threads may migrate across 1 innermost levels of machine
OMP: Info #254: KMP_AFFINITY: pid 513 tid 513 thread 0 bound to OS proc set 0,16
OMP: Info #254: OMP_PROC_BIND: pid 513 tid 515 thread 10 bound to OS proc set 4,20
OMP: Info #254: OMP_PROC_BIND: pid 513 tid 516 thread 11 bound to OS proc set 7,23
OMP: Info #254: OMP_PROC_BIND: pid 513 tid 519 thread 14 bound to OS proc set 14,30
OMP: Info #254: OMP_PROC_BIND: pid 513 tid 517 thread 12 bound to OS proc set 9,25
OMP: Info #254: OMP_PROC_BIND: pid 513 tid 514 thread 9 bound to OS proc set 2,18
OMP: Info #254: OMP_PROC_BIND: pid 513 tid 518 thread 13 bound to OS proc set 12,28
Decomposition time: 49.4387
336.95user 9.99system 0:49.82elapsed 696%CPU (0avgtext+0avgdata 1505768maxresident)k
0inputs+32outputs (0major+1353870minor)pagefaults 0swaps
OMP: Info #155: KMP_AFFINITY: Initial OS proc set respected: 0-31
OMP: Info #216: KMP_AFFINITY: decoding x2APIC ids.
OMP: Info #157: KMP_AFFINITY: 32 available OS procs
OMP: Info #158: KMP_AFFINITY: Uniform topology
OMP: Info #289: KMP_AFFINITY: topology layer "LL cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L3 cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L2 cache" is equivalent to "core".
OMP: Info #289: KMP_AFFINITY: topology layer "L1 cache" is equivalent to "core".
OMP: Info #191: KMP_AFFINITY: 2 sockets x 8 cores/socket x 2 threads/core (16 total cores)
OMP: Info #218: KMP_AFFINITY: OS proc to physical thread map:
OMP: Info #172: KMP_AFFINITY: OS proc 0 maps to socket 0 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 16 maps to socket 0 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 1 maps to socket 0 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 17 maps to socket 0 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 2 maps to socket 0 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 18 maps to socket 0 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 3 maps to socket 0 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 19 maps to socket 0 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 4 maps to socket 0 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 20 maps to socket 0 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 5 maps to socket 0 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 21 maps to socket 0 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 6 maps to socket 0 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 22 maps to socket 0 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 7 maps to socket 0 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 23 maps to socket 0 core 7 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 8 maps to socket 1 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 24 maps to socket 1 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 9 maps to socket 1 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 25 maps to socket 1 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 10 maps to socket 1 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 26 maps to socket 1 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 11 maps to socket 1 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 27 maps to socket 1 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 12 maps to socket 1 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 28 maps to socket 1 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 13 maps to socket 1 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 29 maps to socket 1 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 14 maps to socket 1 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 30 maps to socket 1 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 15 maps to socket 1 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 31 maps to socket 1 core 7 thread 1
OMP: Info #145: KMP_AFFINITY: Threads may migrate across 1 innermost levels of machine
OMP: Info #254: KMP_AFFINITY: pid 576 tid 576 thread 0 bound to OS proc set 0,16
OMP: Info #254: OMP_PROC_BIND: pid 576 tid 579 thread 11 bound to OS proc set 6,22
OMP: Info #254: OMP_PROC_BIND: pid 576 tid 577 thread 9 bound to OS proc set 2,18
OMP: Info #254: OMP_PROC_BIND: pid 576 tid 580 thread 12 bound to OS proc set 8,24
OMP: Info #254: OMP_PROC_BIND: pid 576 tid 578 thread 10 bound to OS proc set 4,20
OMP: Info #254: OMP_PROC_BIND: pid 576 tid 582 thread 14 bound to OS proc set 12,28
OMP: Info #254: OMP_PROC_BIND: pid 576 tid 581 thread 13 bound to OS proc set 10,26
OMP: Info #254: OMP_PROC_BIND: pid 576 tid 583 thread 15 bound to OS proc set 14,30
Decomposition time: 45.4617
356.25user 8.21system 0:45.84elapsed 794%CPU (0avgtext+0avgdata 1505796maxresident)k
0inputs+32outputs (0major+1377109minor)pagefaults 0swaps
OMP: Info #155: KMP_AFFINITY: Initial OS proc set respected: 0-31
OMP: Info #216: KMP_AFFINITY: decoding x2APIC ids.
OMP: Info #157: KMP_AFFINITY: 32 available OS procs
OMP: Info #158: KMP_AFFINITY: Uniform topology
OMP: Info #289: KMP_AFFINITY: topology layer "LL cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L3 cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L2 cache" is equivalent to "core".
OMP: Info #289: KMP_AFFINITY: topology layer "L1 cache" is equivalent to "core".
OMP: Info #191: KMP_AFFINITY: 2 sockets x 8 cores/socket x 2 threads/core (16 total cores)
OMP: Info #218: KMP_AFFINITY: OS proc to physical thread map:
OMP: Info #172: KMP_AFFINITY: OS proc 0 maps to socket 0 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 16 maps to socket 0 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 1 maps to socket 0 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 17 maps to socket 0 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 2 maps to socket 0 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 18 maps to socket 0 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 3 maps to socket 0 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 19 maps to socket 0 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 4 maps to socket 0 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 20 maps to socket 0 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 5 maps to socket 0 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 21 maps to socket 0 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 6 maps to socket 0 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 22 maps to socket 0 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 7 maps to socket 0 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 23 maps to socket 0 core 7 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 8 maps to socket 1 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 24 maps to socket 1 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 9 maps to socket 1 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 25 maps to socket 1 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 10 maps to socket 1 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 26 maps to socket 1 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 11 maps to socket 1 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 27 maps to socket 1 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 12 maps to socket 1 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 28 maps to socket 1 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 13 maps to socket 1 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 29 maps to socket 1 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 14 maps to socket 1 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 30 maps to socket 1 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 15 maps to socket 1 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 31 maps to socket 1 core 7 thread 1
OMP: Info #145: KMP_AFFINITY: Threads may migrate across 1 innermost levels of machine
OMP: Info #254: KMP_AFFINITY: pid 625 tid 625 thread 0 bound to OS proc set 0,16
OMP: Info #254: OMP_PROC_BIND: pid 625 tid 633 thread 16 bound to OS proc set 15,31
OMP: Info #254: OMP_PROC_BIND: pid 625 tid 629 thread 12 bound to OS proc set 7,23
OMP: Info #254: OMP_PROC_BIND: pid 625 tid 628 thread 11 bound to OS proc set 5,21
OMP: Info #254: OMP_PROC_BIND: pid 625 tid 631 thread 14 bound to OS proc set 11,27
OMP: Info #254: OMP_PROC_BIND: pid 625 tid 627 thread 10 bound to OS proc set 3,19
OMP: Info #254: OMP_PROC_BIND: pid 625 tid 626 thread 9 bound to OS proc set 1,17
OMP: Info #254: OMP_PROC_BIND: pid 625 tid 632 thread 15 bound to OS proc set 13,29
OMP: Info #254: OMP_PROC_BIND: pid 625 tid 630 thread 13 bound to OS proc set 9,25
Decomposition time: 45.7095
400.62user 11.34system 0:46.08elapsed 893%CPU (0avgtext+0avgdata 1505836maxresident)k
0inputs+32outputs (0major+1331844minor)pagefaults 0swaps
OMP: Info #155: KMP_AFFINITY: Initial OS proc set respected: 0-31
OMP: Info #216: KMP_AFFINITY: decoding x2APIC ids.
OMP: Info #157: KMP_AFFINITY: 32 available OS procs
OMP: Info #158: KMP_AFFINITY: Uniform topology
OMP: Info #289: KMP_AFFINITY: topology layer "LL cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L3 cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L2 cache" is equivalent to "core".
OMP: Info #289: KMP_AFFINITY: topology layer "L1 cache" is equivalent to "core".
OMP: Info #191: KMP_AFFINITY: 2 sockets x 8 cores/socket x 2 threads/core (16 total cores)
OMP: Info #218: KMP_AFFINITY: OS proc to physical thread map:
OMP: Info #172: KMP_AFFINITY: OS proc 0 maps to socket 0 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 16 maps to socket 0 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 1 maps to socket 0 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 17 maps to socket 0 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 2 maps to socket 0 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 18 maps to socket 0 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 3 maps to socket 0 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 19 maps to socket 0 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 4 maps to socket 0 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 20 maps to socket 0 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 5 maps to socket 0 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 21 maps to socket 0 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 6 maps to socket 0 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 22 maps to socket 0 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 7 maps to socket 0 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 23 maps to socket 0 core 7 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 8 maps to socket 1 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 24 maps to socket 1 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 9 maps to socket 1 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 25 maps to socket 1 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 10 maps to socket 1 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 26 maps to socket 1 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 11 maps to socket 1 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 27 maps to socket 1 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 12 maps to socket 1 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 28 maps to socket 1 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 13 maps to socket 1 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 29 maps to socket 1 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 14 maps to socket 1 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 30 maps to socket 1 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 15 maps to socket 1 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 31 maps to socket 1 core 7 thread 1
OMP: Info #145: KMP_AFFINITY: Threads may migrate across 1 innermost levels of machine
OMP: Info #254: KMP_AFFINITY: pid 679 tid 679 thread 0 bound to OS proc set 0,16
OMP: Info #254: OMP_PROC_BIND: pid 679 tid 687 thread 16 bound to OS proc set 13,29
OMP: Info #254: OMP_PROC_BIND: pid 679 tid 680 thread 9 bound to OS proc set 1,17
OMP: Info #254: OMP_PROC_BIND: pid 679 tid 688 thread 17 bound to OS proc set 15,31
OMP: Info #254: OMP_PROC_BIND: pid 679 tid 682 thread 11 bound to OS proc set 5,21
OMP: Info #254: OMP_PROC_BIND: pid 679 tid 681 thread 10 bound to OS proc set 3,19
OMP: Info #254: OMP_PROC_BIND: pid 679 tid 686 thread 15 bound to OS proc set 11,27
OMP: Info #254: OMP_PROC_BIND: pid 679 tid 683 thread 12 bound to OS proc set 6,22
OMP: Info #254: OMP_PROC_BIND: pid 679 tid 684 thread 13 bound to OS proc set 8,24
OMP: Info #254: OMP_PROC_BIND: pid 679 tid 685 thread 14 bound to OS proc set 10,26
Decomposition time: 43.0254
421.64user 8.95system 0:43.39elapsed 992%CPU (0avgtext+0avgdata 1505868maxresident)k
0inputs+32outputs (0major+1339945minor)pagefaults 0swaps
OMP: Info #155: KMP_AFFINITY: Initial OS proc set respected: 0-31
OMP: Info #216: KMP_AFFINITY: decoding x2APIC ids.
OMP: Info #157: KMP_AFFINITY: 32 available OS procs
OMP: Info #158: KMP_AFFINITY: Uniform topology
OMP: Info #289: KMP_AFFINITY: topology layer "LL cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L3 cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L2 cache" is equivalent to "core".
OMP: Info #289: KMP_AFFINITY: topology layer "L1 cache" is equivalent to "core".
OMP: Info #191: KMP_AFFINITY: 2 sockets x 8 cores/socket x 2 threads/core (16 total cores)
OMP: Info #218: KMP_AFFINITY: OS proc to physical thread map:
OMP: Info #172: KMP_AFFINITY: OS proc 0 maps to socket 0 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 16 maps to socket 0 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 1 maps to socket 0 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 17 maps to socket 0 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 2 maps to socket 0 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 18 maps to socket 0 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 3 maps to socket 0 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 19 maps to socket 0 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 4 maps to socket 0 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 20 maps to socket 0 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 5 maps to socket 0 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 21 maps to socket 0 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 6 maps to socket 0 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 22 maps to socket 0 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 7 maps to socket 0 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 23 maps to socket 0 core 7 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 8 maps to socket 1 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 24 maps to socket 1 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 9 maps to socket 1 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 25 maps to socket 1 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 10 maps to socket 1 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 26 maps to socket 1 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 11 maps to socket 1 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 27 maps to socket 1 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 12 maps to socket 1 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 28 maps to socket 1 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 13 maps to socket 1 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 29 maps to socket 1 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 14 maps to socket 1 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 30 maps to socket 1 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 15 maps to socket 1 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 31 maps to socket 1 core 7 thread 1
OMP: Info #145: KMP_AFFINITY: Threads may migrate across 1 innermost levels of machine
OMP: Info #254: KMP_AFFINITY: pid 729 tid 729 thread 0 bound to OS proc set 0,16
OMP: Info #254: OMP_PROC_BIND: pid 729 tid 732 thread 11 bound to OS proc set 4,20
OMP: Info #254: OMP_PROC_BIND: pid 729 tid 731 thread 10 bound to OS proc set 3,19
OMP: Info #254: OMP_PROC_BIND: pid 729 tid 730 thread 9 bound to OS proc set 1,17
OMP: Info #254: OMP_PROC_BIND: pid 729 tid 737 thread 16 bound to OS proc set 12,28
OMP: Info #254: OMP_PROC_BIND: pid 729 tid 736 thread 15 bound to OS proc set 10,26
OMP: Info #254: OMP_PROC_BIND: pid 729 tid 735 thread 14 bound to OS proc set 9,25
OMP: Info #254: OMP_PROC_BIND: pid 729 tid 738 thread 17 bound to OS proc set 13,29
OMP: Info #254: OMP_PROC_BIND: pid 729 tid 733 thread 12 bound to OS proc set 6,22
OMP: Info #254: OMP_PROC_BIND: pid 729 tid 734 thread 13 bound to OS proc set 7,23
OMP: Info #254: OMP_PROC_BIND: pid 729 tid 739 thread 18 bound to OS proc set 15,31
Decomposition time: 45.3598
484.70user 14.49system 0:45.73elapsed 1091%CPU (0avgtext+0avgdata 1505920maxresident)k
0inputs+32outputs (0major+1353804minor)pagefaults 0swaps
OMP: Info #155: KMP_AFFINITY: Initial OS proc set respected: 0-31
OMP: Info #216: KMP_AFFINITY: decoding x2APIC ids.
OMP: Info #157: KMP_AFFINITY: 32 available OS procs
OMP: Info #158: KMP_AFFINITY: Uniform topology
OMP: Info #289: KMP_AFFINITY: topology layer "LL cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L3 cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L2 cache" is equivalent to "core".
OMP: Info #289: KMP_AFFINITY: topology layer "L1 cache" is equivalent to "core".
OMP: Info #191: KMP_AFFINITY: 2 sockets x 8 cores/socket x 2 threads/core (16 total cores)
OMP: Info #218: KMP_AFFINITY: OS proc to physical thread map:
OMP: Info #172: KMP_AFFINITY: OS proc 0 maps to socket 0 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 16 maps to socket 0 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 1 maps to socket 0 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 17 maps to socket 0 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 2 maps to socket 0 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 18 maps to socket 0 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 3 maps to socket 0 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 19 maps to socket 0 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 4 maps to socket 0 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 20 maps to socket 0 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 5 maps to socket 0 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 21 maps to socket 0 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 6 maps to socket 0 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 22 maps to socket 0 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 7 maps to socket 0 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 23 maps to socket 0 core 7 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 8 maps to socket 1 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 24 maps to socket 1 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 9 maps to socket 1 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 25 maps to socket 1 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 10 maps to socket 1 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 26 maps to socket 1 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 11 maps to socket 1 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 27 maps to socket 1 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 12 maps to socket 1 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 28 maps to socket 1 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 13 maps to socket 1 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 29 maps to socket 1 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 14 maps to socket 1 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 30 maps to socket 1 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 15 maps to socket 1 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 31 maps to socket 1 core 7 thread 1
OMP: Info #145: KMP_AFFINITY: Threads may migrate across 1 innermost levels of machine
OMP: Info #254: KMP_AFFINITY: pid 781 tid 781 thread 0 bound to OS proc set 0,16
OMP: Info #254: OMP_PROC_BIND: pid 781 tid 789 thread 16 bound to OS proc set 11,27
OMP: Info #254: OMP_PROC_BIND: pid 781 tid 783 thread 10 bound to OS proc set 2,18
OMP: Info #254: OMP_PROC_BIND: pid 781 tid 785 thread 12 bound to OS proc set 5,21
OMP: Info #254: OMP_PROC_BIND: pid 781 tid 791 thread 18 bound to OS proc set 14,30
OMP: Info #254: OMP_PROC_BIND: pid 781 tid 788 thread 15 bound to OS proc set 9,25
OMP: Info #254: OMP_PROC_BIND: pid 781 tid 786 thread 13 bound to OS proc set 7,23
OMP: Info #254: OMP_PROC_BIND: pid 781 tid 790 thread 17 bound to OS proc set 12,28
OMP: Info #254: OMP_PROC_BIND: pid 781 tid 784 thread 11 bound to OS proc set 4,20
OMP: Info #254: OMP_PROC_BIND: pid 781 tid 782 thread 9 bound to OS proc set 1,17
OMP: Info #254: OMP_PROC_BIND: pid 781 tid 787 thread 14 bound to OS proc set 8,24
OMP: Info #254: OMP_PROC_BIND: pid 781 tid 792 thread 19 bound to OS proc set 15,31
Decomposition time: 42.5875
500.28user 10.66system 0:42.95elapsed 1189%CPU (0avgtext+0avgdata 1505936maxresident)k
0inputs+32outputs (0major+1338681minor)pagefaults 0swaps
OMP: Info #155: KMP_AFFINITY: Initial OS proc set respected: 0-31
OMP: Info #216: KMP_AFFINITY: decoding x2APIC ids.
OMP: Info #157: KMP_AFFINITY: 32 available OS procs
OMP: Info #158: KMP_AFFINITY: Uniform topology
OMP: Info #289: KMP_AFFINITY: topology layer "LL cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L3 cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L2 cache" is equivalent to "core".
OMP: Info #289: KMP_AFFINITY: topology layer "L1 cache" is equivalent to "core".
OMP: Info #191: KMP_AFFINITY: 2 sockets x 8 cores/socket x 2 threads/core (16 total cores)
OMP: Info #218: KMP_AFFINITY: OS proc to physical thread map:
OMP: Info #172: KMP_AFFINITY: OS proc 0 maps to socket 0 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 16 maps to socket 0 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 1 maps to socket 0 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 17 maps to socket 0 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 2 maps to socket 0 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 18 maps to socket 0 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 3 maps to socket 0 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 19 maps to socket 0 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 4 maps to socket 0 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 20 maps to socket 0 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 5 maps to socket 0 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 21 maps to socket 0 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 6 maps to socket 0 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 22 maps to socket 0 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 7 maps to socket 0 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 23 maps to socket 0 core 7 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 8 maps to socket 1 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 24 maps to socket 1 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 9 maps to socket 1 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 25 maps to socket 1 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 10 maps to socket 1 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 26 maps to socket 1 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 11 maps to socket 1 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 27 maps to socket 1 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 12 maps to socket 1 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 28 maps to socket 1 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 13 maps to socket 1 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 29 maps to socket 1 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 14 maps to socket 1 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 30 maps to socket 1 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 15 maps to socket 1 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 31 maps to socket 1 core 7 thread 1
OMP: Info #145: KMP_AFFINITY: Threads may migrate across 1 innermost levels of machine
OMP: Info #254: KMP_AFFINITY: pid 833 tid 833 thread 0 bound to OS proc set 0,16
OMP: Info #254: OMP_PROC_BIND: pid 833 tid 845 thread 20 bound to OS proc set 15,31
OMP: Info #254: OMP_PROC_BIND: pid 833 tid 836 thread 11 bound to OS proc set 3,19
OMP: Info #254: OMP_PROC_BIND: pid 833 tid 835 thread 10 bound to OS proc set 2,18
OMP: Info #254: OMP_PROC_BIND: pid 833 tid 841 thread 16 bound to OS proc set 10,26
OMP: Info #254: OMP_PROC_BIND: pid 833 tid 842 thread 17 bound to OS proc set 11,27
OMP: Info #254: OMP_PROC_BIND: pid 833 tid 837 thread 12 bound to OS proc set 5,21
OMP: Info #254: OMP_PROC_BIND: pid 833 tid 844 thread 19 bound to OS proc set 14,30
OMP: Info #254: OMP_PROC_BIND: pid 833 tid 840 thread 15 bound to OS proc set 9,25
OMP: Info #254: OMP_PROC_BIND: pid 833 tid 834 thread 9 bound to OS proc set 1,17
OMP: Info #254: OMP_PROC_BIND: pid 833 tid 839 thread 14 bound to OS proc set 7,23
OMP: Info #254: OMP_PROC_BIND: pid 833 tid 843 thread 18 bound to OS proc set 13,29
OMP: Info #254: OMP_PROC_BIND: pid 833 tid 838 thread 13 bound to OS proc set 6,22
Decomposition time: 45.8237
577.67user 17.90system 0:46.19elapsed 1289%CPU (0avgtext+0avgdata 1505964maxresident)k
0inputs+32outputs (0major+1351119minor)pagefaults 0swaps
OMP: Info #155: KMP_AFFINITY: Initial OS proc set respected: 0-31
OMP: Info #216: KMP_AFFINITY: decoding x2APIC ids.
OMP: Info #157: KMP_AFFINITY: 32 available OS procs
OMP: Info #158: KMP_AFFINITY: Uniform topology
OMP: Info #289: KMP_AFFINITY: topology layer "LL cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L3 cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L2 cache" is equivalent to "core".
OMP: Info #289: KMP_AFFINITY: topology layer "L1 cache" is equivalent to "core".
OMP: Info #191: KMP_AFFINITY: 2 sockets x 8 cores/socket x 2 threads/core (16 total cores)
OMP: Info #218: KMP_AFFINITY: OS proc to physical thread map:
OMP: Info #172: KMP_AFFINITY: OS proc 0 maps to socket 0 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 16 maps to socket 0 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 1 maps to socket 0 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 17 maps to socket 0 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 2 maps to socket 0 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 18 maps to socket 0 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 3 maps to socket 0 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 19 maps to socket 0 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 4 maps to socket 0 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 20 maps to socket 0 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 5 maps to socket 0 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 21 maps to socket 0 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 6 maps to socket 0 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 22 maps to socket 0 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 7 maps to socket 0 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 23 maps to socket 0 core 7 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 8 maps to socket 1 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 24 maps to socket 1 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 9 maps to socket 1 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 25 maps to socket 1 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 10 maps to socket 1 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 26 maps to socket 1 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 11 maps to socket 1 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 27 maps to socket 1 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 12 maps to socket 1 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 28 maps to socket 1 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 13 maps to socket 1 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 29 maps to socket 1 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 14 maps to socket 1 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 30 maps to socket 1 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 15 maps to socket 1 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 31 maps to socket 1 core 7 thread 1
OMP: Info #145: KMP_AFFINITY: Threads may migrate across 1 innermost levels of machine
OMP: Info #254: KMP_AFFINITY: pid 888 tid 888 thread 0 bound to OS proc set 0,16
OMP: Info #254: OMP_PROC_BIND: pid 888 tid 900 thread 20 bound to OS proc set 14,30
OMP: Info #254: OMP_PROC_BIND: pid 888 tid 889 thread 9 bound to OS proc set 1,17
OMP: Info #254: OMP_PROC_BIND: pid 888 tid 896 thread 16 bound to OS proc set 9,25
OMP: Info #254: OMP_PROC_BIND: pid 888 tid 898 thread 18 bound to OS proc set 12,28
OMP: Info #254: OMP_PROC_BIND: pid 888 tid 901 thread 21 bound to OS proc set 15,31
OMP: Info #254: OMP_PROC_BIND: pid 888 tid 897 thread 17 bound to OS proc set 10,26
OMP: Info #254: OMP_PROC_BIND: pid 888 tid 899 thread 19 bound to OS proc set 13,29
OMP: Info #254: OMP_PROC_BIND: pid 888 tid 891 thread 11 bound to OS proc set 3,19
OMP: Info #254: OMP_PROC_BIND: pid 888 tid 890 thread 10 bound to OS proc set 2,18
OMP: Info #254: OMP_PROC_BIND: pid 888 tid 895 thread 15 bound to OS proc set 8,24
OMP: Info #254: OMP_PROC_BIND: pid 888 tid 892 thread 12 bound to OS proc set 4,20
OMP: Info #254: OMP_PROC_BIND: pid 888 tid 893 thread 13 bound to OS proc set 6,22
OMP: Info #254: OMP_PROC_BIND: pid 888 tid 894 thread 14 bound to OS proc set 7,23
Decomposition time: 43.524
595.27user 13.79system 0:43.90elapsed 1387%CPU (0avgtext+0avgdata 1508040maxresident)k
0inputs+32outputs (0major+1372193minor)pagefaults 0swaps
OMP: Info #155: KMP_AFFINITY: Initial OS proc set respected: 0-31
OMP: Info #216: KMP_AFFINITY: decoding x2APIC ids.
OMP: Info #157: KMP_AFFINITY: 32 available OS procs
OMP: Info #158: KMP_AFFINITY: Uniform topology
OMP: Info #289: KMP_AFFINITY: topology layer "LL cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L3 cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L2 cache" is equivalent to "core".
OMP: Info #289: KMP_AFFINITY: topology layer "L1 cache" is equivalent to "core".
OMP: Info #191: KMP_AFFINITY: 2 sockets x 8 cores/socket x 2 threads/core (16 total cores)
OMP: Info #218: KMP_AFFINITY: OS proc to physical thread map:
OMP: Info #172: KMP_AFFINITY: OS proc 0 maps to socket 0 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 16 maps to socket 0 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 1 maps to socket 0 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 17 maps to socket 0 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 2 maps to socket 0 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 18 maps to socket 0 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 3 maps to socket 0 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 19 maps to socket 0 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 4 maps to socket 0 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 20 maps to socket 0 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 5 maps to socket 0 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 21 maps to socket 0 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 6 maps to socket 0 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 22 maps to socket 0 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 7 maps to socket 0 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 23 maps to socket 0 core 7 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 8 maps to socket 1 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 24 maps to socket 1 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 9 maps to socket 1 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 25 maps to socket 1 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 10 maps to socket 1 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 26 maps to socket 1 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 11 maps to socket 1 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 27 maps to socket 1 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 12 maps to socket 1 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 28 maps to socket 1 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 13 maps to socket 1 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 29 maps to socket 1 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 14 maps to socket 1 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 30 maps to socket 1 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 15 maps to socket 1 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 31 maps to socket 1 core 7 thread 1
OMP: Info #145: KMP_AFFINITY: Threads may migrate across 1 innermost levels of machine
OMP: Info #254: KMP_AFFINITY: pid 953 tid 953 thread 0 bound to OS proc set 0,16
OMP: Info #254: OMP_PROC_BIND: pid 953 tid 965 thread 20 bound to OS proc set 13,29
OMP: Info #254: OMP_PROC_BIND: pid 953 tid 961 thread 16 bound to OS proc set 9,25
OMP: Info #254: OMP_PROC_BIND: pid 953 tid 955 thread 10 bound to OS proc set 2,18
OMP: Info #254: OMP_PROC_BIND: pid 953 tid 957 thread 12 bound to OS proc set 4,20
OMP: Info #254: OMP_PROC_BIND: pid 953 tid 963 thread 18 bound to OS proc set 11,27
OMP: Info #254: OMP_PROC_BIND: pid 953 tid 956 thread 11 bound to OS proc set 3,19
OMP: Info #254: OMP_PROC_BIND: pid 953 tid 958 thread 13 bound to OS proc set 5,21
OMP: Info #254: OMP_PROC_BIND: pid 953 tid 962 thread 17 bound to OS proc set 10,26
OMP: Info #254: OMP_PROC_BIND: pid 953 tid 966 thread 21 bound to OS proc set 14,30
OMP: Info #254: OMP_PROC_BIND: pid 953 tid 960 thread 15 bound to OS proc set 7,23
OMP: Info #254: OMP_PROC_BIND: pid 953 tid 959 thread 14 bound to OS proc set 6,22
OMP: Info #254: OMP_PROC_BIND: pid 953 tid 964 thread 19 bound to OS proc set 12,28
OMP: Info #254: OMP_PROC_BIND: pid 953 tid 954 thread 9 bound to OS proc set 1,17
OMP: Info #254: OMP_PROC_BIND: pid 953 tid 967 thread 22 bound to OS proc set 15,31
Decomposition time: 45.5229
663.29user 18.85system 0:45.90elapsed 1486%CPU (0avgtext+0avgdata 1508080maxresident)k
0inputs+32outputs (0major+1377498minor)pagefaults 0swaps
OMP: Info #155: KMP_AFFINITY: Initial OS proc set respected: 0-31
OMP: Info #216: KMP_AFFINITY: decoding x2APIC ids.
OMP: Info #157: KMP_AFFINITY: 32 available OS procs
OMP: Info #158: KMP_AFFINITY: Uniform topology
OMP: Info #289: KMP_AFFINITY: topology layer "LL cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L3 cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L2 cache" is equivalent to "core".
OMP: Info #289: KMP_AFFINITY: topology layer "L1 cache" is equivalent to "core".
OMP: Info #191: KMP_AFFINITY: 2 sockets x 8 cores/socket x 2 threads/core (16 total cores)
OMP: Info #218: KMP_AFFINITY: OS proc to physical thread map:
OMP: Info #172: KMP_AFFINITY: OS proc 0 maps to socket 0 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 16 maps to socket 0 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 1 maps to socket 0 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 17 maps to socket 0 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 2 maps to socket 0 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 18 maps to socket 0 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 3 maps to socket 0 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 19 maps to socket 0 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 4 maps to socket 0 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 20 maps to socket 0 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 5 maps to socket 0 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 21 maps to socket 0 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 6 maps to socket 0 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 22 maps to socket 0 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 7 maps to socket 0 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 23 maps to socket 0 core 7 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 8 maps to socket 1 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 24 maps to socket 1 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 9 maps to socket 1 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 25 maps to socket 1 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 10 maps to socket 1 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 26 maps to socket 1 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 11 maps to socket 1 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 27 maps to socket 1 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 12 maps to socket 1 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 28 maps to socket 1 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 13 maps to socket 1 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 29 maps to socket 1 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 14 maps to socket 1 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 30 maps to socket 1 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 15 maps to socket 1 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 31 maps to socket 1 core 7 thread 1
OMP: Info #145: KMP_AFFINITY: Threads may migrate across 1 innermost levels of machine
OMP: Info #254: KMP_AFFINITY: pid 1010 tid 1010 thread 0 bound to OS proc set 0,16
OMP: Info #254: OMP_PROC_BIND: pid 1010 tid 1022 thread 20 bound to OS proc set 12,28
OMP: Info #254: OMP_PROC_BIND: pid 1010 tid 1014 thread 12 bound to OS proc set 4,20
OMP: Info #254: OMP_PROC_BIND: pid 1010 tid 1012 thread 10 bound to OS proc set 2,18
OMP: Info #254: OMP_PROC_BIND: pid 1010 tid 1013 thread 11 bound to OS proc set 3,19
OMP: Info #254: OMP_PROC_BIND: pid 1010 tid 1015 thread 13 bound to OS proc set 5,21
OMP: Info #254: OMP_PROC_BIND: pid 1010 tid 1026 thread 23 bound to OS proc set 15,31
OMP: Info #254: OMP_PROC_BIND: pid 1010 tid 1018 thread 16 bound to OS proc set 8,24
OMP: Info #254: OMP_PROC_BIND: pid 1010 tid 1019 thread 17 bound to OS proc set 9,25
OMP: Info #254: OMP_PROC_BIND: pid 1010 tid 1011 thread 9 bound to OS proc set 1,17
OMP: Info #254: OMP_PROC_BIND: pid 1010 tid 1016 thread 14 bound to OS proc set 6,22
OMP: Info #254: OMP_PROC_BIND: pid 1010 tid 1021 thread 19 bound to OS proc set 11,27
OMP: Info #254: OMP_PROC_BIND: pid 1010 tid 1024 thread 22 bound to OS proc set 14,30
OMP: Info #254: OMP_PROC_BIND: pid 1010 tid 1023 thread 21 bound to OS proc set 13,29
OMP: Info #254: OMP_PROC_BIND: pid 1010 tid 1017 thread 15 bound to OS proc set 7,23
OMP: Info #254: OMP_PROC_BIND: pid 1010 tid 1020 thread 18 bound to OS proc set 10,26
Decomposition time: 43.6651
683.29user 14.49system 0:44.05elapsed 1583%CPU (0avgtext+0avgdata 1508124maxresident)k
0inputs+32outputs (0major+1404962minor)pagefaults 0swaps
OMP: Info #155: KMP_AFFINITY: Initial OS proc set respected: 0-31
OMP: Info #216: KMP_AFFINITY: decoding x2APIC ids.
OMP: Info #157: KMP_AFFINITY: 32 available OS procs
OMP: Info #158: KMP_AFFINITY: Uniform topology
OMP: Info #289: KMP_AFFINITY: topology layer "LL cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L3 cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L2 cache" is equivalent to "core".
OMP: Info #289: KMP_AFFINITY: topology layer "L1 cache" is equivalent to "core".
OMP: Info #191: KMP_AFFINITY: 2 sockets x 8 cores/socket x 2 threads/core (16 total cores)
OMP: Info #218: KMP_AFFINITY: OS proc to physical thread map:
OMP: Info #172: KMP_AFFINITY: OS proc 0 maps to socket 0 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 16 maps to socket 0 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 1 maps to socket 0 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 17 maps to socket 0 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 2 maps to socket 0 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 18 maps to socket 0 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 3 maps to socket 0 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 19 maps to socket 0 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 4 maps to socket 0 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 20 maps to socket 0 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 5 maps to socket 0 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 21 maps to socket 0 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 6 maps to socket 0 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 22 maps to socket 0 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 7 maps to socket 0 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 23 maps to socket 0 core 7 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 8 maps to socket 1 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 24 maps to socket 1 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 9 maps to socket 1 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 25 maps to socket 1 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 10 maps to socket 1 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 26 maps to socket 1 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 11 maps to socket 1 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 27 maps to socket 1 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 12 maps to socket 1 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 28 maps to socket 1 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 13 maps to socket 1 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 29 maps to socket 1 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 14 maps to socket 1 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 30 maps to socket 1 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 15 maps to socket 1 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 31 maps to socket 1 core 7 thread 1
OMP: Info #145: KMP_AFFINITY: Threads may migrate across 1 innermost levels of machine
OMP: Info #254: KMP_AFFINITY: pid 1067 tid 1067 thread 0 bound to OS proc set 0,16
OMP: Info #254: OMP_PROC_BIND: pid 1067 tid 1083 thread 24 bound to OS proc set 15,31
OMP: Info #254: OMP_PROC_BIND: pid 1067 tid 1069 thread 10 bound to OS proc set 1,17
OMP: Info #254: OMP_PROC_BIND: pid 1067 tid 1070 thread 11 bound to OS proc set 2,18
OMP: Info #254: OMP_PROC_BIND: pid 1067 tid 1074 thread 15 bound to OS proc set 6,22
OMP: Info #254: OMP_PROC_BIND: pid 1067 tid 1068 thread 9 bound to OS proc set 0,16
OMP: Info #254: OMP_PROC_BIND: pid 1067 tid 1079 thread 20 bound to OS proc set 11,27
OMP: Info #254: OMP_PROC_BIND: pid 1067 tid 1075 thread 16 bound to OS proc set 7,23
OMP: Info #254: OMP_PROC_BIND: pid 1067 tid 1071 thread 12 bound to OS proc set 3,19
OMP: Info #254: OMP_PROC_BIND: pid 1067 tid 1073 thread 14 bound to OS proc set 5,21
OMP: Info #254: OMP_PROC_BIND: pid 1067 tid 1082 thread 23 bound to OS proc set 14,30
OMP: Info #254: OMP_PROC_BIND: pid 1067 tid 1072 thread 13 bound to OS proc set 4,20
OMP: Info #254: OMP_PROC_BIND: pid 1067 tid 1076 thread 17 bound to OS proc set 8,24
OMP: Info #254: OMP_PROC_BIND: pid 1067 tid 1081 thread 22 bound to OS proc set 13,29
OMP: Info #254: OMP_PROC_BIND: pid 1067 tid 1080 thread 21 bound to OS proc set 12,28
OMP: Info #254: OMP_PROC_BIND: pid 1067 tid 1078 thread 19 bound to OS proc set 10,26
OMP: Info #254: OMP_PROC_BIND: pid 1067 tid 1077 thread 18 bound to OS proc set 9,25
Decomposition time: 47.97
788.56user 26.35system 0:48.38elapsed 1684%CPU (0avgtext+0avgdata 1508164maxresident)k
0inputs+32outputs (0major+1420390minor)pagefaults 0swaps
OMP: Info #155: KMP_AFFINITY: Initial OS proc set respected: 0-31
OMP: Info #216: KMP_AFFINITY: decoding x2APIC ids.
OMP: Info #157: KMP_AFFINITY: 32 available OS procs
OMP: Info #158: KMP_AFFINITY: Uniform topology
OMP: Info #289: KMP_AFFINITY: topology layer "LL cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L3 cache" is equivalent to "socket".
OMP: Info #289: KMP_AFFINITY: topology layer "L2 cache" is equivalent to "core".
OMP: Info #289: KMP_AFFINITY: topology layer "L1 cache" is equivalent to "core".
OMP: Info #191: KMP_AFFINITY: 2 sockets x 8 cores/socket x 2 threads/core (16 total cores)
OMP: Info #218: KMP_AFFINITY: OS proc to physical thread map:
OMP: Info #172: KMP_AFFINITY: OS proc 0 maps to socket 0 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 16 maps to socket 0 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 1 maps to socket 0 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 17 maps to socket 0 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 2 maps to socket 0 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 18 maps to socket 0 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 3 maps to socket 0 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 19 maps to socket 0 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 4 maps to socket 0 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 20 maps to socket 0 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 5 maps to socket 0 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 21 maps to socket 0 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 6 maps to socket 0 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 22 maps to socket 0 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 7 maps to socket 0 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 23 maps to socket 0 core 7 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 8 maps to socket 1 core 0 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 24 maps to socket 1 core 0 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 9 maps to socket 1 core 1 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 25 maps to socket 1 core 1 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 10 maps to socket 1 core 2 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 26 maps to socket 1 core 2 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 11 maps to socket 1 core 3 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 27 maps to socket 1 core 3 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 12 maps to socket 1 core 4 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 28 maps to socket 1 core 4 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 13 maps to socket 1 core 5 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 29 maps to socket 1 core 5 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 14 maps to socket 1 core 6 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 30 maps to socket 1 core 6 thread 1
OMP: Info #172: KMP_AFFINITY: OS proc 15 maps to socket 1 core 7 thread 0
OMP: Info #172: KMP_AFFINITY: OS proc 31 maps to socket 1 core 7 thread 1
OMP: Info #145: KMP_AFFINITY: Threads may migrate across 1 innermost levels of machine
OMP: Info #254: KMP_AFFINITY: pid 1130 tid 1130 thread 0 bound to OS proc set 0,16
OMP: Info #254: OMP_PROC_BIND: pid 1130 tid 1146 thread 24 bound to OS proc set 14,30
OMP: Info #254: OMP_PROC_BIND: pid 1130 tid 1147 thread 25 bound to OS proc set 15,31
OMP: Info #254: OMP_PROC_BIND: pid 1130 tid 1134 thread 12 bound to OS proc set 3,19
OMP: Info #254: OMP_PROC_BIND: pid 1130 tid 1132 thread 10 bound to OS proc set 1,17
OMP: Info #254: OMP_PROC_BIND: pid 1130 tid 1138 thread 16 bound to OS proc set 7,23
OMP: Info #254: OMP_PROC_BIND: pid 1130 tid 1133 thread 11 bound to OS proc set 2,18
OMP: Info #254: OMP_PROC_BIND: pid 1130 tid 1140 thread 18 bound to OS proc set 8,24
OMP: Info #254: OMP_PROC_BIND: pid 1130 tid 1142 thread 20 bound to OS proc set 10,26
OMP: Info #254: OMP_PROC_BIND: pid 1130 tid 1139 thread 17 bound to OS proc set 8,24
OMP: Info #254: OMP_PROC_BIND: pid 1130 tid 1145 thread 23 bound to OS proc set 13,29
OMP: Info #254: OMP_PROC_BIND: pid 1130 tid 1136 thread 14 bound to OS proc set 5,21
OMP: Info #254: OMP_PROC_BIND: pid 1130 tid 1137 thread 15 bound to OS proc set 6,22
OMP: Info #254: OMP_PROC_BIND: pid 1130 tid 1131 thread 9 bound to OS proc set 0,16
OMP: Info #254: OMP_PROC_BIND: pid 1130 tid 1141 thread 19 bound to OS proc set 9,25
OMP: Info #254: OMP_PROC_BIND: pid 1130 tid 1135 thread 13 bound to OS proc set 4,20
OMP: Info #254: OMP_PROC_BIND: pid 1130 tid 1144 thread 22 bound to OS proc set 12,28
OMP: Info #254: OMP_PROC_BIND: pid 1130 tid 1143 thread 21 bound to OS proc set 11,27
Decomposition time: 45.8397
802.42user 22.15system 0:46.26elapsed 1782%CPU (0avgtext+0avgdata 1508216maxresident)k
0inputs+32outputs (0major+1435853minor)pagefaults 0swaps
OMP: Info #155: KMP_AFFINITY: Initial OS proc set respected: 0-31