diff options
| author | iximeow <me@iximeow.net> | 2026-05-03 17:48:14 +0000 |
|---|---|---|
| committer | iximeow <me@iximeow.net> | 2026-05-03 17:49:02 +0000 |
| commit | 6eb2af6a3aba7bfad21775319c3a200c5c723918 (patch) | |
| tree | 00d307baf7ac5bed92ba6bc11697221abaeaa6f0 /src/protected_mode | |
| parent | 7931275f666a083f68276d84e68f5510836352ff (diff) | |
actually support avx/f16c in per-uarch decoding
Diffstat (limited to 'src/protected_mode')
| -rw-r--r-- | src/protected_mode/uarch.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/protected_mode/uarch.rs b/src/protected_mode/uarch.rs index 6914348..7221747 100644 --- a/src/protected_mode/uarch.rs +++ b/src/protected_mode/uarch.rs @@ -145,6 +145,7 @@ pub mod amd { .with_rdrand() .with_rdseed() .with_fma3() + .with_f16c() .with_xsavec() .with_xsaves() @@ -271,6 +272,7 @@ pub mod intel { .with_abm() .with_fma3() .with_avx2() + .with_f16c() } /// `Haswell-EX` was a variant of `Haswell` launched in 2015 with functional TSX. these cores |
