llama_batch_free method

void llama_batch_free(
  1. llama_batch batch
)

Frees a batch of tokens allocated with llama_batch_init()

Implementation

void llama_batch_free(
  llama_batch batch,
) {
  return _llama_batch_free(
    batch,
  );
}