From fc5d296f9dfa62444dde910985c98e9055c1d9a3 Mon Sep 17 00:00:00 2001 From: dav1312 <63931154+dav1312@users.noreply.github.com> Date: Tue, 7 Oct 2025 13:29:52 +0200 Subject: [PATCH] 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 --- scripts/get_native_properties.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/get_native_properties.sh b/scripts/get_native_properties.sh index dec5998da..67dd60ca5 100755 --- a/scripts/get_native_properties.sh +++ b/scripts/get_native_properties.sh @@ -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