ggml_opt_init method

void ggml_opt_init(
  1. Pointer<ggml_context> ctx,
  2. Pointer<ggml_opt_context> opt,
  3. ggml_opt_params params,
  4. int nx,
)

Implementation

void ggml_opt_init(
  ffi.Pointer<ggml_context> ctx,
  ffi.Pointer<ggml_opt_context> opt,
  ggml_opt_params params,
  int nx,
) {
  return _ggml_opt_init(
    ctx,
    opt,
    params,
    nx,
  );
}