Add the cpuid of the business/rackmount version of z15 as well
authorMartin Kroeker <martin@ruby.chemie.uni-freiburg.de>
Thu, 21 Nov 2019 17:14:29 +0000 (18:14 +0100)
committerGitHub <noreply@github.com>
Thu, 21 Nov 2019 17:14:29 +0000 (18:14 +0100)
cpuid_zarch.c

index 872d846..df3b789 100644 (file)
@@ -70,6 +70,7 @@ int detect(void)
   if (strstr(p, "3906")) return CPU_Z14;
   if (strstr(p, "3907")) return CPU_Z14;
   if (strstr(p, "8561")) return CPU_Z14;        // fallback z15 to z14
+  if (strstr(p, "8562")) return CPU_Z14;        // fallback z15 to z14
 
   return CPU_GENERIC;
 }