File: t_gantt_io.dat

package info (click to toggle)
verilator 5.038-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 162,552 kB
  • sloc: cpp: 139,204; python: 20,931; ansic: 10,222; yacc: 6,000; lex: 1,925; makefile: 1,260; sh: 494; perl: 282; fortran: 22
file content (943 lines) | stat: -rw-r--r-- 64,756 bytes parent folder | download
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
VLPROFVERSION 2.0
VLPROF arg +verilator+prof+exec+start+2
VLPROF arg +verilator+prof+exec+window+2
VLPROF info numa 0,1,4,5;2,3,6,7
VLPROF stat yields 0
VLPROF stat threads 2
VLPROFPROC processor    : 0
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 2134.599
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 0
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 0
VLPROFPROC initial apicid       : 0
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 1
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 1932.526
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 1
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 2
VLPROFPROC initial apicid       : 2
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 2
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 1862.405
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 2
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 4
VLPROFPROC initial apicid       : 4
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 3
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 1862.009
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 3
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 6
VLPROFPROC initial apicid       : 6
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 4
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 2195.832
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 4
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 8
VLPROFPROC initial apicid       : 8
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 5
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 2190.061
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 5
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 10
VLPROFPROC initial apicid       : 10
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 6
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 2203.924
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 6
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 12
VLPROFPROC initial apicid       : 12
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 7
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 2193.174
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 7
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 14
VLPROFPROC initial apicid       : 14
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 8
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 2203.449
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 8
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 16
VLPROFPROC initial apicid       : 16
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 9
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 2197.717
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 9
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 18
VLPROFPROC initial apicid       : 18
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 10
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 2195.928
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 10
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 20
VLPROFPROC initial apicid       : 20
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 11
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 1964.149
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 11
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 22
VLPROFPROC initial apicid       : 22
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 12
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 2194.738
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 12
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 24
VLPROFPROC initial apicid       : 24
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 13
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 2194.821
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 13
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 26
VLPROFPROC initial apicid       : 26
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 14
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 2196.191
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 14
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 28
VLPROFPROC initial apicid       : 28
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 15
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 2198.063
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 15
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 30
VLPROFPROC initial apicid       : 30
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 16
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 2152.652
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 0
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 1
VLPROFPROC initial apicid       : 1
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 17
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 2257.474
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 1
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 3
VLPROFPROC initial apicid       : 3
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 18
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 1862.896
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 2
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 5
VLPROFPROC initial apicid       : 5
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 19
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 1863.193
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 3
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 7
VLPROFPROC initial apicid       : 7
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 20
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 2189.303
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 4
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 9
VLPROFPROC initial apicid       : 9
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 21
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 2194.584
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 5
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 11
VLPROFPROC initial apicid       : 11
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 22
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 2195.060
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 6
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 13
VLPROFPROC initial apicid       : 13
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 23
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 2189.319
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 7
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 15
VLPROFPROC initial apicid       : 15
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 24
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 2195.031
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 8
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 17
VLPROFPROC initial apicid       : 17
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 25
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 2555.092
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 9
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 19
VLPROFPROC initial apicid       : 19
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 26
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 2191.830
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 10
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 21
VLPROFPROC initial apicid       : 21
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 27
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 2194.661
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 11
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 23
VLPROFPROC initial apicid       : 23
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 28
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 2194.445
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 12
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 25
VLPROFPROC initial apicid       : 25
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 29
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 2194.786
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 13
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 27
VLPROFPROC initial apicid       : 27
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 30
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 2189.282
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 14
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 29
VLPROFPROC initial apicid       : 29
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFPROC processor    : 31
VLPROFPROC vendor_id    : AuthenticTest
VLPROFPROC cpu family   : 23
VLPROFPROC model                : 113
VLPROFPROC model name   : Test Ryzen 9 3950X 16-Core Processor
VLPROFPROC stepping     : 0
VLPROFPROC microcode    : 0x8701013
VLPROFPROC cpu MHz              : 2195.563
VLPROFPROC cache size   : 512 KB
VLPROFPROC physical id  : 0
VLPROFPROC siblings     : 32
VLPROFPROC core id              : 15
VLPROFPROC cpu cores    : 16
VLPROFPROC apicid               : 31
VLPROFPROC initial apicid       : 31
VLPROFPROC fpu          : yes
VLPROFPROC fpu_exception        : yes
VLPROFPROC cpuid level  : 16
VLPROFPROC wp           : yes
VLPROFPROC flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate sme ssbd mba sev ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif umip rdpid overflow_recov succor smca
VLPROFPROC bugs         : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
VLPROFPROC bogomips     : 6987.10
VLPROFPROC TLB size     : 3072 4K pages
VLPROFPROC clflush size : 64
VLPROFPROC cache_alignment      : 64
VLPROFPROC address sizes        : 43 bits physical, 48 bits virtual
VLPROFPROC power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
VLPROFPROC 
VLPROFTHREAD 0
VLPROFEXEC EXEC_GRAPH_BEGIN 945
VLPROFEXEC MTASK_BEGIN 2695 id 6 predictStart 0 cpu 19
VLPROFEXEC MTASK_BEGIN 3795 id 10 predictStart 196 cpu 19 hierBlock sub
VLPROFEXEC MTASK_END 4850 predictCost 30
VLPROFEXEC MTASK_END 5905 predictCost 30
VLPROFEXEC MTASK_BEGIN 9695 id 10 predictStart 196 cpu 19
VLPROFEXEC MTASK_END 9870 predictCost 30
VLPROFEXEC EXEC_GRAPH_END 12180
VLPROFEXEC EXEC_GRAPH_BEGIN 14000
VLPROFEXEC MTASK_BEGIN 15610 id 6 predictStart 0 cpu 19
VLPROFEXEC MTASK_END 15820 predictCost 30
VLPROFEXEC THREAD_SCHEDULE_WAIT_BEGIN 20000 cpu 19
VLPROFEXEC THREAD_SCHEDULE_WAIT_END 21000 cpu 19
VLPROFEXEC MTASK_BEGIN 21700 id 10 predictStart 196 cpu 19
VLPROFEXEC MTASK_END 21875 predictCost 30
VLPROFEXEC EXEC_GRAPH_END 22085
VLPROFTHREAD 1
VLPROFEXEC MTASK_BEGIN 5495 id 5 predictStart 0 cpu 10
VLPROFEXEC MTASK_END 6090 predictCost 30
VLPROFEXEC MTASK_BEGIN 6300 id 7 predictStart 30 cpu 10
VLPROFEXEC MTASK_END 6895 predictCost 30
VLPROFEXEC MTASK_BEGIN 7490 id 8 predictStart 60 cpu 10
VLPROFEXEC MTASK_END 8540 predictCost 107
VLPROFEXEC MTASK_BEGIN 9135 id 9 predictStart 167 cpu 10
VLPROFEXEC MTASK_END 9730 predictCost 30
VLPROFEXEC MTASK_BEGIN 10255 id 11 predictStart 197 cpu 10
VLPROFEXEC MTASK_END 11060 predictCost 30
VLPROFEXEC MTASK_BEGIN 18375 id 5 predictStart 0 cpu 10
VLPROFEXEC MTASK_END 18970 predictCost 30
VLPROFEXEC MTASK_BEGIN 19145 id 7 predictStart 30 cpu 10
VLPROFEXEC MTASK_END 19320 predictCost 30
VLPROFEXEC MTASK_BEGIN 19670 id 8 predictStart 60 cpu 10
VLPROFEXEC MTASK_END 19810 predictCost 107
VLPROFEXEC MTASK_BEGIN 20650 id 9 predictStart 167 cpu 10
VLPROFEXEC MTASK_END 20720 predictCost 30
VLPROFEXEC MTASK_BEGIN 21140 id 11 predictStart 197 cpu 10
VLPROFEXEC MTASK_END 21245 predictCost 30
VLPROFEXEC THREAD_SCHEDULE_WAIT_BEGIN 22000 cpu 10
VLPROFEXEC THREAD_SCHEDULE_WAIT_END 23000 cpu 10
VLPROF stat ticks 23415