# store design (blogs) — RSS Amplifier

Recent posts from the 1 feeds in the RSS Amplifier directory that cover store design.

Page: <https://rssamplifier.com/topics/store-design/blogs>  
Feed: <https://rssamplifier.com/topics/store-design/blogs.md>

---

## [Tensor Deduplication for Multi-Model Inference](https://nitingupta.dev/post/tensor-dedup/)

_2025-12-08 · ngupta@nitingupta.dev (Nitin Gupta) · Nitin Gupta_

Summary &#xA; &#xA; Problem : Multi-model workloads are the norm: A/B tests, customer fine-tunes, safety variants, multi-stage pipelines. GPU memory scales linearly with model count, and VRAM is the limiting resource. &#xA; Solution : Tensor deduplication automatically identifies and shares bit-identical weight tensors across models, requiring no checkpoint modifications. &#xA; Results : Across…

## [Shared Backbones: Loading Weights Once, Serving Many Models](https://nitingupta.dev/post/shared-backbones/)

_2025-11-29 · ngupta@nitingupta.dev (Nitin Gupta) · Nitin Gupta_

I keep running into the same pattern when trying to self-host models (which is a lot of fun): we run several big models side by side, all of them valuable, all of them slightly different, and all of them wasting VRAM by reloading nearly the same weights. &#xA; This post is my attempt to explore a specific idea: &#xA; Can we load a shared backbone of weights once on a GPU, then load only the small,…

