a64570dcae
* Fix clearing kv cache between requests with the same prompt * fix powershell script
30 lines
1.5 KiB
Diff
30 lines
1.5 KiB
Diff
diff --git a/examples/server/server.cpp b/examples/server/server.cpp
|
|
index 0462fbd2..4fa7b57f 100644
|
|
--- a/examples/server/server.cpp
|
|
+++ b/examples/server/server.cpp
|
|
@@ -1857,12 +1857,6 @@ struct llama_server_context
|
|
LOG_TEE("slot %d : in cache: %i tokens | to process: %i tokens\n", slot.id, slot.n_past, slot.num_prompt_tokens_processed);
|
|
}
|
|
|
|
- LOG_TEE("slot %d : kv cache rm - [%d, end)\n", slot.id, (int) system_tokens.size() + slot.n_past);
|
|
-
|
|
- llama_kv_cache_seq_rm(ctx, slot.id, system_tokens.size() + slot.n_past, -1);
|
|
-
|
|
- slot.cache_tokens = prompt_tokens;
|
|
-
|
|
if (slot.n_past == slot.num_prompt_tokens && slot.n_past > 0)
|
|
{
|
|
// we have to evaluate at least 1 token to generate logits.
|
|
@@ -1870,6 +1864,12 @@ struct llama_server_context
|
|
slot.n_past--;
|
|
}
|
|
|
|
+ LOG_TEE("slot %d : kv cache rm - [%d, end)\n", slot.id, (int) system_tokens.size() + slot.n_past);
|
|
+
|
|
+ llama_kv_cache_seq_rm(ctx, slot.id, system_tokens.size() + slot.n_past, -1);
|
|
+
|
|
+ slot.cache_tokens = prompt_tokens;
|
|
+
|
|
LOG_VERBOSE("prompt ingested", {
|
|
{"n_past", slot.n_past},
|
|
{"cached", tokens_to_str(ctx, slot.cache_tokens.cbegin(), slot.cache_tokens.cbegin() + slot.n_past)},
|