MCPcopy Create free account
hub / github.com/Tiiny-AI/PowerInfer / ggml_graph_dump_dot_leaf_edge

Function ggml_graph_dump_dot_leaf_edge

ggml.c:18069–18074  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18067}
18068
18069static void ggml_graph_dump_dot_leaf_edge(FILE * fp, struct ggml_tensor * node, struct ggml_tensor * parent, const char * label) {
18070 fprintf(fp, " \"%p\":%s -> \"%p\":%s [ label = \"%s\"; ]\n",
18071 (void *) parent, "x",
18072 (void *) node, "x",
18073 label);
18074}
18075
18076void ggml_graph_dump_dot(const struct ggml_cgraph * gb, const struct ggml_cgraph * gf, const char * filename) {
18077 char color[16];

Callers 1

ggml_graph_dump_dotFunction · 0.70

Calls 1

fprintfFunction · 0.85

Tested by

no test coverage detected