temp fix for compilation issues on OSX (M1)

This commit is contained in:
Concedo 2023-04-30 23:48:46 +08:00
parent fdd21d0eba
commit 3b5df18dbb

3
ggml.c
View file

@ -149,7 +149,8 @@ inline static void* ggml_aligned_malloc(size_t size) {
#include <cblas.h>
#elif defined(GGML_USE_CUBLAS)
#include "ggml-cuda.h"
#elif defined(GGML_USE_CLBLAST)
#endif
#if defined(GGML_USE_CLBLAST)
#include "ggml-opencl.h"
#endif