]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
x86: Don't set Prefer_No_AVX512 for processors with AVX512 and AVX-VNNI
authorH.J. Lu <hjl.tools@gmail.com>
Mon, 6 Dec 2021 15:14:12 +0000 (07:14 -0800)
committerSunil K Pandey <skpgkp2@gmail.com>
Wed, 27 Apr 2022 01:18:16 +0000 (18:18 -0700)
Don't set Prefer_No_AVX512 on processors with AVX512 and AVX-VNNI since
they won't lower CPU frequency when ZMM load and store instructions are
used.

(cherry picked from commit ceeffe968c01b1202e482f4855cb6baf5c6cb713)

sysdeps/x86/cpu-features.c

index f4d4049e391cbabdfb6cee96f0553b300231dddf..09590d8794b1c6fbe60c9fcface50d7ea92ab60f 100644 (file)
@@ -566,8 +566,11 @@ disable_tsx:
          |= bit_arch_Prefer_No_VZEROUPPER;
       else
        {
-         cpu_features->preferred[index_arch_Prefer_No_AVX512]
-           |= bit_arch_Prefer_No_AVX512;
+         /* Processors with AVX512 and AVX-VNNI won't lower CPU frequency
+            when ZMM load and store instructions are used.  */
+         if (!CPU_FEATURES_CPU_P (cpu_features, AVX_VNNI))
+           cpu_features->preferred[index_arch_Prefer_No_AVX512]
+             |= bit_arch_Prefer_No_AVX512;
 
          /* Avoid RTM abort triggered by VZEROUPPER inside a
             transactionally executing RTM region.  */