ggml_tallocr_alloc method

ggml_status ggml_tallocr_alloc(
  1. Pointer<ggml_tallocr> talloc,
  2. Pointer<ggml_tensor> tensor
)

Implementation

ggml_status ggml_tallocr_alloc(
  ffi.Pointer<ggml_tallocr> talloc,
  ffi.Pointer<ggml_tensor> tensor,
) {
  return ggml_status.fromValue(_ggml_tallocr_alloc(
    talloc,
    tensor,
  ));
}