ggml_new_graph_custom method

Pointer<ggml_cgraph> ggml_new_graph_custom(
  1. Pointer<ggml_context> ctx,
  2. int size,
  3. bool grads
)

Implementation

ffi.Pointer<ggml_cgraph> ggml_new_graph_custom(
  ffi.Pointer<ggml_context> ctx,
  int size,
  bool grads,
) {
  return _ggml_new_graph_custom(
    ctx,
    size,
    grads,
  );
}