Skip to main content
llama.cpp

llama.cpp

SoftwareWikipedia

Search complete. 73 mentions across 48 episodes found for "llama.cpp".

Sep 11, 2026

CJ TrowbridgeGUEST
58:38
And they have a Xeon, and they have two GPUs, and they're, like, small GPUs, but it's big enough that you can, you can put the parts of the model that need to go fast on there.
CJ TrowbridgeGUEST
58:47
So something like Ollama or Llama.cpp, they'll do that automatically.
CJ TrowbridgeGUEST
58:51
They'll take the encoder, the decoder layers, the KV cache, and stick that on the GPUs, run everything else out of the system RAM.
CJ TrowbridgeGUEST
58:58
And suddenly you can run these huge models, or even from the hard drive, right? You don't even need the RAM to hold the model.
YuvalHOST
17:23
Third is the intelligence engine, which can be any local model like Llama Three or Gemma.
YuvalHOST
17:28
Fourth is the inference engine itself, like Llama CPP or VLM.
AmitHOST
17:33
And the fifth primitive covers tools and memory using a standard protocol, along with learning systems like direct preference optimization or LoRA to make the agent persistently improve over time.
YuvalHOST
17:45
The absolute coolest part of the presentation by John was the optimization loop To bridge the gap between local and cloud models, they actually use a cloud model to automatically optimize the local stack configuration.
Carl FranklinHOST
20:24
But I don't think it was enough because it was doing the confusing things that the other models had done earlier, which is telling you that it couldn't reach the API, giving you some weird nil error and stopping.
Carl FranklinHOST
20:41
So Rocky tells me about llama.cpp. And lama.cpp is an alternative to olama that it allows you to host models.
Carl FranklinHOST
20:54
But the cool thing about it is that it can take the compute heavy stuff and run that in VRAM, and then it can use your system RAM for the rest of it.
Carl FranklinHOST
21:04
Now, I don't know if it swaps things in and out, system RAM, VRAM, or it just runs some things that don't require such a heavy load.
Carl FranklinHOST
21:46
So the episode would be 43, and that would be on last week, September 2nd.
Carl FranklinHOST
21:55
So if you want to see what that does, I'm going to have a live demo of it.
Carl FranklinHOST
21:59
Going to try it, but llama.cpp. Know it, learn it, love it.
Carl FranklinHOST
22:02
Cool.
Carl FranklinHOST
21:09
it was enough, because it was, it was doing the confusing things that the other models had done earlier, which is telling you that it, you know, couldn't reach the API, um, giving you some weird nil error and stopping.
Carl FranklinHOST
21:26
So Rocky tells me about llama.cpp, and llama.cpp is an alternative to Ollama that, uh, it allows you to host models.
Carl FranklinHOST
21:39
But the cool thing about it is that it can take the compute-heavy stuff and run that in VRAM, and then it can use your system RAM for the rest of it.
Carl FranklinHOST
21:49
Now, I don't know if it swaps things in and out, system RAM, VRAM, or it just runs some things that don't require such a heavy load-
Richard CampbellHOST
22:40
Okay.
Carl FranklinHOST
22:40
So if you wanna see what that does, I'm gonna have a live demo of it.
Carl FranklinHOST
22:44
Gonna try it, but llama.cpp. Know it, learn it, love it.
Richard CampbellHOST
22:47
Cool.
Carl FranklinHOST
19:53
But I don't think it was enough because it was doing the confusing things that the other models had done earlier, which is telling you that it couldn't reach the API, giving you some weird nil error and stopping.
Carl FranklinHOST
20:11
So Rocky tells me about llama.cpp. And lama.cpp is an alternative to olama that it allows you to host models.
Carl FranklinHOST
20:24
But the cool thing about it is that it can take the compute heavy stuff and run that in VRAM, and then it can use your system RAM for the rest of it.
Carl FranklinHOST
20:34
Now, I don't know if it swaps things in and out, system RAM, VRAM, or it just runs some things that don't require such a heavy load.
Carl FranklinHOST
21:16
So the episode would be 43 and that would be on last week, September 2nd.
Carl FranklinHOST
21:25
So if you want to see what that does, I'm going to have a live demo of it.
Carl FranklinHOST
21:28
I'm going to try it, but llama.cpp. Know it, learn it, love it.
Carl FranklinHOST
21:32
Cool.
speaker_0HOST
16:20
Oh, I see.
speaker_1HOST
16:21
You need to be running your own self-hosted open weight models on runtimes like VLLM, llama.cpp or MLX.
speaker_0HOST
16:28
So what does this all mean for the average dev? Like if I'm a developer reliant on a closed hosted API right now, if I'm just sending REST requests to OpenAI, Anthropic or Gemini, I don't have access to their internal inference math.
speaker_1HOST
16:40
You don't.
Mike AdamsHOST
1:00
You know how I have all these older sixteen gig, uh, GPUs sitting around, like forty of them, that I thought were no longer useful? Well, it turns out suddenly they're useful again because some brilliant person came up with this idea of what's called KV cache streaming.
Mike AdamsHOST
1:18
It's a fork of Llama CPP, which is the inference engine that serves models, and it turns out you can take this Alibaba Qwen twenty-seven B model, and I'll, I'll stop geeking out here in a second.
Mike AdamsHOST
1:30
You can take this model, and you can run it on these sixteen gig cards with multiple concurrency lanes because of KV cache streaming, and it's freaking fast.
Mike AdamsHOST
1:41
So all of a sudden, there's new life, uh, in my old GPUs, and I've been working to put them back into production in my mini data center, which is serving up all the, you know, all the book writing for the BrightLearn engine and, uh, all the document processing for BrightAnswers.ai, et cetera.
Woohyeuk LeeGUEST
1:47
And yeah, the first paper is on a subreddit named r slash local llama, which hosts people who Seek local AI and kind of build systems around it.
Woohyeuk LeeGUEST
2:03
And the second paper is on llama.cpp, which is a cross-platform inference tooling system.
Woohyeuk LeeGUEST
2:13
And yeah, it's on what infrastructure must exist underneath llama.cpp and who shapes it.
speaker_1HOST
2:21
So
Woohyeuk LeeGUEST
2:23
I'll get into the slides.

