[PATCH] cpu_map: Add missing feature "avx-vnni-int16"

Tim Wiederhake posted 1 patch 2 months, 4 weeks ago
src/cpu_map/x86_features.xml | 3 +++
1 file changed, 3 insertions(+)
[PATCH] cpu_map: Add missing feature "avx-vnni-int16"
Posted by Tim Wiederhake 2 months, 4 weeks ago
Introduced in qemu commit 138c3377a9b27accec516b2c0da90dedef98a780.

Signed-off-by: Tim Wiederhake <twiederh@redhat.com>
---
 src/cpu_map/x86_features.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/cpu_map/x86_features.xml b/src/cpu_map/x86_features.xml
index 19904f2e22..08bf014604 100644
--- a/src/cpu_map/x86_features.xml
+++ b/src/cpu_map/x86_features.xml
@@ -463,6 +463,9 @@
   <feature name='amx-complex'>
     <cpuid eax_in='0x00000007' ecx_in='0x00000001' edx='0x00000100'/>
   </feature>
+  <feature name='avx-vnni-int16'>
+    <cpuid eax_in='0x00000007' ecx_in='0x00000001' edx='0x00000400'/>
+  </feature>
   <feature name='prefetchiti'>
     <cpuid eax_in='0x00000007' ecx_in='0x00000001' edx='0x00004000'/>
   </feature>
-- 
2.43.0
Re: [PATCH] cpu_map: Add missing feature "avx-vnni-int16"
Posted by Michal Prívozník 2 months, 4 weeks ago
On 8/26/24 11:54, Tim Wiederhake wrote:
> Introduced in qemu commit 138c3377a9b27accec516b2c0da90dedef98a780.
> 
> Signed-off-by: Tim Wiederhake <twiederh@redhat.com>
> ---
>  src/cpu_map/x86_features.xml | 3 +++
>  1 file changed, 3 insertions(+)
> 

Reviewed-by: Michal Privoznik <mprivozn@redhat.com>

Michal