| 2196 | } |
| 2197 | |
| 2198 | llm_graph_input_rs * llm_graph_context::build_rs_inp() const { |
| 2199 | const auto * mctx_cur = static_cast<const llama_memory_recurrent_context *>(mctx); |
| 2200 | |
| 2201 | auto inp = build_rs_inp_impl(ctx0, ubatch, mctx_cur); |
| 2202 | |
| 2203 | return (llm_graph_input_rs *) res->add_input(std::move(inp)); |
| 2204 | } |
| 2205 | |
| 2206 | ggml_tensor * llm_graph_context::build_rs( |
| 2207 | llm_graph_input_rs * inp, |
nothing calls this directly
no test coverage detected