ggml : fix the check for NEON support (#7)

Was using the wrong preprocessor macro
pull/95/head^2
Georgi Gerganov 2 years ago
parent 24cd12f647
commit 137321915f
No known key found for this signature in database
GPG Key ID: 449E073F9DC10735

@ -8089,7 +8089,7 @@ int ggml_cpu_has_avx512(void) {
}
int ggml_cpu_has_neon(void) {
#if defined(__ARM_NEON__)
#if defined(__ARM_NEON)
return 1;
#else
return 0;

Loading…
Cancel
Save