Loading video...

Video Failed to Load

Go Home

bro casually walks and explains 5 GPU performance optimization methods for LLMs. one of the most simple and intuitive explanations for beginners.

945,138 views • 8 months ago •via X (Twitter)

37 Comments

ℏεsam's profile picture
ℏεsam8 months ago

the most casual conversation in SF

Rituraj's profile picture
Rituraj8 months ago

@lindavivah @robertnishihara If you can't explain PagedAttention or Quantization while dodging traffic on a sidewalk, you don't understand it well enough. The industry is full of 40-page whitepapers that say less than this guy says in a 2-minute walk. "Casual" is the new "Expert."

ℏεsam's profile picture
ℏεsam8 months ago

@lindavivah @robertnishihara this must be an interview standard take a walk with the HR

Linda Vivah (Haviv)'s profile picture
Linda Vivah (Haviv)8 months ago

@robertnishihara @robertnishihara is the best! ⭐️

ℏεsam's profile picture
ℏεsam8 months ago

@robertnishihara you can see his mastery by just the way he explains

ℏεsam's profile picture
ℏεsam8 months ago

imagine having your feed full of vids like this absolute brain rot

liz's profile picture
liz8 months ago

@lindavivah @robertnishihara did i just get bamboozled into watching an ad for ray

Harvey Vogelmann's profile picture
Harvey Vogelmann8 months ago

Here’s the clean, structured version of what you’re saying, without the vlog artifacts and with the technical distinctions made explicit. ⸻ LLM inference vs. “regular” inference 1. Variable-length computation and continuous batching Traditional inference (e.g. CNNs for vision) assumes: •fixed-size inputs •fixed compute graphs •fixed latency per request LLMs break all of that: •prompts vary in length •outputs vary in length •total compute per request is unknown upfront Batching is the main lever for inference efficiency, but variable-length requests finish at different times. You can’t just wait for the slowest one without wasting GPU cycles. LLM systems therefore rely on continuous batching: dynamically inserting and removing requests from a batch as tokens complete. This problem simply doesn’t exist for fixed-shape models. ⸻ 2. Two fundamentally different phases: prefill vs. decode LLM inference is split into two stages: •Prefill: process the full input prompt •Decode: generate tokens one at a time These have very different characteristics: •Prefill is typically compute-bound •Decode is typically memory-bandwidth-bound Running both on the same GPUs causes interference and latency jitter. High-performance systems often use prefill–decode disaggregation, running them on separate compute pools and transferring state between them. This separation is largely irrelevant for conventional models. ⸻ 3. GPU memory management and KV caching LLMs depend heavily on caching: •Multi-turn conversations reuse shared prefixes •Intermediate attention states (KV cache) must persist across turns This introduces hard problems: •What to cache vs. recompute •When to evict or swap cache entries •How to avoid GPU memory fragmentation Modern LLM serving borrows ideas from virtual memory (paged KV caches) to manage this complexity efficiently. Regular models don’t have long-lived, request-specific internal state, so this entire class of problems barely exists there. ⸻ 4. Prefix-aware routing Scaling non-LLM inference usually means: •replicate the model •route requests round-robin or by load LLMs benefit from routing based on cached prefixes: •a request should go to the replica that already holds its KV cache •naive load balancing destroys cache locality and performance This forces routing logic to become state-aware rather than stateless. That’s a major architectural difference. ⸻ 5. Sharding and Mixture-of-Experts (MoE) Most classical models scale by replication. LLMs increasingly use Mixture-of-Experts architectures: •attention layers shared across GPUs •expert layers sharded across GPUs •tokens dynamically routed to experts during inference This results in: •one logical model spread across many devices •fine-grained, data-dependent routing inside a single request That’s not “many replicas.” It’s one distributed model with internal traffic patterns that change per token. ⸻ Why specialized LLM inference engines exist These differences are why general inference runtimes aren’t enough. Engines like vLLM, SGLang, and TensorRT-LLM exist specifically to handle: •continuous batching •KV cache management •prefix-aware routing •prefill/decode separation •MoE sharding Systems like Ray sit above these to orchestrate them at scale. ⸻ LLM inference isn’t just “bigger models.” It’s a different systems problem.

jaradcannon's profile picture
jaradcannon8 months ago

@lindavivah @robertnishihara What is this from and how do I watch more of these?

Morgan's profile picture
Morgan8 months ago

@lindavivah @robertnishihara Insane - probably the best explanation I’ve seen so far. It’s funny how you can totally ace this walking down the street in NYC. More proof you don’t need a podcast studio, lights, etc. it’s all about who is doing the explaining and how cracked they are 🔥

