Replies: 1 comment
|
Hey, building Throttle: semantic cache for self-hosted inference. Cuts repeat-query costs 40-60%, zero code changes. Works with vLLM, Ollama, SGLang, LMDeploy. Open-source, free beta. Looking for users to test: |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
I’ve been seeing a lot of discussions about running DeepSeek-V4-Flash-0731 on high-end setups like dual H100s or DGX Spark. But what if you don’t have that kind of hardware? Can you still run this beast on consumer-grade GPUs with limited VRAM?
I’ve been experimenting with a hybrid inference approach that offloads part of the MoE experts to system RAM + CPU when the model doesn’t fit entirely into GPU memory. Think of it as a “VRAM extender” for MoE models — the GPU still handles most of the compute, but the CPU steps in to help with expert layers dynamically.
I’m using a custom inference stack built on top of a modified sglang and vLLM backend, with a high-performance kernel library that handles the CPU-GPU scheduling and NUMA-aware memory management. The whole thing is designed to “just work” without requiring model sharding or complex distributed setups.
Benchmark Results (real runs on actual hardware)
Here are two configurations I’ve tested so far:
Open GPU Prefill, max_num_batched_tokens=8192 (Row 1), max_num_batched_tokens=32768 (Row 2)
All reactions