MCPcopy Create free account
hub / github.com/appdevforall/CodeOnTheGo / ggml_graph_clear

Function ggml_graph_clear

subprojects/llama.cpp/ggml/src/ggml.c:7133–7137  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7131}
7132
7133void 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
7139int ggml_graph_size(struct ggml_cgraph * cgraph) {
7140 return cgraph->size;

Callers 1

ggml_build_forward_implFunction · 0.85

Calls 1

ggml_hash_set_resetFunction · 0.85

Tested by

no test coverage detected