ggml_status_to_string method

Pointer<Char> ggml_status_to_string(
  1. int status
)

get ggml_status name string

Implementation

ffi.Pointer<ffi.Char> ggml_status_to_string(
  int status,
) {
  return _ggml_status_to_string(
    status,
  );
}