From 4e8f9a04b59fab2880da441b8b059554ce32eebc Mon Sep 17 00:00:00 2001 From: zhenweijin Date: Fri, 30 Aug 2024 15:59:25 +0800 Subject: [PATCH] src: make tail invalid when kv cell is intersection for mamba --- src/llama.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/llama.cpp b/src/llama.cpp index 2274296b45406..6c3d4691ed37f 100644 --- a/src/llama.cpp +++ b/src/llama.cpp @@ -3689,7 +3689,8 @@ static bool llama_kv_cache_seq_rm( if ((0 < p0 && p0 <= cell.pos) || (0 < p1 && p1 <= cell.pos)) { return false; } - if (p0 <= cell.pos && p1 < cell.pos) { + // invalidate tails which will be cleared + if (p0 <= cell.pos && cell.pos < p1) { tail_id = -1; } }