From a683490a475d446b7b2094895c34773ec27594a6 Mon Sep 17 00:00:00 2001 From: mert-kurttutan Date: Wed, 17 Jul 2024 22:49:01 +0200 Subject: [PATCH] Add recent implementation to cli tool --- src/display.rs | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/display.rs b/src/display.rs index dba2ca7..d3fd4df 100644 --- a/src/display.rs +++ b/src/display.rs @@ -581,6 +581,19 @@ pub fn markdown(cpuid: crate::CpuId) { ), RowGen::tuple("RDPID: read processor ID", info.has_rdpid()), RowGen::tuple("SGX_LC: SGX launch config", info.has_sgx_lc()), + RowGen::tuple( + "AVX_VNNI: AVX vector neural network instructions", + info.has_avx_vnni(), + ), + RowGen::tuple( + "AVX512_BF16: AVX512 BF16 instructions", + info.has_avx512_bf16(), + ), + RowGen::tuple("FZRMK: fast zero-length REP MOVSB256", info.has_fzrm()), + RowGen::tuple("FSRM: fast short REP STOSB", info.has_fsrs()), + RowGen::tuple("FSRCRS: fast short REP CMPSB, REP SCASB", info.has_fsrcrs()), + RowGen::tuple("HRESET: HRESET instruction", info.has_hreset()), + RowGen::tuple("CET_SSS: CET_SSS support", info.has_cet_sss()), ], ); }