| 7131 | } |
| 7132 | |
| 7133 | void ggml_graph_clear(struct ggml_cgraph * cgraph) { |
| 7134 | cgraph->n_leafs = 0; |
| 7135 | cgraph->n_nodes = 0; |
| 7136 | ggml_hash_set_reset(&cgraph->visited_hash_set); |
| 7137 | } |
| 7138 | |
| 7139 | int ggml_graph_size(struct ggml_cgraph * cgraph) { |
| 7140 | return cgraph->size; |
no test coverage detected