llama_attach_threadpool method

void llama_attach_threadpool(
  1. Pointer<llama_context> ctx,
  2. ggml_threadpool_t threadpool,
  3. 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,
  );
}