llama_attach_threadpool method
void
llama_attach_threadpool(
- Pointer<
llama_context> ctx, - ggml_threadpool_t threadpool,
- ggml_threadpool_t threadpool_batch
Implementation
void llama_attach_threadpool(
ffi.Pointer<llama_context> ctx,
ggml_threadpool_t threadpool,
ggml_threadpool_t threadpool_batch,
) {
return _llama_attach_threadpool(
ctx,
threadpool,
threadpool_batch,
);
}