ggml_graph_dump_dot method
void
ggml_graph_dump_dot(
- Pointer<
ggml_cgraph> gb, - Pointer<
ggml_cgraph> gf, - Pointer<
Char> filename
dump the graph into a file using the dot format
Implementation
void ggml_graph_dump_dot(
ffi.Pointer<ggml_cgraph> gb,
ffi.Pointer<ggml_cgraph> gf,
ffi.Pointer<ffi.Char> filename,
) {
return _ggml_graph_dump_dot(
gb,
gf,
filename,
);
}