ggml_new_buffer method

Pointer<Void> ggml_new_buffer(
  1. Pointer<ggml_context> ctx,
  2. int nbytes
)

Implementation

ffi.Pointer<ffi.Void> ggml_new_buffer(
  ffi.Pointer<ggml_context> ctx,
  int nbytes,
) {
  return _ggml_new_buffer(
    ctx,
    nbytes,
  );
}