正在加载视频...

视频加载失败

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

945,138 次观看 • 8 个月前 •via X (Twitter)

37 条评论

ℏεsam 的头像
ℏεsam8 个月前

the most casual conversation in SF

Rituraj 的头像
Rituraj8 个月前

@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 的头像
ℏεsam8 个月前

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

Linda Vivah (Haviv) 的头像
Linda Vivah (Haviv)8 个月前

@robertnishihara @robertnishihara is the best! ⭐️

ℏεsam 的头像
ℏεsam8 个月前

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

ℏεsam 的头像
ℏεsam8 个月前

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

liz 的头像
liz8 个月前

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

Harvey Vogelmann 的头像
Harvey Vogelmann8 个月前

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 的头像
jaradcannon8 个月前

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

Morgan 的头像
Morgan8 个月前

@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 🇨🇦 的头像
Steve Sperandeo 🇨🇦8 个月前

@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 的头像
Loganix8 个月前

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

Joe 的头像
Joe8 个月前

@lindavivah @robertnishihara I understood 2.3% of this

EastCoaster81 的头像
EastCoaster818 个月前

@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 的头像
Dr. Nir Regev8 个月前

@lindavivah @robertnishihara Inference is inference.

Gill 的头像
Gill8 个月前

@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 的头像
Rachit8 个月前

@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” 的头像
Ashish “Logmaster”8 个月前

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

Mot Nosnews 的头像
Mot Nosnews8 个月前

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

inverseJimmah 的头像
inverseJimmah8 个月前

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

Pepe Tolete 的头像
Pepe Tolete8 个月前

@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 的头像
goutham kamath8 个月前

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

Lee Penkman 的头像
Lee Penkman8 个月前

@lindavivah @robertnishihara nice

Lucas Bean 的头像
Lucas Bean8 个月前

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

Franco Sebastián Benítez 的头像
Franco Sebastián Benítez8 个月前

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

Cody 的头像
Cody8 个月前

@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 的头像
Brian Via8 个月前

@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 的头像
Lukman8 个月前

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

gerry🗯 的头像
gerry🗯8 个月前

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

Joe Pfeiff 的头像
Joe Pfeiff8 个月前

@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 的头像
Ape Manor8 个月前

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 的头像
Hyperware8 个月前

@lindavivah @robertnishihara Man is a G

Kanan 的头像
Kanan8 个月前

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

harsh 的头像
harsh8 个月前

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

Michael Cadogan 的头像
Michael Cadogan8 个月前

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

BNS 的头像
BNS8 个月前

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

Michael Williams 的头像
Michael Williams8 个月前

@lindavivah @robertnishihara I hope bro gets laid

相关视频