Skip to content

Commit

Permalink
ggml : fix the check for NEON support (ggerganov#7)
Browse files Browse the repository at this point in the history
Was using the wrong preprocessor macro
  • Loading branch information
ggerganov committed Nov 2, 2022
1 parent bb4410e commit 114d28f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ggml.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 114d28f

Please sign in to comment.