From 39a6b562cfb1a8c488fc2560e4f32abebfa13d8e Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Wed, 14 Feb 2024 10:28:06 +0100 Subject: [PATCH] fix(llama.cpp): downgrade to a known working version (#1706) sycl support is broken otherwise. See upstream issue: https://github.com/ggerganov/llama.cpp/issues/5469 Signed-off-by: Ettore Di Giacinto --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index fc3bab6afca0..306d60c4a1fb 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ GOLLAMA_VERSION?=aeba71ee842819da681ea537e78846dc75949ac0 GOLLAMA_STABLE_VERSION?=50cee7712066d9e38306eccadcfbb44ea87df4b7 -CPPLLAMA_VERSION?=099afc6274c859ca67146e725839f2d97a5ef313 +CPPLLAMA_VERSION?=f026f8120f97090d34a52b3dc023c82e0ede3f7d # gpt4all version GPT4ALL_REPO?=https://github.com/nomic-ai/gpt4all @@ -550,4 +550,4 @@ docker-image-intel: --build-arg BASE_IMAGE=intel/oneapi-basekit:2024.0.1-devel-ubuntu22.04 \ --build-arg IMAGE_TYPE=$(IMAGE_TYPE) \ --build-arg GO_TAGS="none" \ - --build-arg BUILD_TYPE=sycl_f16 -t $(DOCKER_IMAGE) . \ No newline at end of file + --build-arg BUILD_TYPE=sycl_f16 -t $(DOCKER_IMAGE) .