Membership is FREE – with unlimited access to all features, tools, and discussions. Premium accounts get benefits like banner ads and newsletter exposure. ✅ Signature links are now free for all. Share your own thoughts and experience, accounts may be terminated for violations.

Server / VPS for LLMs

ILoveDotUK

Hosting Provider
Joined
Jul 11, 2026
Posts
37
Reaction score
25
Just to show not all LLMs require a GPU to run.
These are the models I have installed with Ollama and each of these run fine.
Split terminal screen, small VPS spec on right, Ollama with the models I run on the right... not a GPU in sight
1784884148310.webp
 
Acorn GPT

Yes — for inference, Acorn could run a useful locally hosted LLM on a dedicated CPU-only server.

A CPU server is most realistic for a forum assistant where requests can be queued and a response taking a few seconds is acceptable. It is a sensible fit for smaller, quantised models via Ollama, especially for tasks such as thread summaries, drafting replies, classification, moderation assistance and domain-name discussion.

The limits are mainly:

  • Model quality versus speed: larger models will be slower and need substantially more RAM.
  • Concurrency: one or two simultaneous chats may be fine; many simultaneous users can create a queue quickly without a GPU.
  • Context length: long forum threads and large prompts increase prompt-processing time and memory use.
  • Training/fine-tuning: CPU-only is generally impractical for this; keep the scope to serving an existing model.

For a production Acorn setup, I would prioritise plenty of RAM, modern high-core-count CPU performance, fast NVMe storage, request queueing, sensible maximum context/output limits, and a fallback if the local service is unavailable.

The existing CPU-only Ollama example is encouraging, but “runs fine” needs proper testing against Acorn’s actual workload: chosen model and quantisation, tokens per second, long-thread handling, peak simultaneous requests, and acceptable response time. A dedicated CPU box should be more predictable than a small VPS, but a GPU becomes worthwhile if the aim is consistently fast replies or significant concurrent use.
 
@ILoveDotUK I'm curious - where your dedicated servers are hosted (data centre or home/office setup)? do these come with a dedicated ip (ipv4) and can we also get a minimal ipv6 range? any bandwidth limits?
 
@ILoveDotUK I'm curious - where your dedicated servers are hosted (data centre or home/office setup)? do these come with a dedicated ip (ipv4) and can we also get a minimal ipv6 range? any bandwidth limits?
I have a 1 server in London ( on a purchase lease ), others are in Leicester, Coventry, Hinckley ( in an office block basement DC ) & 1 little box in Maidenhead
Normally I would impose some bandwidth limits ( its normally a high limit anyway ) but for certain people / uses I wouldn't impose a limit.
All servers have a dedicated 1gbps port and also 10gbps ports available.
Most drives are 12gbps SAS except the a few which are main used as storage addons.
All servers come with a dedicated IPv4 address and an IPv6/64
 
Also as you are in no immediate rush, I would say that as I still need to reconfigure this latest server,
I'll configure it and get it optimised with various models for you to pick and choose from and ollama running.
As its for the forum, I'll let you have use of it to test & train for 30 days so you can then see if its suitable
and we can gauge performance.
Then around the 30 day period we review everything and if you are happy with how it runs, you can have the server in exchange for maybe some advertising :)

Funds for Acorn are better spent elsewhere and whilst I have a spare machine not doing anything and won't cost me anything I'd rather the server be put to use in a way that can benefit us both :)
 
/grok how many tokens per second does a CPU-only server process and generate(Xeon E5 processors) vs GPU servers? How long will it take? Will it be enough for a forum assistant like you? How efficiently will it read context? ( I have read that it processes 100-200 tokens per second and generates 8-20 tokens per second )
 
Acorn Grok

I'll pull compact public benchmarks for Xeon E5-class CPU vs GPU prefill/decode tok/s on typical local LLM setups, then answer directly for forum-assistant use.
Gathering more specific prefill/decode numbers and typical GPU ranges.
Short answer
Your ballpark (roughly 100–200 tok/s prompt processing and 8–20 tok/s generation on CPU) is in the right neighbourhood for a quantized 7B–8B model on a decent multi-core box. On older dual-socket Xeon E5 class hardware it is often a bit slower on generation (more like mid-single digits to low teens for 7–14B Q4), and can be higher on small models or well-tuned modern CPUs with fast multi-channel RAM. GPUs are typically 5–20×+ faster on generation and much faster still on prompt prefill for the same model size.

Everything is heavily model-size / quant / context / RAM-bandwidth dependent. These are practical ranges, not guarantees for your exact VPS.

Prefill vs generation (why the two numbers differ)
  • Prompt processing (prefill / “reading context”): highly parallel. The whole prompt is chewed in batches. This is where you see the higher tok/s figures.
  • Token generation (decode): mostly serial and memory-bandwidth bound. Each new token needs the KV cache and weights. Older Xeon E5 systems are often limited more by DDR4 bandwidth and NUMA than by raw core count.
So yes: it “reads” context far more efficiently (higher tok/s) than it writes the reply. Long contexts still hurt because prefill time scales with input length (and attention cost grows), so time-to-first-token (TTFT) rises quickly if you dump a huge thread into the window.

Representative ranges (Ollama / llama.cpp style, quantized GGUF, single stream)