7 MINS LATER

Woohyeuk LeeGUEST
8:59
Yeah.
Woohyeuk LeeGUEST
9:08
I also want to talk about what localness means as an infrastructure.
Woohyeuk LeeGUEST
9:19
And this is specifically on the second paper discussing llama.cpp.
Greg IsenbergHOST
6:05
And I'll explain what those two things are.
Greg IsenbergHOST
6:07
Llama.cpp powers a lot of the local model inference.
Greg IsenbergHOST
6:12
MLX matters if you're on Apple Silicon.
Greg IsenbergHOST
6:16
And if you're thinking about shipping real on-device apps in the Google ecosystem, that's where Google AI Edge and Lite RT LM come in.
Matt HousleyHOST
6:13
But I would also say if I were interested in starting a new company, I might run out and say I am starting a competitor to Hugging Face that's going to focus on non-NVIDIA hardware.
Miriah PetersonGUEST
6:24
I don't think Hugging Face is hardware-specific, though, because the only thing they have that's hardware-specific is they support Llama C++, which does have hardware-specific builds.
Miriah PetersonGUEST
6:34
But you go to any Hugging Face transformer repo, which is what I use, and they say, OK, great.
Miriah PetersonGUEST
6:40
Here is how to run it on all 15 different kinds of hardware.

38 more episodes mention llama.cpp.

Create an account to see the whole feed, search across every transcript, and follow the entities you care about.

We value your privacy

We use cookies to understand how you use our platform and to improve your experience. Click “Accept All” to consent, or “Decline non-essential” to opt out of non-essential cookies. Read our Privacy Policy.