Allow for Vulkan build with Accelerate.

Closes #5304
pull/1891/head
Mathijs de Bruin 2024-02-03 17:56:46 +00:00 committed by Georgi Gerganov
parent b19f2fb815
commit c6e53cfc46
No known key found for this signature in database
GPG Key ID: 449E073F9DC10735
1 changed files with 2 additions and 0 deletions

2
ggml.c
View File

@ -273,6 +273,8 @@ inline static void * ggml_calloc(size_t num, size_t size) {
#include <Accelerate/Accelerate.h>
#if defined(GGML_USE_CLBLAST) // allow usage of CLBlast alongside Accelerate functions
#include "ggml-opencl.h"
#elif defined(GGML_USE_VULKAN)
#include "ggml-vulkan.h"
#endif
#elif defined(GGML_USE_OPENBLAS)
#if defined(GGML_BLAS_USE_MKL)