Brand Logo

GPT-5.6 Sol Ultrafast Explained: How Cerebras Wafer-Scale Chips Hit 14x LLM Inference Speed

Aerin Kim

Written by

Aerin Kim

OpenAI's new Ultrafast mode runs GPT-5.6 Sol at 750 tokens per second on Cerebras wafer-scale chips. Here is exactly how wafer-scale integration gets there and what it means for real products.

On August 13, 2026, OpenAI previewed something unusual for a frontier lab that has spent years building its own inference stack around Nvidia GPUs: a processing mode for GPT-5.6 Sol that does not run on Nvidia hardware at all [1]. Called Ultrafast, it generates up to 750 output tokens per second, roughly 14 times faster than GPT-5.6 Sol's standard processing tier, and it gets there by routing requests to wafer-scale chips built by Cerebras Systems instead of GPU clusters [2]. OpenAI's own framing of the announcement is direct about why this matters: "Until now, getting real-time speed typically meant choosing a smaller or more specialized model. Ultrafast points to progress in a new direction, more useful work per second" [2].

That is a genuinely different kind of speedup than most of what gets called AI acceleration today. Techniques like speculative decoding, quantization, and batching all squeeze more throughput out of the same GPU hardware. Ultrafast instead swaps the hardware itself for a fundamentally different chip design, one that puts all of a model's memory directly on the same piece of silicon as its compute cores, eliminating the off-chip memory trip that limits every GPU. This post walks through what OpenAI actually shipped, why standard GPU inference hits a hard physical wall at high speed, how Cerebras' wafer-scale architecture avoids that wall, what the independently reported benchmark numbers actually show, and how a production team should think about picking between Ultrafast, Fast mode, and standard processing for a real workload.

gpt-5-6-sol-ultrafast-cerebras-wafer-scale-inference-2026-hero.png

If you want a visual way to show this same idea, the difference between one giant piece of silicon holding everything it needs versus a chip constantly reaching across a bus for data, here is a video generation prompt built around exactly that contrast, written for a Wan-style video model:

A single glowing silicon wafer disc rotates slowly on a soft display pedestal, its surface covered in a dense grid of thousands of tiny illuminated cells that pulse in a fast rippling wave from center to edge, while beside it a small stack of separate GPU chip cards sits still with only a thin glowing line connecting each card to a distant memory block, the wafer's ripple completing many times faster than any single pulse reaching the distant memory block on the small stack. Clean scientific motion-graphics style, precise geometric shapes, soft pastel lighting, no readable text, no logos, no people, slow steady camera orbit around the wafer.

Step 1: What OpenAI Actually Shipped

Ultrafast is a new API service tier, not a new model. It runs the existing GPT-5.6 Sol model, the flagship of the GPT-5.6 family that also includes Terra, a balanced mid-tier model, and Luna, OpenAI's most cost-efficient option [3]. GPT-5.6 Sol already scores 77.4 on Artificial Analysis's Coding Index, a composite across LiveCodeBench, SciCode, and Terminal-Bench, and reaches 88.8 percent on Terminal-Bench 2.1 for agentic coding tasks, with a higher-effort Sol Ultra variant reaching 91.9 percent on the same benchmark [4]. At max reasoning effort, Sol reportedly costs about $1.04 per task on Artificial Analysis's Intelligence Index, which the firm describes as similar intelligence to Claude Fable 5 at roughly a third of the cost [4]. Standard API pricing for Sol is $5 per million input tokens and $30 per million output tokens, with a reduced $0.50 rate for cached input tokens [5].

What changes under Ultrafast is not the model's weights or its answers, only how fast those answers arrive. According to reporting on the OpenAI Developer Community announcement, Ultrafast is powered by Cerebras hardware and is currently in limited preview to a small group of customers, with OpenAI stating access will expand "as capacity grows" [6]. OpenAI names incident response, customer service and support, financial market analysis, and e-commerce as the initial target workloads, all cases where a person or an automated pipeline is waiting on a response in real time rather than batch-processing overnight [2]. Coverage from 9to5Mac and Neowin corroborates the same 14x figure and 750 tokens per second ceiling, and both note the preview is opt-in through a signup form rather than a flag any existing API key can toggle today [7] [8].

