From 31572d966531f7d768eb773322016ab78eb6e835 Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Fri, 24 Mar 2023 18:23:56 +0200 Subject: [PATCH] Temporary bump the memory buffer size - hopefully fix issues from 483bab2e --- llama.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama.cpp b/llama.cpp index cdb8628..9a93409 100644 --- a/llama.cpp +++ b/llama.cpp @@ -632,7 +632,7 @@ static bool llama_eval_internal( auto & mem_per_token = lctx.mem_per_token; // TODO: fix this hardcoded size - static size_t buf_size = 512u*1024*1024; + static size_t buf_size = 2048u*1024*1024; // TMP !!! static void * buf = malloc(buf_size); if (mem_per_token > 0 && mem_per_token*N > buf_size) {