Live data from Hacker News

Cerebras launches Qwen3-235B, achieving 1.5k tokens per second

cerebras.ai

61–70 of 160 posts

Re: Cerebras launches Qwen3-235B, achieving 1.5k tokens per second

#61

If this is the full fp16 quant, you'd need 2TB of memory to use with the full 131k context. With 44GB of SRAM per Cerebras chip, you'd need 45 chips chained together. $3m per chip. $135m total to run this. For comparison, you can buy a DGX B200 with 8x B200 Blackwell chips and 1.4TB of memory for around $500k. Two systems would give you 2.8TB memory which is enough for this. So $1m vs $135m to run this model. It's no…

So, does that mean that in general for the most modern high end LLM tools, to generate ~1500 tokens per seconds you need around $500k in hardware? Checking: Anthropic charges $70 per 1 million output tokens. @1500 tokens per second that would be around 10 cents per second, or around $8k per day. The $500k sounds about right then, unless I’m mistaken.

62 days to break even, that would be a great investment

Re: Cerebras launches Qwen3-235B, achieving 1.5k tokens per second

#62
post #6
post #4

Very impressive speed. With a context window of 40K however, usability is limited.

Post says 131k context though? What did I miss?

The situation is very confusing, but the tweet that went out with the announcement indicates it's not full 131k context yet and that is coming "soon"https://xcancel.com/CerebrasSystems/status/19437653011094202...

Re: Cerebras launches Qwen3-235B, achieving 1.5k tokens per second

#63
post #8

It seem this news is "outdated" as it's from Jul 8 and might picked up confusing this model with yesterday Qwen 3 coder 405B release that is different in specs.

I initially thought this was about the Qwen release from two days ago, Qwen3-235B-A22B-Instruct-2507 - https://simonwillison.net/2025/Jul/22/qwen3-235b-a22b-instru... - but that's a no-reasoning model and the Cerebras announcement talks about reasoning, which tipped me off that this was Qwen's Qwen3-235B-A22B from April.

(These model names are so confusing.)

Re: Cerebras launches Qwen3-235B, achieving 1.5k tokens per second

#64
post #55

Earlier quoted context omitted.

what are the bandwidth/latency of memoryX? those are the key parameters for inference

Well MemoryX compared to H100 HBM3 the key details are that MemoryX has lower latency, but also far lower bandwidth. However the memory on Cerebras is scales a lot more over NVidia. You need a cluster of H100's to create a model, as only way to scale the memory, Cerbras is more suited to that aspect, Nvidia do their scaling in tooling, with Cerbras doing theirs in design via there silicon approach. That's my take on…

No way an offchip HBM has same or better bandwidth then onchip

Re: Cerebras launches Qwen3-235B, achieving 1.5k tokens per second

#65

Earlier quoted context omitted.

nah, it was designed for hpc and raw flops. llm inference really requires memory bandwidth.

Memory bandwidth, eh? You should learn the basics about what Cerebras does. https://www.cerebras.ai/chip

Sheeeesh. 21 petabytes per second of memory bandwidth? That’s bonkers.

Re: Cerebras launches Qwen3-235B, achieving 1.5k tokens per second

#66
post #46

Earlier quoted context omitted.

I am using Claude code, my experience with it so far is great. I use it primarily from terminal, this way I stay focused while reading code and CC doing its job in the background.

I’ve heard this repeated that using the env vars you can use gpt models, for example. But then also that running a proxy tool locally is needed. I haven’t tried this setup, and can’t say offhand if Cerebras’ hosted qwen described here is “OpenAI” compatible. I also don’t know if all of the tools CC uses out of the box are supported in the most compatible non-Anthropic models. Can anyone provide clarity / additional t…

I've used Kimi K2, it works well. Personally I'm using Claude Code Router.

https://github.com/musistudio/claude-code-router

Re: Cerebras launches Qwen3-235B, achieving 1.5k tokens per second

#67
post #16

K2 is also now available on Groq https://console.groq.com/docs/model/moonshotai/kimi-k2-instr... very fun to see agents using those backends

k2 on groq is really bad right now. I'm not sure what's causing the problem, but they've said that they are working on a few different issues.

Re: Cerebras launches Qwen3-235B, achieving 1.5k tokens per second

#68
post #55

Earlier quoted context omitted.

what are the bandwidth/latency of memoryX? those are the key parameters for inference

Well MemoryX compared to H100 HBM3 the key details are that MemoryX has lower latency, but also far lower bandwidth. However the memory on Cerebras is scales a lot more over NVidia. You need a cluster of H100's to create a model, as only way to scale the memory, Cerbras is more suited to that aspect, Nvidia do their scaling in tooling, with Cerbras doing theirs in design via there silicon approach. That's my take on…

[deleted]

Re: Cerebras launches Qwen3-235B, achieving 1.5k tokens per second

#69
post #56
post #43

Earlier quoted context omitted.

There is no reason to run models for inference at static fp16, modern quantisation formats dynamically assign precision to the layers that need them, an average of 6bpw is practical imperceptible from full precision, 8bpw if you really want to squeeze every tiny last drop out of it (although it's unlikely it will be detectable). That is a huge memory saving.

> dynamically assign precision to the layers that need them Well now I'm curious; how is a layer judged on its relative need for precision? I guess I still have a lot of learning to do w.r.t. how quantization is done. I was under the impression it was done once, statically, and produced a new giant GGUF blob or whatever format your weights are in. Does that assumption still hold true for the approach you're describin…

Last I checked they ran some sort of evals before and after quantisation and measured the effect. E.g Exllama-v2 measures the loss while reciting Wikipedia articles.
Post reply on HN