08c3a6
commit f3a99b2216114f89b20329ae7664b764248b4bbd
08c3a6
Author: H.J. Lu <hjl.tools@gmail.com>
08c3a6
Date:   Mon Dec 6 07:14:12 2021 -0800
08c3a6
08c3a6
    x86: Don't set Prefer_No_AVX512 for processors with AVX512 and AVX-VNNI
08c3a6
    
08c3a6
    Don't set Prefer_No_AVX512 on processors with AVX512 and AVX-VNNI since
08c3a6
    they won't lower CPU frequency when ZMM load and store instructions are
08c3a6
    used.
08c3a6
    
08c3a6
    (cherry picked from commit ceeffe968c01b1202e482f4855cb6baf5c6cb713)
08c3a6
08c3a6
diff --git a/sysdeps/x86/cpu-features.c b/sysdeps/x86/cpu-features.c
08c3a6
index f4d4049e391cbabd..09590d8794b1c6fb 100644
08c3a6
--- a/sysdeps/x86/cpu-features.c
08c3a6
+++ b/sysdeps/x86/cpu-features.c
08c3a6
@@ -566,8 +566,11 @@ disable_tsx:
08c3a6
 	  |= bit_arch_Prefer_No_VZEROUPPER;
08c3a6
       else
08c3a6
 	{
08c3a6
-	  cpu_features->preferred[index_arch_Prefer_No_AVX512]
08c3a6
-	    |= bit_arch_Prefer_No_AVX512;
08c3a6
+	  /* Processors with AVX512 and AVX-VNNI won't lower CPU frequency
08c3a6
+	     when ZMM load and store instructions are used.  */
08c3a6
+	  if (!CPU_FEATURES_CPU_P (cpu_features, AVX_VNNI))
08c3a6
+	    cpu_features->preferred[index_arch_Prefer_No_AVX512]
08c3a6
+	      |= bit_arch_Prefer_No_AVX512;
08c3a6
 
08c3a6
 	  /* Avoid RTM abort triggered by VZEROUPPER inside a
08c3a6
 	     transactionally executing RTM region.  */