| 733 | } |
| 734 | |
| 735 | struct ggml_backend_buffer * ggml_allocr_get_buffer(ggml_allocr_t alloc) { |
| 736 | return ggml_tallocr_get_buffer(alloc->talloc); |
| 737 | } |
| 738 | |
| 739 | void ggml_allocr_set_parse_seq(ggml_allocr_t alloc, const int * list, int n) { |
| 740 | ggml_gallocr_set_parse_seq(alloc->galloc, list, n); |
nothing calls this directly
no test coverage detected