llama_free method

void llama_free(
  1. Pointer<llama_context> ctx
)

Frees all allocated memory

Implementation

void llama_free(
  ffi.Pointer<llama_context> ctx,
) {
  return _llama_free(
    ctx,
  );
}