Frees a batch of tokens allocated with llama_batch_init()
(batch: llama_batch, /)
| 3031 | # LLAMA_API void llama_batch_free(struct llama_batch batch); |
| 3032 | @ctypes_function("llama_batch_free", [llama_batch], None) |
| 3033 | def llama_batch_free(batch: llama_batch, /): |
| 3034 | """Frees a batch of tokens allocated with llama_batch_init()""" |
| 3035 | ... |
| 3036 | |
| 3037 | |
| 3038 | # // Process a batch of tokens. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…