Skip to content

Commit 3c22e1d

Browse files
committed
fix: Fix recurrent cache get after rebase
Branch: GraniteFour Signed-off-by: Gabe Goodhart <ghart@us.ibm.com>
1 parent 2ca3416 commit 3c22e1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/llama-model.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13263,7 +13263,7 @@ struct llm_build_hybrid_mamba : public llm_graph_context {
1326313263
}
1326413264

1326513265
// Extract the recurrent cache from the hybrid parent
13266-
const auto * kv_recurrent = static_cast<const llama_kv_cache_hybrid *>(memory)->get_child_cache<llama_kv_cache_recurrent>();
13266+
const auto * kv_recurrent = static_cast<const llama_kv_cache_hybrid_recurrent *>(memory)->get_kv_recurrent();
1326713267
GGML_ASSERT(kv_recurrent);
1326813268

1326913269
for (int il = 0; il < n_layer; ++il) {

0 commit comments

Comments
 (0)