Which GPU is best for running LLM?
- It depends on the model size, quantisation and concurrency you need rather than on a brand. An 8B model at Q4 fits a 12 to 16 GB card and serves 1 to 5 users with Ollama; a 24 GB card with vLLM serves 5 to 25; 48 to 80 GB cards serve 25 to 100; a 70B model needs 80 GB or two GPUs. Use the selector above for your card.
Can I run an LLM locally without a GPU?
- Yes, for a demo. A 3B model (llama3.2:3b, Q4) via Ollama on 4 vCPU / 8 GiB generates 4.3 tokens/s, and DocsGPT's first token arrives after 42 s because the retrieved context is prompt-evaluated first. DocsGPT itself needs no GPU (its local embeddings, FastEmbed on ONNX Runtime, run on CPU); only the model does. Measured 2026-09-16.
How much RAM does DocsGPT need?
- With a cloud model: 2 GiB and 1 vCPU for one person (1 GiB fails — the first ingest is killed out of memory), 4 GiB and 2 vCPU for up to 10 concurrent users, 8 GiB and 4 vCPU for 25 to 50, 16 GiB and 16 vCPU for 100. A local model adds its own RAM or VRAM on top. Measured 2026-09-16 on DocsGPT 0.21.0.
Can you run 2 GPUs for LLM?
- Yes, when the inference engine supports tensor or pipeline parallelism — vLLM, TGI, SGLang and LMDeploy do. Multi-GPU is the engine's feature, not DocsGPT's; DocsGPT talks to the engine over its API. For 100 to 500 users the shape is 2 to 8 × 80 GB behind a load balancer, with DocsGPT scaled as in the footprint table.
Can DocsGPT run on an NVIDIA T4?
- Yes. A large Central European bank runs a classification pipeline built by the DocsGPT team fully air-gapped on its existing NVIDIA T4 GPUs, processing 10,000+ documents a day. For interactive chat a 16 GB T4 fits an 8B model at Q4 with short context; it is slow compared with an L4 or a consumer 24 GB card.