From 33528f5b1d6513feb9a36423b7e7499f3d393f44 Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Sun, 21 May 2023 21:03:36 +0800 Subject: [PATCH] fix for cublas --- otherarch/llama_v2.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/otherarch/llama_v2.cpp b/otherarch/llama_v2.cpp index 06bfdee97..181fe43f1 100644 --- a/otherarch/llama_v2.cpp +++ b/otherarch/llama_v2.cpp @@ -9,9 +9,7 @@ #include "llama_v2.h" #include "ggml_v2.h" -#ifdef GGML_USE_CUBLAS -#include "ggml-cuda.h" -#elif defined(GGML_USE_CLBLAST) +#if defined(GGML_USE_CLBLAST) #include "ggml_v2-opencl.h" #endif