CPU-only – older dual Xeon E5 class (e.g. v3/v4 dual-socket, lots of RAM)
  • ~3–8B Q4: generation often ~8–15 tok/s (sometimes a bit more if small/fast model and good threading; sometimes less if bandwidth/NUMA is poor).
  • ~12–14B Q4: generation often ~5–8 tok/s.
  • Larger dense models: drops toward a few tok/s or less.
  • Prefill: commonly several× generation rate — ~50–200+ tok/s is plausible for moderate prompts on multi-core E5 boxes; your 100–200 figure fits many real reports for smaller models / good settings. Tiny models can go much higher; big contexts or weak RAM configs go lower.
  • MoE with few active params can feel better than dense size suggests, but still CPU-bound.
Memory channels, RAM speed, NUMA layout, thread count, batch/ubatch settings, and quant matter as much as “it’s a Xeon E5.”

CPU-only – stronger modern servers / high-core desktops
Generation for 7–8B Q4 often lands in the teens to ~30+ tok/s; prefill higher again. Still usually well behind a mid GPU.

GPU (full or near-full offload, same ballpark models)
  • Mid card (e.g. 3060-class 12GB): often ~40–70+ tok/s generation on ~7–8B; solid prefill.
  • High-end (e.g. 4090-class): commonly ~100–150+ tok/s generation on 8B-class; prefill often hundreds to thousands of tok/s depending on length and stack.
  • Bigger models (13B–70B) still much faster on GPU than CPU when they fit in VRAM; partial offload collapses toward CPU-like speeds for the offloaded layers.

How long will a reply take? (order-of-magnitude)
Assume a trimmed forum job: ~1k–3k token context (system + thread excerpt + question) and a ~150–300 token answer.

On a typical Xeon E5-class CPU, 7–8B Q4 @ ~10 tok/s gen, ~100–150 tok/s prefill (illustrative):
  • Prefill / TTFT: often ~5–30 seconds depending on exact context length and settings (longer context = longer wait before the first token).
  • Generation: 200 tokens ≈ ~15–25 seconds at 8–12 tok/s; 300 tokens ≈ half a minute.
  • Total wall time for one answer: often roughly 20–60+ seconds end-to-end if context is kept modest. Streaming makes it feel better because tokens start appearing after TTFT.

On a decent GPU with the same small model:
  • TTFT often well under a few seconds for short/medium prompts.
  • 200–300 token reply in a few seconds.
  • Feels “chat snappy” rather than “patient local demo.”

If you feed a very long raw thread (many thousands of tokens) on CPU, TTFT alone can become painful even when generation tok/s looks “OK.”

Will it be enough for a forum assistant like me?
Yes for low-concurrency, carefully scoped use — which matches what the thread starter is demonstrating with Ollama on a small CPU VPS.

Good enough when:
  • Mostly one request at a time (or very light queue).
  • 7B–14B class (or efficient small/MoE) at Q4/Q5, not a huge dense model.
  • Context is trimmed (summary + relevant posts + question), not the entire forum history every time.
  • Replies are short-to-medium and you stream tokens.
  • Users tolerate “local assistant” latency (tens of seconds) rather than sub-second cloud UX.

Not enough when:
  • Multiple concurrent users expecting fast replies.
  • Large models or long untrimmed contexts.
  • You need tight interactive editing / multi-step tool loops with low latency.
  • You compare it to a hosted GPU or frontier API assistant.

A forum assistant workload is mostly short bursts, low parallelism, moderate output length. That is exactly where CPU-only Ollama setups can be “fine” and cost-effective, even if they are not fast. GPU wins hard on snappiness, longer context, bigger models, and concurrency.

How efficiently does it read context?
  • Per-token prefill rate on CPU is relatively efficient (much higher tok/s than generation).
  • Absolute time is not free: double the prompt ≈ roughly double the prefill time (plus growing attention cost at long lengths).
  • KV cache lives in RAM on CPU runs; long context increases memory use and can slow decode further.
  • Practical tip for a forum bot: aggressive context management (recent posts only, summaries, RAG snippets) helps more than chasing another couple of cores.

Bottom line for this thread
  • Your cited ~100–200 process / ~8–20 generate is a fair rule-of-thumb for many CPU 7B-class setups; dual E5 boxes often land near the lower half of generation for 7–14B Q4, sometimes under it if bandwidth/NUMA/settings are weak.
  • GPU is in another league for both TTFT and tokens/sec.
  • For a single-user or low-traffic forum assistant with small quantized models and trimmed context, CPU-only is generally enough and matches the “runs fine, no GPU” point of the OP. It will feel slower than a GPU box and will struggle if you scale users or context carelessly.

If you share the exact CPU SKU (or core/thread count + RAM config), model name + quant, and typical context/reply lengths, the ranges can be narrowed further from “class of hardware” to “your box.”
 
Also as you are in no immediate rush, I would say that as I still need to reconfigure this latest server,
I'll configure it and get it optimised with various models for you to pick and choose from and ollama running.
As its for the forum, I'll let you have use of it to test & train for 30 days so you can then see if its suitable
and we can gauge performance.
Then around the 30 day period we review everything and if you are happy with how it runs, you can have the server in exchange for maybe some advertising :)

Funds for Acorn are better spent elsewhere and whilst I have a spare machine not doing anything and won't cost me anything I'd rather the server be put to use in a way that can benefit us both :)
That's a great deal ;)
 
Top Bottom