Lists the CPU Information for the Current Machine
lscpu()
A data.frame (tibble) with the two columns field
and value
.
For most CPUs, there will be duplicated field
:s.
This function queries lscpu
on the current machine.
info <- lscpu()
#> Warning: 31 parsing failures.
#> row col expected actual file
#> 2 -- 2 columns 4 columns <connection>
#> 3 -- 2 columns 8 columns <connection>
#> 4 -- 2 columns 4 columns <connection>
#> 6 -- 2 columns 4 columns <connection>
#> 7 -- 2 columns 3 columns <connection>
#> ... ... ......... ......... ............
#> See problems(...) for more details.
print(info)
#> # A tibble: 38 × 2
#> field value
#> <chr> <chr>
#> 1 architecture x86_64
#> 2 cpu op-mode(s):
#> 3 address sizes:
#> 4 byte Order:
#> 5 cpus 4
#> 6 on_line CPU(s)
#> 7 vendor ID:
#> 8 model name:
#> 9 cpu family:
#> 10 model 1
#> # ℹ 28 more rows