| 684 | } |
| 685 | |
| 686 | void llm_graph_result::set_inputs(const llama_ubatch * ubatch) { |
| 687 | for (auto & input : inputs) { |
| 688 | input->set_input(ubatch); |
| 689 | } |
| 690 | } |
| 691 | |
| 692 | void llm_graph_result::set_outputs() { |
| 693 | if (t_logits != nullptr) { |
no test coverage detected