| 791 | } |
| 792 | |
| 793 | static void sched_alloc_splits(ggml_backend_sched_t sched) { |
| 794 | ggml_gallocr_alloc_graph_n( |
| 795 | sched->galloc, |
| 796 | sched->graph, |
| 797 | sched->hash_set, |
| 798 | sched->node_talloc); |
| 799 | } |
| 800 | |
| 801 | static void sched_compute_splits(ggml_backend_sched_t sched) { |
| 802 | uint64_t copy_us[GGML_MAX_BACKENDS] = {0}; |
no test coverage detected