Use angle brackets to indicate the system library

This commit is contained in:
clyang 2023-07-07 23:57:16 +08:00 committed by GitHub
parent e6d1c4fe32
commit 98d129cd06
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
ggml.c
View file

@ -248,7 +248,7 @@ inline static void* ggml_aligned_malloc(size_t size) {
#endif #endif
#elif defined(GGML_USE_OPENBLAS) #elif defined(GGML_USE_OPENBLAS)
#if defined(GGML_BLAS_USE_MKL) #if defined(GGML_BLAS_USE_MKL)
#include "mkl.h" #include <mkl.h>
#else #else
#include <cblas.h> #include <cblas.h>
#endif #endif