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: 40 × 2
#>    field      value                          
#>    <chr>      <chr>                          
#>  1 hostname   fv-az1536-86                   
#>  2 processor  0                              
#>  3 vendor_id  vendor_AuthenticAMD            
#>  4 cpu_family 25                             
#>  5 model      1                              
#>  6 model_name AMD EPYC 7763 64-Core Processor
#>  7 stepping   1                              
#>  8 microcode  0xffffffff                     
#>  9 cpu_mhz    2445.426                       
#> 10 cache_size 512 KB                         
#> # ℹ 30 more rows