It is worth being precise about what "14x" is measured against. OpenAI already ships a Fast mode for API customers, renamed from Priority processing on July 30, 2026, which delivers up to 2.5 times faster and more consistent latency than standard processing by reserving dedicated GPU capacity for a request [9]. Ultrafast's 14x figure is measured against the plain Standard tier, not against Fast mode, so the realistic gap between Fast mode and Ultrafast on the same model is closer to 5 to 6 times, still a large jump, just not quite as dramatic as the headline number implies once you know there is already a faster-than-standard tier sitting between them.

Step 2: Why Standard GPU Inference Hits a Wall

To understand why a completely different chip was worth building, it helps to understand exactly where GPU inference speed runs out of road. Every token an LLM generates requires the model to read its full set of weights from memory at least once. For a large model, that is not a small read. Nvidia's H100 SXM5 GPU has 3.35 terabytes per second of memory bandwidth from its HBM3 memory stacks, which sounds fast until you do the math for a real model: reading roughly 70 gigabytes of weights for a 70 billion parameter model takes about 21 milliseconds per decode step at that bandwidth, and that 21 milliseconds happens again for every single token the model produces [10].

This is what the industry calls the memory wall, and it is a genuinely different bottleneck than raw compute. Modern GPUs have enormous floating point throughput sitting mostly idle during autoregressive decoding, because the GPU is not compute-bound, it is bandwidth-bound, stalled waiting for weights to arrive from HBM over a comparatively narrow interface. A widely cited analysis of the shift from Nvidia's own engineering blog and independent researchers frames this directly as the reason the AI hardware bottleneck has moved from compute to bandwidth over the past several GPU generations, even as peak FLOPS numbers keep climbing [11]. Techniques like batching multiple requests together help amortize this cost across more users at once, and speculative decoding, which we covered in detail in our breakdown of how draft-then-verify inference works, reduces the number of expensive full forward passes needed per output token. But both of those are ways of working around the memory wall on the same hardware. They do not remove it.

gpt-5-6-sol-ultrafast-cerebras-wafer-scale-inference-2026-memory-wall.png

Step 3: How Wafer-Scale Integration Removes the Bottleneck Entirely

Cerebras' answer to the memory wall is architectural rather than algorithmic: stop putting memory off-chip in the first place. A standard chip fabrication process cuts a silicon wafer into many small individual dies, each one becomes a separate GPU or CPU, and memory lives on a physically separate stack of HBM chips connected by a comparatively narrow interconnect. Cerebras' Wafer-Scale Engine takes the opposite approach, treating an entire silicon wafer as a single chip.

The current generation, WSE-3, packs 900,000 AI-optimized cores and 4 trillion transistors onto a single 46,225 square millimeter piece of silicon, officially rated at 125 petaflops of AI compute, which Cerebras states works out to 19 times more transistors and 28 times more raw compute than an Nvidia B200 GPU [12]. Each of those 900,000 cores has its own dedicated 48 kilobytes of SRAM wired directly to its compute unit, with only tens of micrometers of distance between a core and the memory it reads from, connected across the wafer by a two-dimensional mesh fabric where every core communicates with its four immediate neighbors [13]. Multiple independent technical write-ups put the aggregate on-chip SRAM at roughly 44 gigabytes and the on-chip memory bandwidth in the range of tens of petabytes per second, several orders of magnitude above the 3.35 terabytes per second an H100 gets from external HBM [10].

The practical result is that a model's weights, or at least the portion that fits on one wafer, never leave the chip during inference. There is no trip across a memory bus, because compute and memory are the same piece of silicon. This is the same physical principle other Cerebras research has exploited for scientific computing workloads like stencil computations and Ising model simulations, where keeping data resident in on-chip SRAM rather than shuttling it to external memory produced record-setting speedups on problems that are themselves fundamentally bandwidth-bound [14] [15]. Wafer-scale integration is not a new idea invented for this specific product, Cerebras has been building toward it since the original CS-1 system documented in a 2020 paper on wafer-scale stencil-code computation [16], it is the same architecture applied to a new problem: keeping a frontier language model's weights close enough to compute that the memory wall stops being a wall at all.

gpt-5-6-sol-ultrafast-cerebras-wafer-scale-inference-2026-wafer-scale-chip.png

The tradeoff is real and worth naming plainly. 44 gigabytes of on-chip SRAM sounds enormous until you compare it to model size: a 70 billion parameter model at 8-bit precision needs roughly 70 gigabytes just for weights, more than a single WSE-3 can hold. Cerebras handles this in production by quantizing to lower precision, partitioning a model's layers across multiple wafers, or both, meaning wafer-scale inference at frontier model sizes is a distributed systems problem across several chips, not a single-chip trick, even though each individual chip is already the size of an entire dinner plate.

