graph : remove the build_kv_... API from llama_graph_i

ggml-ci
This commit is contained in:
Georgi Gerganov
2025-02-23 19:39:22 +02:00
parent 372fa3a894
commit 6378112cb5
4 changed files with 50 additions and 43 deletions

View File

@@ -1842,6 +1842,25 @@ ggml_tensor * llama_context::build_attn(
return cur;
}
void llama_context::build_kv_self_shift(
ggml_context * ctx0,
ggml_cgraph * gf) {
GGML_UNUSED(ctx0);
GGML_UNUSED(gf);
LLAMA_LOG_ERROR("%s: not implemented\n", __func__);
}
void llama_context::build_kv_self_defrag(
ggml_context * ctx0,
ggml_cgraph * gf) {
GGML_UNUSED(ctx0);
GGML_UNUSED(gf);
LLAMA_LOG_ERROR("%s: not implemented\n", __func__);
}
//
// perf
//