Skip to content

Commit 04c94d6

Browse files
committed
fix: Mark unused params correctly
Branch: HybridCache Signed-off-by: Gabe Goodhart <ghart@us.ibm.com>
1 parent 5c410a5 commit 04c94d6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/llama-kv-cache.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -444,6 +444,9 @@ void llama_kv_cache_unified::set_full() {
444444
}
445445

446446
bool llama_kv_cache_unified::can_seq_rm(llama_seq_id seq_id, llama_pos p0, llama_pos p1) const {
447+
GGML_UNUSED(seq_id);
448+
GGML_UNUSED(p0);
449+
GGML_UNUSED(p1);
447450
// Unified attention cache can always do a sequence removal
448451
return true;
449452
}

0 commit comments

Comments
 (0)