Skip to content

Commit

Permalink
Add recent implementation to cli tool
Browse files Browse the repository at this point in the history
  • Loading branch information
mert-kurttutan committed Jul 17, 2024
1 parent d9d9e8b commit be8a00f
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/display.rs
Original file line number Diff line number Diff line change
Expand Up @@ -581,6 +581,19 @@ pub fn markdown<R: crate::CpuIdReader>(cpuid: crate::CpuId<R>) {
),
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()),
],
);
}
Expand Down

0 comments on commit be8a00f

Please sign in to comment.