memory : correctly handle failure in apply() (#14438)

ggml-ci
This commit is contained in:
Georgi Gerganov
2025-06-30 18:03:03 +03:00
committed by GitHub
parent 5dd942de59
commit 745f11fed0
6 changed files with 32 additions and 4 deletions

View File

@@ -246,7 +246,7 @@ bool llama_kv_cache_unified_iswa_context::next() {
}
bool llama_kv_cache_unified_iswa_context::apply() {
assert(status == LLAMA_MEMORY_STATUS_SUCCESS);
assert(!llama_memory_status_is_fail(status));
bool res = true;