| 1914 | } |
| 1915 | |
| 1916 | llm_graph_input_attn_k * llm_graph_context::build_attn_inp_k() const { |
| 1917 | const auto * mctx_cur = static_cast<const llama_kv_cache_context *>(mctx); |
| 1918 | |
| 1919 | auto inp = build_attn_inp_k_impl(ctx0, ubatch, hparams, cparams, mctx_cur); |
| 1920 | |
| 1921 | return (llm_graph_input_attn_k *) res->add_input(std::move(inp)); |
| 1922 | } |
| 1923 | |
| 1924 | ggml_tensor * llm_graph_context::build_attn( |
| 1925 | llm_graph_input_attn_k * inp, |
nothing calls this directly
no test coverage detected