Update ggml.c

Fix indentation upgate

Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
This commit is contained in:
automaticcat 2023-12-30 07:13:39 +07:00 committed by GitHub
parent 66ae732f44
commit e92acebdf3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

4
ggml.c
View file

@ -19639,9 +19639,9 @@ int ggml_cpu_has_avx(void) {
int ggml_cpu_has_avx_vnni(void) {
#if defined(__AVXVNNI__)
return 1;
return 1;
#else
return 0;
return 0;
#endif
}