| 2667 | } |
| 2668 | |
| 2669 | size_t llama_context::state_seq_read_data(llama_io_read_i & io, llama_seq_id seq_id, llama_state_seq_flags flags) { |
| 2670 | GGML_UNUSED(seq_id); |
| 2671 | |
| 2672 | if (memory) { |
| 2673 | memory->state_read(io, seq_id, flags); |
| 2674 | } |
| 2675 | |
| 2676 | return io.n_bytes(); |
| 2677 | } |
| 2678 | |
| 2679 | // |
| 2680 | // perf |
nothing calls this directly
no test coverage detected