There is a second, less obvious engineering problem wafer-scale chips have to solve that GPUs never face: yield. A standard chip fabrication process expects some fraction of dies on every wafer to come out defective, and the fix is simple, you throw the bad dies away and only sell the good ones. That option does not exist when the entire wafer is the product. Cerebras' answer is what it calls a fail-in-place architecture: the 2D mesh fabric includes redundant cores and links beyond the rated 900,000, so that when a manufacturing defect knocks out a core or a connection, the routing logic simply reroutes around the dead region the same way network traffic reroutes around an outage, rather than the whole wafer being scrapped [12]. This is the part of the design that makes wafer-scale manufacturing economically viable at all, and it is worth understanding because it directly explains why the architecture comparison study cited above flagged manufacturing cost and long-term reliability as the honest open questions, rather than raw performance, when weighing WSE-3 against a fleet of smaller, individually replaceable GPUs [13].

Step 4: What the Independent Benchmarks Actually Show

The 750 tokens per second, 14x figure for GPT-5.6 Sol Ultrafast is OpenAI and Cerebras' own reported number for this specific launch, and as of this writing there is no independent third-party benchmark of that exact configuration yet, since access is still limited to a small preview group. What does exist is a track record of independently reproducible Cerebras inference numbers on other open models, which is useful context for judging how credible the GPT-5.6 Sol figure is.

On Llama 4 Maverick, a 400 billion parameter model, Cerebras has published and had independently covered a benchmark of 2,500-plus tokens per second per user, more than double Nvidia's flagship DGX B200 Blackwell system running the identical model, which manages roughly 1,000 tokens per second in the same comparison [17]. On gpt-oss-120B, Cerebras reports 2,700-plus tokens per second against B200's 900 tokens per second, a roughly 3x gap [17]. On Llama 3.1 70B specifically, independent hardware coverage has clocked Cerebras systems at over 2,100 tokens per second, described as 30 to 50 times faster than typical GPU cloud inference for the same model size [10]. For a reasoning-heavy workload with a 1,024 token input and 4,096 token output on Llama 3 70B, Cerebras reports a 21x inference speed advantage over B200 at 32 percent lower cost [17].

Those are all Cerebras-reported figures, so treat the exact multiples with the same caution you would treat any vendor benchmark, but they come from a chip architecture that has now been independently analyzed in peer-reviewed and preprint literature. A 2026 comparison study specifically measuring WSE-3 against Nvidia's H100 and B200 for AI workloads found the wafer-scale approach ahead on performance-per-watt and memory scalability, while flagging manufacturing cost and long-term reliability as the honest tradeoffs of putting an entire model on one piece of silicon instead of many smaller, individually replaceable GPUs [13]. That pattern, large real wins on latency and throughput, real open questions on cost and reliability at scale, is consistent across the sources above, which is what makes the 750 tokens per second GPT-5.6 Sol figure plausible even without independent third-party confirmation yet.

gpt-5-6-sol-ultrafast-cerebras-wafer-scale-inference-2026-benchmark-comparison.png

Here is a simple benchmarking harness you can point at any OpenAI-compatible chat completions endpoint to measure your own tokens-per-second number once you have preview access, useful for verifying a vendor's throughput claim against your actual workload rather than trusting a headline figure:

python
/code import time import requests def measure_tokens_per_second(api_url, api_key, model, service_tier, prompt, max_tokens=500): """Streams a completion and measures wall-clock tokens per second for a given service tier, so you can verify a vendor's throughput claim against your own prompt shape instead of trusting a press release number.""" headers = {"Authorization": f"Bearer {api_key}", "Content-Type": "application/json"} payload = { "model": model, "service_tier": service_tier, "stream": True, "max_tokens": max_tokens, "messages": [{"role": "user", "content": prompt}], } start = time.monotonic() first_token_time = None token_count = 0 with requests.post(api_url, headers=headers, json=payload, stream=True) as response: response.raise_for_status() for line in response.iter_lines(): if not line or not line.startswith(b"data: "): continue if first_token_time is None: first_token_time = time.monotonic() token_count += 1 end = time.monotonic() generation_time = end - (first_token_time or start) tokens_per_second = token_count / generation_time if generation_time > 0 else 0 return { "service_tier": service_tier, "time_to_first_token_s": round((first_token_time or start) - start, 3), "tokens_per_second": round(tokens_per_second, 1), "total_tokens": token_count, } if __name__ == "__main__": for tier in ["default", "priority", "flex"]: result = measure_tokens_per_second( api_url="https://api.openai.com/v1/chat/completions", api_key="YOUR_API_KEY", model="gpt-5.6-sol", service_tier=tier, prompt="Summarize the last three paragraphs of a long incident report in two sentences.", ) print(result)

