| 16339 | } |
| 16340 | |
| 16341 | size_t ggml_graph_overhead(void) { |
| 16342 | return ggml_graph_overhead_custom(GGML_DEFAULT_GRAPH_SIZE, false); |
| 16343 | } |
| 16344 | |
| 16345 | struct ggml_cgraph * ggml_new_graph_custom(struct ggml_context * ctx, size_t size, bool grads) { |
| 16346 | const size_t obj_size = ggml_graph_nbytes(size, grads); |
no test coverage detected