ggml_graph_import method
Pointer<ggml_cgraph>
ggml_graph_import(
- Pointer<
Char> fname, - Pointer<
Pointer< ctx_data,ggml_context> > - Pointer<
Pointer< ctx_evalggml_context> >
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,
);
}