docs/usage/gpu.md
This guide describes how to maximize GPU performance for Docling pipelines. It covers device selection, pipeline differences, and provides example snippets for configuring batch size and concurrency in the VLM pipeline for both Linux and Windows.
!!! note
Improvements and optimizations strategies for maximizing the GPU performance is an
active topic. Regularly check these guidelines for updates.
Enable GPU acceleration by configuring the accelerator device and concurrency options using Docling's API:
from docling.datamodel.accelerator_options import AcceleratorDevice, AcceleratorOptions
# Configure accelerator options for GPU
accelerator_options = AcceleratorOptions(
device=AcceleratorDevice.CUDA, # or AcceleratorDevice.AUTO
)
Batch size and concurrency for document processing are controlled for each stage of the pipeline as:
from docling.datamodel.pipeline_options import (
ThreadedPdfPipelineOptions,
)
pipeline_options = ThreadedPdfPipelineOptions(
ocr_batch_size=64, # default 4
layout_batch_size=64, # default 4
table_batch_size=4, # currently not using GPU batching
)
Setting a higher page_batch_size will run the Docling models (in particular the layout detection stage) with a GPU batch inference mode.
For a complete example see gpu_standard_pipeline.py.
The current Docling OCR engines rely on third-party libraries, hence GPU support depends on the availability in the respective engines.
RapidOCR supports GPU acceleration through both its Torch and ONNX Runtime
backends. The ONNX Runtime backend also supports PP-OCRv5 recognition models
which are unavailable through the Torch backend, such as eslav and
cyrillic.
On Linux and Windows, install the GPU-enabled ONNX Runtime extra:
pip install "docling[onnxruntime]"
Before processing documents, verify that ONNX Runtime can load its CUDA execution provider:
import onnxruntime as ort
assert "CUDAExecutionProvider" in ort.get_available_providers()
Then select a CUDA device and configure RapidOCR with the ONNX Runtime backend:
from docling.datamodel.accelerator_options import (
AcceleratorDevice,
AcceleratorOptions,
)
from docling.datamodel.pipeline_options import PdfPipelineOptions, RapidOcrOptions
pipeline_options = PdfPipelineOptions(
accelerator_options=AcceleratorOptions(
device=AcceleratorDevice.CUDA, # or "cuda:N" for a specific GPU
),
ocr_options=RapidOcrOptions(
backend="onnxruntime",
lang=["eslav"],
),
)
The Torch backend can be enabled instead with:
pipeline_options = PdfPipelineOptions()
pipeline_options.ocr_options = RapidOcrOptions(
backend="torch",
)
More details in the GitHub discussion #2451.
For best GPU utilization, use a local inference server. Docling supports inference servers which exposes the OpenAI-compatible chat completion endpoints. For example:
http://localhost:8000/v1/chat/completions (available only on Linux)http://localhost:1234/v1/chat/completions (available both on Linux and Windows)http://localhost:11434/v1/chat/completions (available both on Linux and Windows)Here is an example on how to start the vllm inference server with optimum parameters for Granite Docling.
vllm serve ibm-granite/granite-docling-258M \
--host 127.0.0.1 --port 8000 \
--max-num-seqs 512 \
--max-num-batched-tokens 8192 \
--enable-chunked-prefill \
--gpu-memory-utilization 0.9
Configure the VLM pipeline using Docling's VLM options:
from docling.datamodel.pipeline_options import VlmPipelineOptions
vlm_options = VlmPipelineOptions(
enable_remote_services=True,
vlm_options={
"url": "http://localhost:8000/v1/chat/completions", # or any other compatible endpoint
"params": {
"model": "ibm-granite/granite-docling-258M",
"max_tokens": 4096,
},
"concurrency": 64, # default is 1
"prompt": "Convert this page to docling.",
"timeout": 90,
}
)
Additionally to the concurrency, we also have to set the page_batch_size Docling parameter. Make sure to set settings.perf.page_batch_size >= vlm_options.concurrency.
from docling.datamodel.settings import settings
settings.perf.page_batch_size = 64 # default is 4
For a complete example see gpu_vlm_pipeline.py.
Both LM Studio and Ollama rely on llama.cpp as runtime engine. For using this engine, models have to be converted to the gguf format.
Here is a list of known models which are available in gguf format and how to use them.
TBA.
| PDF doc | ViDoRe V3 HR | |
|---|---|---|
| Num docs | 1 | 14 |
| Num pages | 192 | 1110 |
| Num tables | 95 | 258 |
| Format type | Parquet of images |
| g6e.2xlarge | RTX 5090 | RTX 5070 | |
|---|---|---|---|
| Description | AWS instance g6e.2xlarge | Linux bare metal machine | Windows 11 bare metal machine |
| CPU | 8 vCPUs, AMD EPYC 7R13 | 16 vCPU, AMD Ryzen 7 9800 | 16 vCPU, AMD Ryzen 7 9800 |
| RAM | 64GB | 128GB | 64GB |
| GPU | NVIDIA L40S 48GB | NVIDIA GeForce RTX 5090 | NVIDIA GeForce RTX 5070 |
| CUDA Version | 13.0, driver 580.95.05 | 13.0, driver 580.105.08 | 13.0, driver 581.57 |
* cpu-only timing computed with 16 pytorch threads.