| 1823 | } |
| 1824 | |
| 1825 | llm_graph_input_attn_kv * llm_graph_context::build_attn_inp_kv() const { |
| 1826 | const auto * mctx_cur = static_cast<const llama_kv_cache_context *>(mctx); |
| 1827 | |
| 1828 | auto inp = build_attn_inp_kv_impl(ctx0, ubatch, hparams, cparams, mctx_cur); |
| 1829 | |
| 1830 | return (llm_graph_input_attn_kv *) res->add_input(std::move(inp)); |
| 1831 | } |
| 1832 | |
| 1833 | ggml_tensor * llm_graph_context::build_attn( |
| 1834 | llm_graph_input_attn_kv * inp, |
nothing calls this directly
no test coverage detected