Back to News
Advertisement
Advertisement

⚡ Community Insights

Discussion Sentiment

51% Positive

Analyzed from 1878 words in the discussion.

Trending Topics

#token#read#useful#expert#tokens#per#still#model#prompt#models

Discussion (44 Comments)Read Original on HackerNews

alex7o•about 1 hour ago
I think this is cool not for kimi but for sth like glm flash
lukeduff•about 2 hours ago
Reminds me of Deep Thought from Hitchhiker's Guide to the Galaxy
schmorptron•about 1 hour ago
It's kind of insane how having this tech at this speed 5 years ago would have probably still been seen as insanely useful and revolutionary. If LLMs were more capable but dramatically slower, I wonder how it would impact how we use it? Dramatically more thought being put into prompts, much more preparation probably
batperson•about 1 hour ago
The future of inference is likely in ASICs, so we'll get the inverse, a bit less capable than frontier but super fast models. Like this 14k tok/s beast https://chatjimmy.ai/ from Taalas (who got acquired by AMD recently).

GPT-6-astra runs at like ~40 tok/s, I have a hard time imagining what could be accomplished with that type of model at 10k+ tok/s when in the hands of the public. Will certainly make cybersecurity a challenge for older systems.

domhudson•41 minutes ago
This is incredible! Are there other big players in this space (freezing models to silicon)?
redox99•about 1 hour ago
At 1t/s it's still faster than humans for a lot of tasks, basically doing overnight what could take humans half a week. Plus you can always parallelize.
Izmaki•42 minutes ago
This is what people forget when they see slow performance: at 1 t/s it's still roughly the equivalent of having another person work for you at no extra cost besides the initial purchase/sign-on-bonus.

Frontier models are amazing, but what will really be useful for us is having models and hardware so efficient that you can run useful LLMs locally. One of my favourite LLMs to this day is still my jail-broken gemma4 12b because it's small enough to run on my computer, but also 100% local and free as in liberty.

mhaberl•37 minutes ago
I would agree, but I want to add that I have real issues with combination of opencode plus slow inference (4-5tok/s).

I get weird interruptions. I can only guess its related to some kind of timeouts in the harness or something.

Its not a problem of the model of course, but it seems impractical atm.

I wonder if anyone else had this kind of thing happening.

Capricorn2481•37 minutes ago
> At 1t/s it's still faster than humans for a lot of tasks

Which tasks? I think you're underestimating how token hungry current proposed workflows are.

IgorPartola•about 1 hour ago
My parents learned to program on punch cards. They told me it was a day of preparing the program, an hour of running it, just to get a syntax error.
tobyjsullivan•42 minutes ago
Those machines were also manually scheduled. So you booked in your time slot to run your program in advance. That syntax error meant not being able to run the fixed version until your next scheduled session, maybe days later.
bluedino•35 minutes ago
Write the program, punch the cards, send the cards to another building to be loaded, program runs, printout comes out in another building, somehow this takes 2-3 days
pjdesno•about 1 hour ago
I wonder if faster SSDs would help?

In particular you can still get used Optane SSDs on eBay, although they’re fairly pricey. (not the bogus m.2 ones that are slower than a halfway decent consumer NVMe)

zamadatix•38 minutes ago
LLMs tend to care for sequential bandwidth more than random access. From that perspective, Optane probably doesn't offer much of an advantage vs other NVMe drives even from the same era while losing out greatly to newer drives with faster busses to fill. There could be something special to this particular instance but https://github.com/argonautlabsai/deltafin/blob/main/k3-publ... and the overall tok/s numbers seem to suggest it's just the sequential that's playing in.
voiceeh•about 1 hour ago
That's actually pretty neat.
dusted•about 1 hour ago
A medium prompt in only 11 days.
pvab3•about 1 hour ago
when it finishes answering you already figured out the question
meerita•29 minutes ago
3600 words in one hour.
jgalt212•about 1 hour ago
A medium prompt = 1 million tokens?
RugnirViking•34 minutes ago
How many times have you had a model start compacting already before getting back to you? Most have 1 million context window. It's happened to me occasionally
jgalt212•22 minutes ago
I don't use agents. I like to code and AI with a REPL.
dymk•about 1 hour ago
These slop readmes are painful to read.
saejox•about 1 hour ago
make it 4x40 raid-0 ssds to achieve 40 tps.

or 40 macbooks with each 4 ssd. to get 40 tps.

npn•42 minutes ago
yeah raid or not you still get the hard limitation by the pcie lanes

it is even worse with 40 macbooks.

if 40 macbooks is all that take to serve a 1TB model with decent speed then you would see everyone selling the models for very cheap right now.

willmadden•about 2 hours ago
That's next level masochism.
netc•about 1 hour ago
And macOSism
bluechair•about 1 hour ago
I missed the explanation for how the SSDs are connected.

