Lists the CPU Information for the Current Machine
cpu_info()A data.frame (tibble) with the two columns field and value.
For most CPUs, there will be duplicated field:s.
This function reads/queries /proc/cpuinfo on the current machine.
info <- cpu_info()
print(info)
#> # A tibble: 41 × 2
#> field value
#> <chr> <chr>
#> 1 hostname runnervm3jd5f
#> 2 processor 0
#> 3 vendor_id vendor_GenuineIntel
#> 4 cpu_family 6
#> 5 model 207
#> 6 model_name INTEL(R) XEON(R) PLATINUM 8573C
#> 7 stepping 2
#> 8 microcode 0xffffffff
#> 9 cpu_mhz 3600.359
#> 10 cache_size 266240 KB
#> # ℹ 31 more rows