Lists the CPU Information for the Current Machine

cpu_info()

Value

A data.frame (tibble) with the two columns field and value. For most CPUs, there will be duplicated field:s.

Details

This function reads/queries /proc/cpuinfo on the current machine.

See also

Examples

info <- cpu_info()
print(info)
#> # A tibble: 39 × 2
#>    field      value                          
#>    <chr>      <chr>                          
#>  1 hostname   runnervm3jyl0                  
#>  2 processor  0                              
#>  3 vendor_id  vendor_AuthenticAMD            
#>  4 cpu_family 25                             
#>  5 model      17                             
#>  6 model_name AMD EPYC 9V74 80-Core Processor
#>  7 stepping   1                              
#>  8 microcode  0xffffffff                     
#>  9 cpu_mhz    2871.465                       
#> 10 cache_size 1024 KB                        
#> # ℹ 29 more rows