Fix CUDA after latest changes

This commit is contained in:
Iwan Kawrakow
2025-08-13 17:23:13 +03:00
parent d2985c6a64
commit 0fe47c57eb
5 changed files with 17 additions and 3 deletions

View File

@@ -2,6 +2,19 @@
#include "llama-impl.h"
#include "llama-mmap.h"
#include "ggml.h"
//#include "ggml-backend.h"
#ifdef GGML_USE_CUDA
# include "ggml-cuda.h"
#elif defined(GGML_USE_VULKAN)
# include "ggml-vulkan.h"
#elif defined(GGML_USE_SYCL)
# include "ggml-sycl.h"
#elif defined(GGML_USE_KOMPUTE)
# include "ggml-kompute.h"
#elif defined(GGML_USE_CANN)
# include "ggml-cann.h"
#endif
#include <set>
#include <map>