ggml_nrows method

int ggml_nrows(
  1. Pointer<ggml_tensor> tensor
)

Implementation

int ggml_nrows(
  ffi.Pointer<ggml_tensor> tensor,
) {
  return _ggml_nrows(
    tensor,
  );
}