Step 5: Ultrafast, Fast Mode, and Standard, Choosing Between Tiers

OpenAI's API now effectively has four speed and cost tiers for a model like GPT-5.6 Sol: Flex, for non-production, latency-tolerant workloads like batch evaluation, which trades slower and occasionally unavailable processing for a lower price [18]; Standard, the default tier most requests use; Fast mode, the renamed Priority tier, offering up to 2.5x faster and more consistent latency than Standard for user-facing production traffic [9]; and now Ultrafast, offering up to 14x Standard's speed on GPT-5.6 Sol specifically, currently gated behind a limited preview [6].

TierSpeed vs StandardBest ForAvailability
FlexSlower, lower costBatch evaluation, async, non-productionGenerally available
StandardBaseline (1x)Default production trafficGenerally available
Fast (formerly Priority)Up to 2.5xUser-facing production, consistent latencyGenerally available
UltrafastUp to 14xReal-time, latency-critical workloadsLimited preview, GPT-5.6 Sol only

The API mechanics for the existing tiers are already documented: you pass a top-level service_tier field in your request body, with flex and priority (or its new alias fast) as the currently public values, and the response includes a service_tier field confirming which tier actually served the request, since a tier can silently fall back under load [9] [18]. OpenAI has not published the exact service_tier value Ultrafast preview customers use, since it is still an invite-only preview rather than a generally available parameter, but the same request-and-response pattern is the reasonable expectation once it opens up. Here is what a tier-aware request looks like using the tiers that are already documented and public today:

bash
/code curl https://api.openai.com/v1/chat/completions \ -H "Authorization: Bearer $OPENAI_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "gpt-5.6-sol", "service_tier": "priority", "messages": [ {"role": "user", "content": "Draft a two-sentence status update for a live incident."} ] }' # The response includes a "service_tier" field confirming which tier # actually served the request, since priority and flex tiers can silently # fall back to standard under capacity pressure. Check it on every response # rather than assuming the tier you requested is the tier you got.

Step 6: Hardware Acceleration Versus Software Acceleration

It is worth placing Ultrafast next to the software-side inference techniques that have driven most of the last two years of LLM speedups, because they are not competing approaches, they are complementary ones that can stack.

Speculative decoding, the technique where a small draft model proposes several tokens that a large target model verifies in a single parallel pass, typically delivers 2 to 3.6 times speedups depending on implementation, and provably produces output identical to standard decoding, as we detailed in our full explainer on the mechanism. Quantization reduces the precision of a model's weights, which shrinks both memory footprint and the amount of data that needs to move per token, at some risk to output quality depending on how aggressively it is applied. Batching serves many requests together so a GPU's compute, not just its memory bandwidth, stays busy, which improves total system throughput but does not improve the latency any single user experiences.

gpt-5-6-sol-ultrafast-cerebras-wafer-scale-inference-2026-technique-comparison.png

Wafer-scale hardware acceleration is different in kind from all three. It does not change how many forward passes a request needs, or how precise the weights are, or how many requests share a GPU. It changes the physical distance and bandwidth between compute and memory, which is why the two categories of technique stack rather than compete. A speculative decoding setup running on Cerebras hardware would still benefit from needing fewer full forward passes through the target model, on top of each of those passes already being faster because the memory wall that normally throttles them is largely gone. Nothing published so far confirms OpenAI is combining the two inside Ultrafast specifically, but there is no architectural reason it could not.

The economics of the two approaches differ too, and it is worth being direct about that rather than treating wafer-scale hardware as a strictly better option. Speculative decoding, quantization, and batching are software changes you can ship against hardware you already own or rent from any cloud provider, with no new procurement decision involved. Wafer-scale inference requires access to a fundamentally different fleet of machines, which is exactly why it arrives as an opt-in API tier through a specific vendor partnership rather than something every OpenAI customer gets automatically. Cerebras has published head-to-head cost figures alongside its speed claims, including the 32 percent lower cost and roughly one-third lower power draw reported in its own CS-3 versus B200 comparison, and lower power draw per token matters at the scale a frontier lab like OpenAI operates at, since inference power cost compounds across billions of daily requests in a way that is easy to underestimate from a single request's latency number alone [17]. That said, those figures come from Cerebras itself, and a full accounting would need to include the cost of maintaining two separate inference fleets and routing logic between them, a real operational overhead that a single-vendor GPU fleet does not carry.

