diff options
author | Ashwin Sekhar T K <ashwin.sekhar@cavium.com> | 2018-04-19 09:05:25 +0000 |
---|---|---|
committer | Ashwin Sekhar T K <ashwin.sekhar@cavium.com> | 2018-04-19 09:05:25 +0000 |
commit | 68a3c4fca60461f69fbec2da80454fde022b1adc (patch) | |
tree | 0c6120f67cdfa737c2787c471794cd063a94954f | |
parent | 0c4718c57a4bca10692c7726dbdcc6f77e7ce519 (diff) | |
download | openblas-68a3c4fca60461f69fbec2da80454fde022b1adc.tar.gz openblas-68a3c4fca60461f69fbec2da80454fde022b1adc.tar.bz2 openblas-68a3c4fca60461f69fbec2da80454fde022b1adc.zip |
ARM64: Enable Auto Detection of ThunderX2T99
-rw-r--r-- | cpuid_arm64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpuid_arm64.c b/cpuid_arm64.c index bd7fb7f2d..a42346c88 100644 --- a/cpuid_arm64.c +++ b/cpuid_arm64.c @@ -121,7 +121,7 @@ int detect(void) return CPU_VULCAN; else if (strstr(cpu_part, "0x0a1") && strstr(cpu_implementer, "0x43")) return CPU_THUNDERX; - else if (strstr(cpu_part, "0xFFF") && strstr(cpu_implementer, "0x43")) /* TODO */ + else if (strstr(cpu_part, "0x0af") && strstr(cpu_implementer, "0x43")) return CPU_THUNDERX2T99; } |