From 993f641979bc21ae6ff4c54568cd4df18a78366a Mon Sep 17 00:00:00 2001 From: Fabian Wolf Date: Tue, 30 Jul 2024 13:24:55 +0200 Subject: [PATCH] Make: Change compute level to 8.6 and multicore make to -j 2 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 46c8197..2bcfb2a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ WORKDIR /build # Clone and build llama.cpp RUN git clone https://github.com/ggerganov/llama.cpp && \ cd llama.cpp && \ - CUDA_DOCKER_ARCH=compute_89 make GGML_CUDA=1 + CUDA_DOCKER_ARCH=compute_86 make GGML_CUDA=1 -j 2 # Set the working directory