Maybe a dumb question.

Argonautlabs•about 1 hour ago
SSDs are connected via Thunderbolt 5 enclosures. I have one Gen4 and three Gen5 ssds inside enclosures. You can see specs here

https://github.com/argonautlabsai/deltafin/tree/main/k3-publ...

grosswait•13 minutes ago
So if this all streamed from the internal NVME would you expect better performance?
Argonautlabs•7 minutes ago
Just internal 2Tb Macbook M5 Max drive it came in at roughly half the four-drive speed

(0.535 vs 1.038 tok/s at 128 tokens), since one fast drive still has to serve all 16 reads per layer while four drives split the load

https://raw.githubusercontent.com/argonautlabsai/deltafin/ma...

ChaseRensberger•about 1 hour ago
not sure ive ever seen a #1 post on HN with only 5 stars
Argonautlabs•about 2 hours ago
Author here. Some context and the caveats up front. The model is Kimi K3, 2.78T parameters, ~1.45 TB of expert weights. It does not fit in memory, so the experts stream from disk: one 17.5 MB file per (layer, expert), read with pread + F_NOCACHE, 16 of 896 per layer. The machine is an M5 Max MacBook Pro with 128 GB and three Thunderbolt 5 enclosures plus the internal SSD. Expert weights are untouched at their released MXFP4 precision; the resident attention trunk is int8, which upstream labels non-weight-exact, so I don't claim bit-exactness against BF16 — I claim token-identical output against my own reference on the prompt of record, checked on every promotion. Numbers, with the unflattering ones in the same paragraph as the good ones: 1.00 tok/s steady over a 512-token completion, 1.13 over 128 tokens, and 0.96 median on the 17-token benchmark from the upstream repo's issue #15 against the 0.684 posted there. Time to first token on a 512-token prompt is about 6.3 minutes — prefill is currently read-amplified 6.2x, which is the biggest open problem in the repo and is described in the results directory. What I think is actually interesting isn't the number, it's that four of the gains came from defects in the read path that instrumentation found and I would never have guessed. The instruments are in a second repo, ARGODRIVE — a 10 ms per-device read monitor, a per-read barrier trace that records which drive served each expert and which one landed last in every pass, and a config assertion harness that refuses to record a benchmark unless the setting under test actually fired. They're deltafin-specific today. The four findings: • A constant capped the reader threads at 16 and bounded both the demand and prefetch pools with the same value. Separating them was +14%; demand queueing went from 70% of blocked time to 7.5%. • Splitting each hot expert's read across two replicas on two devices was +10% — after the same knob had measured negative six times on layouts where every expert had one home and there was nothing to split against. • The prefetch path had no balancer at all: it walked a fixed directory order and took the first hit, so on any replicated layout it dumped everything on one enclosure. Giving it least-expected-completion dispatch with in-flight counters shared with the demand path was +11% and turned every replicated layout I had previously measured as a loss into a win. • A recorded "law" that a given draft depth was worse turned out to have been measured against a drafter that no longer existed. Re-testing it was +8%. There's also a drive-count ladder in the repo — same layout, one to four drives: 57% / 78% / 92% / 100% of the four-drive decode rate. And a catalogue of about a thousand timed runs of things that did not work, with the numbers: RAM expert caches from 8 to 40 GB (-4% to -48%), striping a single copy (-7 to -25%), two drives sharing one Thunderbolt link (-11%), streaming the attention trunk from SSD (-60%), Metal's file-loading API (-19 to -22%). That catalogue is the part I expect to be most useful to other people. The engine is a fork of gavamedia/deltafin, which is MIT and did the hard part; I've told the author about all of this and the upstream-relevant fixes are going back as PRs. Two things I'd genuinely like help with: whether anyone has done expert-major prefill scheduling on an MoE (read each expert once per layer and run its kernel over all rows routed to it — it should take prefill from 6.2x amplification to about 1x), and whether the drive ladder reproduces on other hardware.
pavlov•about 2 hours ago
This response is so dense with numbers and special characters that it's probably about 1000 tokens. So at 1 token/s, it takes almost 17 minutes to generate this on the MacBook Pro.
springtimesun•about 2 hours ago
But, Kimi thought for 36k tokens before writing it.
embedding-shape•about 1 hour ago
And maybe author sent ~1K tokens as the starting prompt, and possibly some more stuff in the system prompt, and add on top of that that Apple hardware is famously bad at prompt processing.
bel8•about 2 hours ago
And it probably takes longer for a human to compile all that info.
anigbrowl•21 minutes ago
So we meet again, wall of text. I thought I had killed you in Istanbul.
copperx•about 1 hour ago
The hyphenated terms get worse and worse as you keep reading. Just kill me now.
sampullman•about 2 hours ago
This is difficult to read, maybe just link to a gist?
woadwarrior01•about 2 hours ago
That's because it's copy pasted from a coding agent.
anamexis•about 2 hours ago
It's difficult to read because it doesn't have line breaks.
sampullman•about 2 hours ago
It looks at least partially hand edited to me, although it's getting pretty difficult to tell with Astra...
NooneAtAll3•21 minutes ago
if anyone else is lost at how big/small 512 tokens are - this wall of text is 843 tokens, according to https://token-calculator.net

