| 18067 | } |
| 18068 | |
| 18069 | static 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 | |
| 18076 | void ggml_graph_dump_dot(const struct ggml_cgraph * gb, const struct ggml_cgraph * gf, const char * filename) { |
| 18077 | char color[16]; |
no test coverage detected