Steve Sperandeo 🇨🇦's profile picture
Steve Sperandeo 🇨🇦8 months ago

@lindavivah @robertnishihara That's no ordinary bro. That's one of the nicest and coolest CEOs in silicon valley. I've spoken with him and know people that know him well. Robert is a class act. Highly recommend his company, if you haven't used it.

Loganix's profile picture
Loganix8 months ago

@lindavivah @robertnishihara this is a great format normalize outdoor podcasts

Joe's profile picture
Joe8 months ago

@lindavivah @robertnishihara I understood 2.3% of this

EastCoaster81's profile picture
EastCoaster818 months ago

@lindavivah @robertnishihara Meh. Very little of this stuff existed 10 minutes ago and most won’t exist 10 minutes from now, but I guess it’s cool to hyper specialize on the transitory

Dr. Nir Regev's profile picture
Dr. Nir Regev8 months ago

@lindavivah @robertnishihara Inference is inference.

Gill's profile picture
Gill8 months ago

@lindavivah @robertnishihara This is my favorite genre of explanation — zero slides, zero buzzwords, just vibes and first principles. If more ML content sounded like this, way fewer people would be intimidated.

Rachit's profile picture
Rachit8 months ago

@lindavivah @robertnishihara Brother casually pulls out all these facts, puts it together on the fly and does it in the most non chalant way possible

Ashish “Logmaster”'s profile picture
Ashish “Logmaster”8 months ago

@lindavivah @robertnishihara He is the cofounder of Ray/anyscale which is used for ML training

Mot Nosnews's profile picture
Mot Nosnews8 months ago

@lindavivah @robertnishihara Sounds like a lot of concepts repurposed from operating systems.

inverseJimmah's profile picture
inverseJimmah8 months ago

@lindavivah @robertnishihara This was awesome. He’s gives a perfect amount of context

Pepe Tolete's profile picture
Pepe Tolete8 months ago

@lindavivah @robertnishihara If you cannot translate/word your response depending on the expertise of the person asking, you have not mastered your subject. Well done 👍

goutham kamath's profile picture
goutham kamath8 months ago

@lindavivah @robertnishihara Huge respect to @robertnishihara big fan of ray

Lee Penkman's profile picture
Lee Penkman8 months ago

@lindavivah @robertnishihara nice

Lucas Bean's profile picture
Lucas Bean8 months ago

@lindavivah @robertnishihara With a phd I’d hope he be able to explain it this way

Franco Sebastián Benítez's profile picture
Franco Sebastián Benítez8 months ago

@lindavivah @robertnishihara That's how we look when we're asked about a topic we're very passionate about

Cody's profile picture
Cody8 months ago

@lindavivah @robertnishihara Tell me you’re on a Hinge date in SF without telling me you’re on a Hibge date in SF

Brian Via's profile picture
Brian Via8 months ago

@lindavivah @robertnishihara Some baddie could go wife that guy up and be set for life. Somewhat surprised the host doesn’t to be honest. I’m turned on just listening to him.

Lukman's profile picture
Lukman8 months ago

@lindavivah @robertnishihara Bro casually explained these concepts while dodging traffic

gerry🗯's profile picture
gerry🗯8 months ago

@lindavivah @robertnishihara @robertnishihara are you doing more of these? That was super helpful

Joe Pfeiff's profile picture
Joe Pfeiff8 months ago

@lindavivah @robertnishihara Sounds a lot like they need middle out processing and arrange the data tip to tip facing each other to maintain optimal load batches

Ape Manor's profile picture
Ape Manor8 months ago

Spot on – Robert Nishihara dropping pure gold while strolling through the city. His breakdown of continuous batching, prefill/decode disaggregation, paged attention, prefix caching, and MoE sharding is one of the clearest intros to LLM serving optimizations I've seen. Everything he said checks out perfectly with current best practices in vLLM, Ray Serve, etc. Super accessible for beginners but still spot-on technically. More walking tech talks please! 🚀

Hyperware's profile picture
Hyperware8 months ago

@lindavivah @robertnishihara Man is a G

Kanan's profile picture
Kanan8 months ago

@lindavivah @robertnishihara This is one of the best explanations I've seen so far!

harsh's profile picture
harsh8 months ago

@lindavivah @robertnishihara Just made me realise , I know nothing about ml ops, off to learning it.

Michael Cadogan's profile picture
Michael Cadogan8 months ago

@lindavivah @robertnishihara OK, dude, you are hired!

BNS's profile picture
BNS8 months ago

@lindavivah @robertnishihara is this guy human? 😵‍💫

Michael Williams's profile picture
Michael Williams8 months ago

@lindavivah @robertnishihara I hope bro gets laid

Related Videos