context : remove redundant virtual, protected -> private

ggml-ci
This commit is contained in:
Georgi Gerganov
2025-02-23 20:02:11 +02:00
parent 6378112cb5
commit 0699a44c83
4 changed files with 79 additions and 66 deletions

View File

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