Step 7: What Sub-100-Millisecond Responses Actually Unlock

It is easy to treat inference speed as a pure infrastructure line item, something that shows up on a cloud bill rather than something a user notices. In practice it reshapes what a product can credibly promise. A response that lands in 100 milliseconds instead of 1.5 seconds is the difference between an AI feature feeling like a conversation and feeling like a form submission, and that gap matters most in exactly the categories OpenAI named for the initial preview: incident response systems that need to triage in real time, customer support flows where a visible typing delay reads as the bot being broken, financial systems reacting to fast-moving market data, and e-commerce flows where every extra second of latency measurably increases the chance a shopper abandons the interaction [2].

The same logic applies to any tool that chains multiple model calls into one pipeline, since latency compounds across steps rather than staying fixed. A tool that turns a topic into a finished vertical video, the way Text2Shorts in Miraflow AI generates a script, scene visuals, and a voiceover in sequence, only feels instant if every step in that chain responds quickly, and script generation specifically is exactly the kind of short, latency-sensitive text generation step that a tier like Ultrafast is built for. The same is true when iterating on a prompt in the AI image generator in Miraflow AI, where the perceived speed of a creative tool shapes whether someone tries five variations or gives up after one, or when scanning a long upload for viral moments with AI Clipping, where the analysis pass needs to finish fast enough that reviewing a full video for shorts still feels worth doing. You can see more of how inference-level engineering choices like this show up in real product tradeoffs across the Miraflow AI blog, and every tool referenced here lives at miraflow.ai.

If you want to see the general draft-and-verify style speedup mechanism explained visually before pairing it mentally with the wafer-scale hardware picture above, that video walks through the software side of LLM acceleration in more depth.

Common Mistakes and Misconceptions

A handful of misunderstandings come up consistently when people first encounter wafer-scale inference and tiered API speed options.

  • Assuming Ultrafast is a smaller or distilled version of GPT-5.6 Sol. It is the same model and the same weights, served on different hardware. Nothing about output quality or capability changes between Standard and Ultrafast.
  • Comparing the 14x Ultrafast figure directly to Fast mode's 2.5x figure as if they compound. Both are measured against the plain Standard tier independently, so the realistic gap between Fast mode and Ultrafast specifically is smaller than subtracting the two headline multipliers would suggest.
  • Assuming wafer-scale chips are a drop-in GPU replacement for every workload. They excel at inference and certain bandwidth-bound scientific workloads, but training frontier models at the largest scales still depends heavily on the broader Nvidia ecosystem and its software stack, and a single wafer's finite on-chip SRAM means very large models still require multi-chip partitioning.
  • Treating vendor-reported benchmark multiples as a guaranteed number for your own workload. Acceptance rate, prompt length, output length, and concurrency all shift real-world throughput, which is exactly why the benchmarking harness in Step 4 is worth running yourself once you have access rather than planning capacity purely off a press release number.
  • Assuming a limited preview means the technology is unproven. Wafer-scale inference has multiple years of independently benchmarked deployment on open models like Llama 3.1 70B and Llama 4 Maverick behind it. The preview gate here is about OpenAI's rollout capacity for this specific integration, not about whether the underlying chip architecture works.

Production Architecture and Best Practices

For a team actually building on top of tiered inference speed, a few practices keep this manageable rather than becoming a source of surprise bills or silent latency regressions.

Always check the service_tier field in the response rather than assuming your request got the tier you asked for, since both Flex and priority-style tiers can fall back to Standard under capacity pressure, and a silent fallback that changes your latency profile without changing your code is a common source of confusing production incidents. Reserve the fastest, most expensive tier for the specific request types where latency is user-visible and directly affects conversion or safety, like a live chat reply or an incident triage step, and route batch, background, or non-urgent generation work to Standard or Flex, since paying for 750 tokens per second on a job nobody is watching in real time is pure waste. Build your benchmarking harness once, point it at whichever tier you are evaluating, and re-run it after any model version bump, since a faster tier's relative advantage can shift when the underlying model itself changes. Finally, treat any preview-gated capability like Ultrafast as something to prototype against now and design your abstraction layer to swap in later, rather than something to block a launch on, since preview access windows expand on a schedule outside your control.

Frequently Asked Questions

