ggml_graph_dup method

Pointer<ggml_cgraph> ggml_graph_dup(
  1. Pointer<ggml_context> ctx,
  2. Pointer<ggml_cgraph> cgraph
)

Implementation

ffi.Pointer<ggml_cgraph> ggml_graph_dup(
  ffi.Pointer<ggml_context> ctx,
  ffi.Pointer<ggml_cgraph> cgraph,
) {
  return _ggml_graph_dup(
    ctx,
    cgraph,
  );
}