ggml_graph_import method

Pointer<ggml_cgraph> ggml_graph_import(
  1. Pointer<Char> fname,
  2. Pointer<Pointer<ggml_context>> ctx_data,
  3. Pointer<Pointer<ggml_context>> ctx_eval
)

Implementation

ffi.Pointer<ggml_cgraph> ggml_graph_import(
  ffi.Pointer<ffi.Char> fname,
  ffi.Pointer<ffi.Pointer<ggml_context>> ctx_data,
  ffi.Pointer<ffi.Pointer<ggml_context>> ctx_eval,
) {
  return _ggml_graph_import(
    fname,
    ctx_data,
    ctx_eval,
  );
}