Is GPT-5.6 Sol Ultrafast a different model from regular GPT-5.6 Sol? No. It is the identical model and weights, served through a different hardware and API tier. Output quality and capability are unchanged, only speed changes.

How do I get access to Ultrafast? As of this writing it is a limited preview available to a small group of customers through an OpenAI signup form, with OpenAI stating access will expand as capacity grows.

Is 750 tokens per second faster than Fast mode? Yes, substantially. Fast mode delivers up to 2.5 times Standard tier speed, while Ultrafast delivers up to 14 times Standard tier speed on GPT-5.6 Sol specifically, meaning Ultrafast is roughly 5 to 6 times faster than Fast mode on the same model.

Does Ultrafast cost more than Standard processing? OpenAI has not published Ultrafast pricing as of this writing, since it remains in limited preview. Existing faster tiers like Fast mode and Priority processing have historically carried a price premium over Standard, so budget for a similar pattern until official pricing is announced.

Why does Cerebras hardware get such a large speedup over GPUs specifically for inference? Because LLM decoding is bandwidth-bound rather than compute-bound. Cerebras' wafer-scale chips keep a model's weights in on-chip SRAM instead of external HBM, removing the memory-to-compute data transfer that limits how fast a GPU can generate each token.

Can Ultrafast-style hardware acceleration be combined with software techniques like speculative decoding? Architecturally yes, since they solve different bottlenecks. Nothing published confirms OpenAI is combining both inside Ultrafast today, but there is no technical reason preventing it.

Conclusion

GPT-5.6 Sol Ultrafast is a useful reminder that the last two years of LLM speed gains have mostly come from software cleverness applied to the same GPU hardware, and that there was always a second lever available: change the hardware itself so the memory wall never shows up in the first place. Cerebras' wafer-scale approach, 900,000 cores and 44 gigabytes of SRAM sharing a single piece of silicon instead of talking to memory over an external bus, is not a new idea invented for this launch, but pairing it with a frontier proprietary model at OpenAI's scale is a meaningfully new kind of deployment, and the 750 tokens per second, 14x figure is consistent with years of independently reported Cerebras benchmarks on other models even before third-party verification of this exact configuration exists. Whether or not your own workload ever touches Ultrafast directly, understanding why it works is useful for reasoning about the next wave of inference speedups, since the memory wall these wafer-scale chips route around is the same physical constraint every GPU-based system on the market is still negotiating with today.

References and Sources

[1] "Previewing Ultrafast mode: GPT-5.6 Sol at up to 14X the speed." OpenAI.

[2] "OpenAI introduces 'Ultrafast,' a new mode that makes GPT-5.6 Sol work at 14x the speed." TechCrunch, August 13, 2026.

[3] "GPT-5.6: Frontier intelligence that scales with your ambition." OpenAI.

[4] "GPT-5.6 benchmarks across Intelligence, Speed and Cost." Artificial Analysis.

[5] "gpt-5.6-sol API Pricing & Cost." Requesty.

[6] "Ultrafast mode preview: GPT-5.6 Sol at up to 14X the speed in the API." OpenAI Developer Community.

[7] "OpenAI previews 'Ultrafast' GPT-5.6 Sol running up to 14 times faster." 9to5Mac, August 13, 2026.

[8] "OpenAI introduces new Ultrafast mode for GPT-5.6 Sol delivering 14x faster tokens." Neowin.

[9] "Fast mode." OpenAI API documentation.

[10] "Cerebras Enters AI Inference, Blows Away Tiny NVIDIA H100 GPUs by Besting HBM." ServeTheHome.

[11] "NVIDIA, Cerebras, and the Memory Wall: How the AI Bottleneck Shifted from Compute to Bandwidth." FourWeekMBA.

[12] "WSE-3 chip specifications." Cerebras Systems.

[13] "A Comparison of the Cerebras Wafer-Scale Integration Technology with Nvidia GPU-based Systems for Artificial Intelligence." arXiv:2503.11698.

[14] "Stencil Computations on Cerebras Wafer-Scale Engine." arXiv:2605.07954.

[15] "Record Acceleration of the Two-Dimensional Ising Model Using High-Performance Wafer Scale Engine." arXiv:2404.16990.

[16] "Fast Stencil-Code Computation on a Wafer-Scale Processor." arXiv:2010.03660.

[17] "Cerebras CS-3 vs. Nvidia DGX B200 Blackwell." Cerebras Systems.

[18] "Flex processing." OpenAI API documentation.

[19] "Fast Inference from Transformers via Speculative Decoding." arXiv:2211.17192.