Remote Prompt Processing for Low VRAM

segmond · reddit · 2026-07-17

The author proposes a remote prompt processing approach for users with low VRAM: - The real bottleneck for local LLMs is often not generation speed, but slow **prompt processing (pre-processing)**, especially under partial/full CPU offloading scenarios. - The idea is to offload long-context pre-processing to a machine with sufficient VRAM, save the intermediate state, and transfer it back to the host for token generation. Even if the host only generates at 5-10 tok/s, wait times for long prompts drop significantly. - Example: 50k tokens at 10 tok/s takes about 1.5 hours; with a stronger GPU handling prompt processing first, it could finish in under a minute and start generating immediately. - The author envisions a shared service where multiple users share one server just for PP, rigged together via `curl/scp/bash`, ideally packaged eventually as a `--pp-server`.

Original post →

More from Infra

Infra channel →