diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2024-07-03 13:42:49 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2024-07-03 18:41:26 +0200 |
commit | 138c3377a9b27accec516b2c0da90dedef98a780 (patch) | |
tree | 2b69a33fccc480e4c9d8ffa944c1d4f3f792f631 /target/i386 | |
parent | f4e5f302b3361f13349b2a44378e7cf578a8e012 (diff) | |
download | qemu-138c3377a9b27accec516b2c0da90dedef98a780.zip qemu-138c3377a9b27accec516b2c0da90dedef98a780.tar.gz qemu-138c3377a9b27accec516b2c0da90dedef98a780.tar.bz2 |
target/i386: add avx-vnni-int16 feature
AVX-VNNI-INT16 (CPUID[EAX=7,ECX=1).EDX[10]) is supported by Clearwater
Forest processor, add it to QEMU as it does not need any specific
enablement.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target/i386')
-rw-r--r-- | target/i386/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/i386/cpu.c b/target/i386/cpu.c index c40551d..c05765e 100644 --- a/target/i386/cpu.c +++ b/target/i386/cpu.c @@ -1131,7 +1131,7 @@ FeatureWordInfo feature_word_info[FEATURE_WORDS] = { .feat_names = { NULL, NULL, NULL, NULL, "avx-vnni-int8", "avx-ne-convert", NULL, NULL, - "amx-complex", NULL, NULL, NULL, + "amx-complex", NULL, "avx-vnni-int16", NULL, NULL, NULL, "prefetchiti", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, |