llama_model_size method

int llama_model_size(
  1. Pointer<llama_model> model
)

Returns the total size of all the tensors in the model in bytes

Implementation

int llama_model_size(
  ffi.Pointer<llama_model> model,
) {
  return _llama_model_size(
    model,
  );
}