| 388 | } |
| 389 | |
| 390 | static size_t ggml_dyn_tallocr_max_size(struct ggml_dyn_tallocr * alloc, int chunk) { |
| 391 | return chunk < alloc->n_chunks ? alloc->chunks[chunk]->max_size : 0; |
| 392 | } |
| 393 | |
| 394 | |
| 395 | // virtual buffer with contiguous memory range, split into multiple backend buffers (chunks) |
no outgoing calls
no test coverage detected