ggml_graph_dump_dot method

void ggml_graph_dump_dot(
  1. Pointer<ggml_cgraph> gb,
  2. Pointer<ggml_cgraph> gf,
  3. 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,
  );
}