so... enough for 1 question + 1 long answer?

Advertisement
voidnullvalue•about 2 hours ago
But why though? Cannot possibly be useful at such slow speeds, and costs a ton to perform that badly
roadside_picnic•about 2 hours ago
I've never understood why "Hacker" News so frequently gets "But why though?" comments at the top.

The entire history of innovation is filled with people doing something just to see they can get it to work, even if badly, and then people continue to iterate on that until it works better, then works well, and then is so obvious people would never even question it. But it all starts with someone doing it to scratch an itch.

Neural networks, the foundation of our current AI revolution, used to fit well into the "neat, but practically useless" category.

Sure there are countless "but why though?" experiments that don't pan out, but that's just the cost of exploration. There can be no step-function innovation in a world where people only do things that make immediate practical sense.

sixothree•about 1 hour ago
Gen X here. Having grown up in the 80's I remember multiple occasions where someone would ask "what are you going to do with a computer?". As in, what could a computer possibly be useful for. Just imagine someone asking this question today. It would probably be more shaped like the comment you are responding to.

What are you going to do with a computer? I've always hated this attitude. We do these things because they are interesting to us, for the fun of exploration, because we enjoy learning, because we want to iterate and improve, to make the world better, or any plethora of reasons that involve intellectual curiosity of some sort.

NooneAtAll3•17 minutes ago
> "what are you going to do with a computer?"

> Just imagine someone asking this question today.

to be fair, considering how young folks live whole life in a smartphone nowadays...

nicce•about 2 hours ago
I guess the point of this whole forum is "Why not?"
ganelonhb•about 2 hours ago
I think the point is that it’s running at all…
Argonautlabs•about 2 hours ago
It actully does the job. Example: every morning it takes 30-40 minutes to generate reports automatically and these reports are being sent as a pdf to read to Telegram.
cyanydeez•about 2 hours ago
Qwen3.8-Flash-Next ships with a 51B lookup table that can be read directly from ssd or memory, which greatly improves it's speed and intelligence. It can load at 4bit quant in ~60GB.

These demos are maybe useless, but if open models keep progressing, there's going to be some break through that continues whittling down just how much needs to be kept in VRAM, and progressive degredation to regular system ram and to ssds.

Afterall, they're not writing anything to these, so saturing all bandwidth could bring models to the masses. all without any help from Zark Muckerberg.

pianopatrick•about 1 hour ago
I've had the thought that an underexplored use case for llms is treating them as classification machines. Put in a lot of input then ask for a single token classifying the input. Like "does this code have any bugs? reply "yes" or "no""

Doing something like that at 1 token per second may be useful.

Argonautlabs•about 1 hour ago
That's the one workload this setup is worst at today, unfortunately: output tokens are cheap at 1/s but input isn't — a 512-token prompt takes ~6 minutes before the first token,

because prefill currently reads each layer's experts once per 64-row pass (~9 TB of reads for a 1.4 TB model).

Fix is scheduling and it's the next thing being built; once prefill reads each expert once per layer, the one-token-out classifier pattern becomes the sweet spot rather than the worst case.

fnetisma•about 2 hours ago
The Github README literally has a "But Why?" section
glimshe•about 2 hours ago
It's not useful for actual work, but the fact it can be run at all shows that we're evolving towards enabling powerful LLMs to run locally.
copperx•about 1 hour ago
Because we can. And K3 is frontier-like. Running on a MacBook Pro.
LatencyKills•about 2 hours ago
I hate seeing comments like this on HN. We used to upvote “look at this crazy thing I did” work. Not everything has to make sense or be ground breaking.

It is cool that they got it to work at all.

Argonautlabs•about 2 hours ago
Not useful for chat, agreed — and I wouldn't pretend otherwise. It's useful for the other kind of work: scheduled, unattended jobs where nobody is waiting on the cursor. My use is day/week/month end review — go through the numbers, flag what doesn't reconcile, draft the report — and there the two things that matter are that the model is good enough to trust with the judgement (K3 is, and it's the full 2.8T model, not a cut-down one) and that the data never leaves the machine.
voiceeh•about 1 hour ago
>and I wouldn't pretend otherwise.

Such of a Claudism. Not criticizing, just noticing.