| 16454 | } |
| 16455 | |
| 16456 | void ggml_graph_clear(struct ggml_cgraph * cgraph) { |
| 16457 | cgraph->n_leafs = 0; |
| 16458 | cgraph->n_nodes = 0; |
| 16459 | memset(cgraph->visited_hash_table.keys, 0, cgraph->visited_hash_table.size * sizeof(struct ggml_tensor *)); |
| 16460 | } |
| 16461 | |
| 16462 | // |
| 16463 | // thread data |
no outgoing calls
no test coverage detected