ggml_new_graph method

Pointer<ggml_cgraph> ggml_new_graph(
  1. Pointer<ggml_context> ctx
)

Implementation

ffi.Pointer<ggml_cgraph> ggml_new_graph(
  ffi.Pointer<ggml_context> ctx,
) {
  return _ggml_new_graph(
    ctx,
  );
}