Update get_native_properties.sh for AVXVNNI

Update get_native_properties.sh to detect and report 'x86-64-avxvnni' when the CPU supports it.

closes https://github.com/official-stockfish/Stockfish/pull/6346

No functional change
This commit is contained in:
dav1312
2025-10-07 13:29:52 +02:00
committed by Joost VandeVondele
parent e18ed795f2
commit fc5d296f9d
+2
View File
@@ -45,6 +45,8 @@ set_arch_x86_64() {
true_arch='x86-64-vnni512'
elif check_flags 'avx512f' 'avx512bw'; then
true_arch='x86-64-avx512'
elif check_flags 'avxvnni'; then
true_arch='x86-64-avxvnni'
elif [ -z "${znver_1_2+1}" ] && check_flags 'bmi2'; then
true_arch='x86-64-bmi2'
elif check_flags 'avx2'; then