Include processor information in verilator_gantt data file.
This commit is contained in:
parent
35eac0c457
commit
d09b6a7d2c
1
Changes
1
Changes
|
|
@ -11,6 +11,7 @@ contributors that suggested a given feature are shown in []. Thanks!
|
||||||
Verilator 4.213 devel
|
Verilator 4.213 devel
|
||||||
==========================
|
==========================
|
||||||
|
|
||||||
|
* Include processor information in verilator_gantt data file.
|
||||||
* Fix verilator_profcfunc profile accounting (#3115).
|
* Fix verilator_profcfunc profile accounting (#3115).
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,6 @@ use Pod::Usage;
|
||||||
use vars qw($Debug);
|
use vars qw($Debug);
|
||||||
|
|
||||||
$Debug = 0;
|
$Debug = 0;
|
||||||
my $Opt_Cpuinfo = "/proc/cpuinfo";
|
|
||||||
my $Opt_File;
|
my $Opt_File;
|
||||||
my $Opt_Time_Per_Char = 0; # rdtsc ticks per char in gantt chart, 0=auto
|
my $Opt_Time_Per_Char = 0; # rdtsc ticks per char in gantt chart, 0=auto
|
||||||
my $opt_vcd = "profile_threads.vcd";
|
my $opt_vcd = "profile_threads.vcd";
|
||||||
|
|
@ -24,7 +23,6 @@ autoflush STDERR 1;
|
||||||
Getopt::Long::config("no_auto_abbrev");
|
Getopt::Long::config("no_auto_abbrev");
|
||||||
if (! GetOptions(
|
if (! GetOptions(
|
||||||
"help" => \&usage,
|
"help" => \&usage,
|
||||||
"cpuinfo=s" => \$Opt_Cpuinfo, # Testing, not documented
|
|
||||||
"scale=i" => \$Opt_Time_Per_Char,
|
"scale=i" => \$Opt_Time_Per_Char,
|
||||||
"debug" => sub { $Debug = 1; },
|
"debug" => sub { $Debug = 1; },
|
||||||
"vcd=s" => \$opt_vcd,
|
"vcd=s" => \$opt_vcd,
|
||||||
|
|
@ -62,7 +60,6 @@ sub process {
|
||||||
my $filename = shift;
|
my $filename = shift;
|
||||||
|
|
||||||
read_data($filename);
|
read_data($filename);
|
||||||
read_cpuinfo($Opt_Cpuinfo);
|
|
||||||
report();
|
report();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -74,6 +71,8 @@ sub read_data {
|
||||||
%Global = (rdtsc_cycle_time => 0);
|
%Global = (rdtsc_cycle_time => 0);
|
||||||
|
|
||||||
my $fh = IO::File->new("<$filename") or die "%Error: $! $filename,";
|
my $fh = IO::File->new("<$filename") or die "%Error: $! $filename,";
|
||||||
|
|
||||||
|
my $cpu;
|
||||||
while (my $line = $fh->getline) {
|
while (my $line = $fh->getline) {
|
||||||
if ($line =~ m/VLPROF mtask\s(\d+)\sstart\s(\d+)\send\s(\d+)\selapsed\s(\d+)\spredict_time\s(\d+)\scpu\s(\d+)\son thread (\d+)/) {
|
if ($line =~ m/VLPROF mtask\s(\d+)\sstart\s(\d+)\send\s(\d+)\selapsed\s(\d+)\spredict_time\s(\d+)\scpu\s(\d+)\son thread (\d+)/) {
|
||||||
my $mtask = $1;
|
my $mtask = $1;
|
||||||
|
|
@ -102,6 +101,16 @@ sub read_data {
|
||||||
elsif ($line =~ m/VLPROF stat\s+(\S+)\s+([0-9.]+)/) {
|
elsif ($line =~ m/VLPROF stat\s+(\S+)\s+([0-9.]+)/) {
|
||||||
$Global{stats}{$1} = $2;
|
$Global{stats}{$1} = $2;
|
||||||
}
|
}
|
||||||
|
elsif ($line =~ m/^VLPROFPROC processor\s*:\s*(\d+)\s*$/) {
|
||||||
|
$cpu = $1;
|
||||||
|
}
|
||||||
|
elsif (defined $cpu && $line =~ m/^VLPROFPROC ([a-z_ ]+)\s*:\s*(.*)$/) {
|
||||||
|
my ($term, $value) = ($1, $2);
|
||||||
|
$term =~ s/\s+$//;
|
||||||
|
$term =~ s/\s+/_/;
|
||||||
|
$value =~ s/\s+$//;
|
||||||
|
$Global{cpuinfo}{$cpu}{$term} = $value;
|
||||||
|
}
|
||||||
elsif ($line =~ /^#/) {}
|
elsif ($line =~ /^#/) {}
|
||||||
elsif ($Debug) {
|
elsif ($Debug) {
|
||||||
chomp $line;
|
chomp $line;
|
||||||
|
|
@ -116,25 +125,6 @@ sub read_data {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
sub read_cpuinfo {
|
|
||||||
my $filename = shift;
|
|
||||||
my $fh = IO::File->new("<$filename") or return;
|
|
||||||
my $cpu;
|
|
||||||
while (my $line = $fh->getline) {
|
|
||||||
chomp $line;
|
|
||||||
if ($line =~ m/^processor\s*:\s*(\d+)\s*$/) {
|
|
||||||
$cpu = $1;
|
|
||||||
}
|
|
||||||
if ($cpu && $line =~ m/^([a-z_ ]+)\s*:\s*(.*)$/) {
|
|
||||||
my ($term, $value) = ($1, $2);
|
|
||||||
$term =~ s/\s+$//;
|
|
||||||
$term =~ s/\s+/_/;
|
|
||||||
$value =~ s/\s+$//;
|
|
||||||
$Global{cpuinfo}{$cpu}{$term} = $value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#######################################################################
|
#######################################################################
|
||||||
|
|
||||||
sub report {
|
sub report {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
#include "verilated_threads.h"
|
#include "verilated_threads.h"
|
||||||
|
|
||||||
#include <cstdio>
|
#include <cstdio>
|
||||||
|
#include <fstream>
|
||||||
|
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
// Globals
|
// Globals
|
||||||
|
|
@ -167,6 +168,16 @@ void VlThreadPool::profileDump(const char* filenamep, vluint64_t ticksElapsed)
|
||||||
Verilated::threadContextp()->profThreadsWindow());
|
Verilated::threadContextp()->profThreadsWindow());
|
||||||
fprintf(fp, "VLPROF stat yields %" VL_PRI64 "u\n", VlMTaskVertex::yields());
|
fprintf(fp, "VLPROF stat yields %" VL_PRI64 "u\n", VlMTaskVertex::yields());
|
||||||
|
|
||||||
|
// Copy /proc/cpuinfo into this output so verilator_gantt can be run on
|
||||||
|
// a different machine
|
||||||
|
{
|
||||||
|
const std::unique_ptr<std::ifstream> ifp{new std::ifstream("/proc/cpuinfo")};
|
||||||
|
if (!ifp->fail()) {
|
||||||
|
std::string line;
|
||||||
|
while (std::getline(*ifp, line)) { fprintf(fp, "VLPROFPROC %s\n", line.c_str()); }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
vluint32_t thread_id = 0;
|
vluint32_t thread_id = 0;
|
||||||
for (const auto& pi : m_allProfiles) {
|
for (const auto& pi : m_allProfiles) {
|
||||||
++thread_id;
|
++thread_id;
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,901 @@ VLPROF arg --threads 2
|
||||||
VLPROF arg +verilator+prof+threads+start+2
|
VLPROF arg +verilator+prof+threads+start+2
|
||||||
VLPROF arg +verilator+prof+threads+window+2
|
VLPROF arg +verilator+prof+threads+window+2
|
||||||
VLPROF stat yields 1
|
VLPROF stat yields 1
|
||||||
|
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 : 2203.060
|
||||||
|
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 : 2192.482
|
||||||
|
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 : 2195.034
|
||||||
|
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 : 2195.861
|
||||||
|
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.736
|
||||||
|
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 : 2192.116
|
||||||
|
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 : 2195.236
|
||||||
|
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 : 2194.216
|
||||||
|
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 : 2197.502
|
||||||
|
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 : 2194.929
|
||||||
|
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 : 2194.423
|
||||||
|
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 : 2193.157
|
||||||
|
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 : 2182.263
|
||||||
|
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 : 2509.976
|
||||||
|
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 : 2179.424
|
||||||
|
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 : 2183.384
|
||||||
|
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 : 2193.777
|
||||||
|
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 : 2190.659
|
||||||
|
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 : 2189.525
|
||||||
|
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 : 2195.475
|
||||||
|
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 : 2187.858
|
||||||
|
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 : 2195.358
|
||||||
|
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.161
|
||||||
|
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 : 2187.812
|
||||||
|
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.371
|
||||||
|
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 : 2195.530
|
||||||
|
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.688
|
||||||
|
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 : 2195.968
|
||||||
|
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 : 2018.474
|
||||||
|
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 : 2249.337
|
||||||
|
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 : 1865.493
|
||||||
|
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 : 2015.595
|
||||||
|
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]
|
||||||
VLPROF mtask 6 start 595 end 735 elapsed 140 predict_time 30 cpu 1 on thread 1
|
VLPROF mtask 6 start 595 end 735 elapsed 140 predict_time 30 cpu 1 on thread 1
|
||||||
VLPROF mtask 10 start 8120 end 8260 elapsed 140 predict_time 30 cpu 1 on thread 1
|
VLPROF mtask 10 start 8120 end 8260 elapsed 140 predict_time 30 cpu 1 on thread 1
|
||||||
VLPROF mtask 6 start 11970 end 12075 elapsed 105 predict_time 30 cpu 1 on thread 1
|
VLPROF mtask 6 start 11970 end 12075 elapsed 105 predict_time 30 cpu 1 on thread 1
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,7 @@ Statistics:
|
||||||
e ^ stddev = 1.754
|
e ^ stddev = 1.754
|
||||||
|
|
||||||
CPUs:
|
CPUs:
|
||||||
cpu 1: cpu_time=525 socket=0 core=1 AMD Ryzen 9 3950X 16-Core Processor
|
cpu 1: cpu_time=525 socket=0 core=1 Test Ryzen 9 3950X 16-Core Processor
|
||||||
cpu 16: cpu_time=2905 socket=0 core=0 AMD Ryzen 9 3950X 16-Core Processor
|
cpu 16: cpu_time=2905 socket=0 core=0 Test Ryzen 9 3950X 16-Core Processor
|
||||||
|
|
||||||
Writing profile_threads.vcd
|
Writing profile_threads.vcd
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,6 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
|
||||||
scenarios(dist => 1);
|
scenarios(dist => 1);
|
||||||
|
|
||||||
run(cmd => ["cd $Self->{obj_dir} && $ENV{VERILATOR_ROOT}/bin/verilator_gantt"
|
run(cmd => ["cd $Self->{obj_dir} && $ENV{VERILATOR_ROOT}/bin/verilator_gantt"
|
||||||
." --cpuinfo $Self->{t_dir}/t_gantt_io_cpuinfo.dat"
|
|
||||||
." $Self->{t_dir}/t_gantt_io.dat > gantt.log"],
|
." $Self->{t_dir}/t_gantt_io.dat > gantt.log"],
|
||||||
check_finished => 0);
|
check_finished => 0);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,896 +0,0 @@
|
||||||
processor : 0
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2203.060
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 0
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 0
|
|
||||||
initial apicid : 0
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 1
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2192.482
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 1
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 2
|
|
||||||
initial apicid : 2
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 2
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2195.034
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 2
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 4
|
|
||||||
initial apicid : 4
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 3
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2195.861
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 3
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 6
|
|
||||||
initial apicid : 6
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 4
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2195.736
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 4
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 8
|
|
||||||
initial apicid : 8
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 5
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2192.116
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 5
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 10
|
|
||||||
initial apicid : 10
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 6
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2195.236
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 6
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 12
|
|
||||||
initial apicid : 12
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 7
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2194.216
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 7
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 14
|
|
||||||
initial apicid : 14
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 8
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2197.502
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 8
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 16
|
|
||||||
initial apicid : 16
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 9
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2194.929
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 9
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 18
|
|
||||||
initial apicid : 18
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 10
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2194.423
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 10
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 20
|
|
||||||
initial apicid : 20
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 11
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2193.157
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 11
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 22
|
|
||||||
initial apicid : 22
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 12
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2182.263
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 12
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 24
|
|
||||||
initial apicid : 24
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 13
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2509.976
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 13
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 26
|
|
||||||
initial apicid : 26
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 14
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2179.424
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 14
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 28
|
|
||||||
initial apicid : 28
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 15
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2183.384
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 15
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 30
|
|
||||||
initial apicid : 30
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 16
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2193.777
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 0
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 1
|
|
||||||
initial apicid : 1
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 17
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2190.659
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 1
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 3
|
|
||||||
initial apicid : 3
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 18
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2189.525
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 2
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 5
|
|
||||||
initial apicid : 5
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 19
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2195.475
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 3
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 7
|
|
||||||
initial apicid : 7
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 20
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2187.858
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 4
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 9
|
|
||||||
initial apicid : 9
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 21
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2195.358
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 5
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 11
|
|
||||||
initial apicid : 11
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 22
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2195.161
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 6
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 13
|
|
||||||
initial apicid : 13
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 23
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2187.812
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 7
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 15
|
|
||||||
initial apicid : 15
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 24
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2195.371
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 8
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 17
|
|
||||||
initial apicid : 17
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 25
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2195.530
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 9
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 19
|
|
||||||
initial apicid : 19
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 26
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2191.688
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 10
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 21
|
|
||||||
initial apicid : 21
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 27
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2195.968
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 11
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 23
|
|
||||||
initial apicid : 23
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 28
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2018.474
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 12
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 25
|
|
||||||
initial apicid : 25
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 29
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2249.337
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 13
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 27
|
|
||||||
initial apicid : 27
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 30
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 1865.493
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 14
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 29
|
|
||||||
initial apicid : 29
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
processor : 31
|
|
||||||
vendor_id : AuthenticAMD
|
|
||||||
cpu family : 23
|
|
||||||
model : 113
|
|
||||||
model name : AMD Ryzen 9 3950X 16-Core Processor
|
|
||||||
stepping : 0
|
|
||||||
microcode : 0x8701013
|
|
||||||
cpu MHz : 2015.595
|
|
||||||
cache size : 512 KB
|
|
||||||
physical id : 0
|
|
||||||
siblings : 32
|
|
||||||
core id : 15
|
|
||||||
cpu cores : 16
|
|
||||||
apicid : 31
|
|
||||||
initial apicid : 31
|
|
||||||
fpu : yes
|
|
||||||
fpu_exception : yes
|
|
||||||
cpuid level : 16
|
|
||||||
wp : yes
|
|
||||||
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
|
|
||||||
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
|
|
||||||
bogomips : 6987.10
|
|
||||||
TLB size : 3072 4K pages
|
|
||||||
clflush size : 64
|
|
||||||
cache_alignment : 64
|
|
||||||
address sizes : 43 bits physical, 48 bits virtual
|
|
||||||
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
|
|
||||||
|
|
||||||
Loading…
Reference in New Issue