Cpu name from Julia

Hi,
Is it possible to get the cpu name with Julia ?
I tried CpuId.jl but it returns a lot of information which I am not able extract…

1 Like
julia> Sys.cpu_info()[1].model
"Intel(R) Core(TM) i9-9880H CPU @ 2.30GHz"
7 Likes

If you just want to know the family, you can use:

julia> Sys.CPU_NAME
 "cascadelake"
3 Likes

Thank you very much @pbayer and @Elrod !!

1 Like

Please have a look at archspec https://github.com/archspec/archspec

Could/should Julia align with this