mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2025-08-08 09:57:45 -04:00
fix: Update clear signature for data argument after rebase
Branch: HybridRecurrentCache Signed-off-by: Gabe Goodhart <ghart@us.ibm.com>
This commit is contained in:
@@ -102,9 +102,10 @@ bool llama_kv_cache_hybrid_recurrent::get_can_shift() const {
|
||||
// Shifting is trivially supported for recurrent
|
||||
return kv_attn->get_can_shift();
|
||||
}
|
||||
void llama_kv_cache_hybrid_recurrent::clear() {
|
||||
kv_attn ->clear();
|
||||
kv_recurrent->clear();
|
||||
|
||||
void llama_kv_cache_hybrid_recurrent::clear(bool data) {
|
||||
kv_attn ->clear(data);
|
||||
kv_recurrent->clear(data);
|
||||
}
|
||||
|
||||
bool llama_kv_cache_hybrid_recurrent::seq_rm(llama_seq_id seq_id, llama_pos p0, llama_pos p1) {
|
||||
|
Reference in New Issue
Block a user