What is LPU? Language Processing Units


Introduction: Why Talk About LPUs in 2026?

The AI hardware landscape is shifting rapidly. Five years ago, GPUs dominated every conversation about AI acceleration. Today, agentic AI, real‑time chatbots and massively scaled reasoning systems expose the limits of general‑purpose graphics processors. Language Processing Units (LPUs)—chips purpose‑built for large language model (LLM) inference—are capturing attention because they offer deterministic latency, high throughput and excellent energy efficiency. In December 2025, Nvidia signed a non‑exclusive licensing agreement with Groq to integrate LPU technology into its roadmap. At the same time, AI platforms like Clarifai released reasoning engines that double inference speed while slashing costs by 40 %. These developments illustrate that accelerating inference is now as strategic as speeding up training.

The goal of this article is to cut through the hype. We will explain what LPUs are, how they differ from GPUs and TPUs, why they matter for inference, where they shine, and where they do not. We’ll also offer a framework for choosing between LPUs and other accelerators, discuss real‑world use cases, outline common pitfalls and explore how Clarifai’s software‑first approach fits into this evolving landscape. Whether you’re a CTO, a data scientist or a builder launching AI products, this article provides actionable guidance rather than generic speculation.

Quick digest

  • LPUs are specialized chips designed by Groq to accelerate autoregressive language inference. They feature on‑chip SRAM, deterministic execution and an assembly‑line architecture.
  • GPUs remain irreplaceable for training and batch inference, but LPUs excel at low‑latency, single‑stream workloads.
  • Clarifai’s reasoning engine shows that software optimization can rival hardware gains, achieving 544 tokens/sec with 3.6 s time‑to‑first‑token on commodity GPUs.
  • Choosing the right accelerator involves balancing latency, throughput, cost, power and ecosystem maturity. We’ll provide decision trees and checklists to guide you.

Introduction to LPUs and Their Place in AI

Context and origins

Language Processing Units are a new class of AI accelerator invented by Groq. Unlike Graphics Processing Units (GPUs)—which were adapted from rendering pipelines to serve as parallel math engines—LPUs were conceived specifically for inference on autoregressive language models. Groq recognized that autoregressive inference is inherently sequential, not parallel: you generate one token, append it to the input, then generate the next. This “token‑by‑token” nature means batch size is often one, and the system cannot hide memory latency by doing thousands of operations simultaneously. Groq’s response was to design a chip where compute and memory live together on one die, connected by a deterministic “conveyor belt” that eliminates random stalls and unpredictable latency.

LPUs gained traction when Groq demonstrated Llama 2 70B running at 300 tokens per second, roughly ten times faster than high‑end GPU clusters. The excitement culminated in December 2025 when Nvidia licensed Groq’s technology and hired key engineers. Meanwhile, more than 1.9 million developers adopted GroqCloud by late 2025. LPUs sit alongside CPUs, GPUs and TPUs in what we call the AI Hardware Triad—three specialized roles: training (GPU/TPU), inference (LPU) and hybrid (future GPU–LPU combinations). This framework helps readers contextualize LPUs as a complement rather than a replacement.

How LPUs work

The LPU architecture is defined by four principles:

  1. Software‑first design. Groq started with compiler design rather than chip layout. The compiler treats models as assembly lines and schedules operations across chips deterministically. Developers need not write custom kernels for each model, reducing complexity.
  2. Programmable assembly‑line architecture. The chip uses “conveyor belts” to move data between SIMD function units. Each instruction knows where to fetch data, what function to apply and where to send output. No hardware scheduler or branch predictor intervenes.
  3. Deterministic compute and networking. Execution timing is fully predictable; the compiler knows exactly when each operation will occur. This eliminates jitter, giving LPUs consistent tail latency.
  4. On‑chip SRAM memory. LPUs integrate hundreds of megabytes of SRAM (230 MB in first‑generation chips) as primary weight storage. With up to 80 TB/s internal bandwidth, compute units can fetch weights at full speed without crossing slower memory interfaces.

Where LPUs apply and where they don’t

LPUs were built for natural language inference—generative chatbots, virtual assistants, translation services, voice interaction and real‑time reasoning. They are not general compute engines; they cannot render graphics or accelerate matrix multiplication for image models. LPUs also do not replace GPUs for training, because training benefits from high throughput and can amortize memory latency across large batches. The ecosystem for LPUs remains young; tooling, frameworks and available model adapters are limited compared with mature GPU ecosystems.

Common misconceptions

  • LPUs replace GPUs. False. LPUs specialize in inference and complement GPUs and TPUs.
  • LPUs are slower because they are sequential. Inference is sequential by nature; designing for that reality accelerates performance.
  • LPUs are just rebranded TPUs. TPUs were created for high‑throughput training; LPUs are optimized for low‑latency inference with static scheduling and on‑chip memory.

Expert insights

  • Jonathan Ross, Groq founder: Building the compiler before the chip ensured a software‑first approach that simplified development.
  • Pure Storage analysis: LPUs deliver 2–3× speed‑ups on key AI inference workloads compared with GPUs.
  • ServerMania: LPUs emphasize sequential processing and on‑chip memory, whereas GPUs excel at parallel throughput.

Quick summary

Question: What makes LPUs unique and why were they invented?
Summary: LPUs were created by Groq as purpose‑built inference accelerators. They integrate compute and memory on a single chip, use deterministic “assembly lines” and focus on sequential token generation. This design mitigates the memory wall that slows GPUs during autoregressive inference, delivering predictable latency and higher efficiency for language workloads while complementing GPUs in training.

Architectural Differences – LPU vs GPU vs TPU

Key differentiators

To appreciate the LPU advantage, it helps to compare architectures. GPUs contain thousands of small cores designed for parallel processing. They rely on high‑bandwidth memory (HBM or GDDR) and complex cache hierarchies to manage data movement. GPUs excel at training deep networks or rendering graphics but suffer latency when batch size is one. TPUs are matrix‑multiplication engines optimized for high‑throughput training. LPUs invert this pattern: they feature deterministic, sequential compute units with large on‑chip SRAM and static execution graphs. The following table summarizes key differences (data approximate as of 2026):

Accelerator Architecture Best for Memory type Power efficiency Latency
LPU (Groq TSP) Sequential, deterministic LLM inference On‑chip SRAM (230 MB) ~1 W/token Deterministic, <100 ms
GPU (Nvidia H100) Parallel, non‑deterministic Training & batch inference HBM3 off‑chip 5–10 W/token Variable, 200–1000 ms
TPU (Google) Matrix multiplier arrays High‑throughput training HBM & caches ~4–6 W/token Variable, 150–700 ms

LPUs deliver deterministic latency because they avoid unpredictable caches, branch predictors and dynamic schedulers. They stream data through conveyor belts that feed function units at precise clock cycles. This ensures that once a token is predicted, the next cycle’s operations start immediately. By comparison, GPUs have to fetch weights from HBM, wait for caches and reorder instructions at runtime, causing jitter.

Why on‑chip memory matters

The largest barrier to inference speed is the memory wall—moving model weights from external DRAM or HBM across a bus to compute units. A single 70‑billion parameter model can weigh over 140 GB; retrieving that for each token results in enormous data movement. LPUs circumvent this by storing weights on chip in SRAM. Internal bandwidth of 80 TB/s means the chip can deliver data orders of magnitude faster than HBM. SRAM access energy is also much lower, contributing to the ~1 W per token energy usage.

However, on‑chip memory is limited; the first‑generation LPU has 230 MB of SRAM. Running larger models requires multiple LPUs with a specialized Plesiosynchronous protocol that aligns chips into a single logical core. This introduces scale‑out challenges and cost trade‑offs discussed later.

Static scheduling vs dynamic scheduling

GPUs rely on dynamic scheduling. Thousands of threads are managed in hardware; caches guess which data will be accessed next; branch predictors try to prefetch instructions. This complexity introduces variable latency, or “jitter,” which is detrimental to real‑time experiences. LPUs compile the entire execution graph ahead of time, including inter‑chip communication. Static scheduling means there are no cache coherency protocols, reorder buffers or speculative execution. Every operation happens exactly when the compiler says it will, eliminating tail latency. Static scheduling also enables two forms of parallelism: tensor parallelism (splitting one layer across chips) and pipeline parallelism (streaming outputs from one layer to the next).

Negative knowledge: limitations of LPUs

  • Memory capacity: Because SRAM is expensive and limited, large models require hundreds of LPUs to serve a single instance (about 576 LPUs for Llama 70B). This increases capital cost and energy footprint.
  • Compile time: Static scheduling requires compiling the full model into the LPU’s instruction set. When models change frequently during research, compile times can be a bottleneck.
  • Ecosystem maturity: CUDA, PyTorch and TensorFlow ecosystems have matured over a decade. LPU tooling and model adapters are still developing.

The “Latency–Throughput Quadrant” framework

To help organizations map workloads to hardware, consider the Latency–Throughput Quadrant:

  • Quadrant I (Low latency, Low throughput): Real‑time chatbots, voice assistants, interactive agents → LPUs.
  • Quadrant II (Low latency, High throughput): Rare; requires custom ASICs or mixed architectures.
  • Quadrant III (High latency, High throughput): Training large models, batch inference, image classification → GPUs/TPUs.
  • Quadrant IV (High latency, Low throughput): Not performance sensitive; often run on CPUs.

This framework makes it clear that LPUs fill a niche—low latency inference—rather than supplanting GPUs entirely.

Expert insights

  • Andrew Ling (Groq Head of ML Compilers): Emphasizes that TruePoint numerics allow LPUs to maintain high precision while using lower‑bit storage, eliminating the usual trade‑off between speed and accuracy.
  • ServerMania: Identifies that LPUs’ targeted design results in lower power consumption and deterministic latency.

Quick summary

Question: How do LPUs differ from GPUs and TPUs?
Summary: LPUs are deterministic, sequential accelerators with on‑chip SRAM that stream tokens through an assembly‑line architecture. GPUs and TPUs rely on off‑chip memory and parallel execution, leading to higher throughput but unpredictable latency. LPUs deliver ~1 W per token and <100 ms latency but suffer from limited memory and compile‑time costs.

Performance & Energy Efficiency – Why LPUs Shine in Inference

Benchmarking throughput and energy

Real‑world measurements illustrate the LPU advantage in latency‑critical tasks. According to benchmarks published in early 2026, Groq’s LPU inference engine delivers:

  • Llama 2 7B: 750 tokens/sec vs ~40 tokens/sec on Nvidia H100.
  • Llama 2 70B: 300 tokens/sec vs 30–40 tokens/sec on H100.
  • Mixtral 8×7B: ~500 tokens/sec vs ~50 tokens/sec on GPUs.
  • Llama 3 8B: Over 1,300 tokens/sec.

On the energy front, the per‑token energy cost for LPUs is between 1 and 3 joules, whereas GPU‑based inference consumes 10–30 joules per token. This ten‑fold reduction compounds at scale; serving a million tokens with an LPU uses roughly 1–3 kWh versus 10–30 kWh for GPUs.

Deterministic latency

Determinism is not just about averages. Many AI products fail because of tail latency—the slowest 1 % of responses. For conversational AI, even a single 500 ms stall can degrade user experience. LPUs eliminate jitter by using static scheduling; each token generation takes a predictable number of cycles. Benchmarks report time‑to‑first‑token under 100 ms, enabling interactive dialogues and agentic reasoning loops that feel instantaneous.

Operational considerations

While the headline numbers are impressive, operational depth matters:

  • Scaling across chips: To serve large models, organizations must deploy multiple LPUs and configure the Plesiosynchronous network. Setting up chip‑to‑chip synchronization, power and cooling infrastructure requires specialized expertise. Groq’s compiler hides some complexity, but teams must still manage hardware provisioning and rack‑level networking.
  • Compiler workflows: Before running an LPU, models must be compiled into the Groq instruction set. The compiler optimizes memory layout and execution schedules. Compile time can range from minutes to hours, depending on model size and complexity.
  • Software integration: LPUs support ONNX models but require specific adapters; not every open‑source model is ready out of the box. Companies may need to build or adapt tokenizers, weight formats and quantization routines.

Trade‑offs and cost analysis

The biggest trade‑off is cost. Independent analyses suggest that under equivalent throughput, LPU hardware can cost up to 40× more than H100 deployments. This is partly due to the need for hundreds of chips for large models and partly because SRAM is more expensive than HBM. Yet for workloads where latency is mission‑critical, the alternative is not “GPU vs LPU” but “LPU vs infeasibility”. In scenarios like high‑frequency trading or generative agents powering real‑time games, waiting one second for a response is unacceptable. Thus, the value proposition depends on the application.

Opinionated stance

As of 2026, the author believes LPUs represent a paradigm shift for inference that cannot be ignored. Ten‑fold improvements in throughput and energy consumption transform what is possible with language models. However, LPUs should not be purchased blindly. Organizations must conduct a tokens‑per‑watt‑per‑dollar analysis to determine whether the latency gains justify the capital and integration costs. Hybrid architectures, where GPUs train and serve high‑throughput workloads and LPUs handle latency‑critical requests, will likely dominate.

Expert insights

  • Pure Storage: AI inference engines using LPUs deliver approximately 2–3× speed‑ups over GPU‑based solutions for sequential tasks.
  • Introl benchmarks: LPUs run Mixtral and Llama models 10× faster than H100 clusters, with per‑token energy usage of 1–3 joules vs 10–30 joules for GPUs.

Quick summary

Question: Why do LPUs outperform GPUs in inference?
Summary: LPUs achieve higher token throughput and lower energy usage because they eliminate memory latency by storing weights on chip and executing operations deterministically. Benchmarks show 10× speed advantages for models like Llama 2 70B and significant energy savings. The trade‑off is cost—LPUs require many chips for large models and have higher capital expense—but for latency‑critical workloads the performance benefits are transformational.

Real‑World Applications – Where LPUs Outperform GPUs

Applications suited to LPUs

LPUs shine in latency‑critical, sequential workloads. Common scenarios include:

  • Conversational agents and chatbots. Real‑time dialogue demands low latency so that each reply feels instantaneous. Deterministic 50 ms tail latency ensures consistent user experience.
  • Voice assistants and transcription. Voice recognition and speech synthesis require quick turn‑around to maintain natural conversational flow. LPUs handle each token without jitter.
  • Machine translation and localization. Real‑time translation for customer support or global meetings benefits from consistent, fast token generation.
  • Agentic AI and reasoning loops. Systems that perform multi‑step reasoning (e.g., code generation, planning, multi‑model orchestration) need to chain multiple generative calls quickly. Sub‑100 ms latency allows complex reasoning chains to run in seconds.
  • High‑frequency trading and gaming. Latency reductions can translate directly to competitive advantage; microseconds matter.

These tasks fall squarely into Quadrant I of the Latency–Throughput framework. They often involve a batch size of one and require strict response times. In such contexts, paying a premium for deterministic speed is justified.

Conditional decision tree

To decide whether to deploy an LPU, ask:

  1. Is the workload training or inference? If training or large‑batch inference → choose GPUs/TPUs.
  2. Is latency critical (<100 ms per request)? If yes → consider LPUs.
  3. Does the model fit within available on‑chip SRAM, or can you afford multiple chips? If no → either reduce model size or wait for second‑generation LPUs with larger SRAM.
  4. Are there alternative optimizations (quantization, caching, batching) that meet latency requirements on GPUs? Try these first. If they suffice → avoid LPU costs.
  5. Does your software stack support LPU compilation and integration? If not → factor in the effort to port models.

Only if all conditions favor LPU should you invest. Otherwise, mid‑tier GPUs with algorithmic optimizations—quantization, pruning, Low‑Rank Adaptation (LoRA), dynamic batching—may deliver adequate performance at lower cost.

Clarifai example: chatbots at scale

Clarifai’s customers often deploy chatbots that handle thousands of concurrent conversations. Many select hardware‑agnostic compute orchestration and apply quantization to deliver acceptable latency on GPUs. However, for premium services requiring 50 ms latency, they can explore integrating LPUs through Clarifai’s platform. Clarifai’s infrastructure supports deploying models on CPU, mid‑tier GPUs, high‑end GPUs or specialized accelerators like TPUs; as LPUs mature, the platform can orchestrate workloads across them.

When LPUs are unnecessary

LPUs offer little advantage for:

  • Image processing and rendering. GPUs remain unmatched for image and video workloads.
  • Batch inference. When you can batch thousands of requests together, GPUs achieve high throughput and amortize memory latency.
  • Research with frequent model changes. Static scheduling and compile times hinder experimentation.
  • Workloads with moderate latency requirements (200–500 ms). Algorithmic optimizations on GPUs often suffice.

Expert insights

  • ServerMania: When to consider LPUs—handling large language models for speech translation, voice recognition and virtual assistants.
  • Clarifai engineers: Emphasize that software optimizations like quantization, LoRA and dynamic batching can reduce costs by 40 % without new hardware.

Quick summary

Question: Which workloads benefit most from LPUs?
Summary: LPUs excel in applications requiring deterministic low latency and small batch sizes—chatbots, voice assistants, real‑time translation and agentic reasoning loops. They are unnecessary for high‑throughput training, batch inference or image workloads. Use the decision tree above to evaluate your specific scenario.

Trade‑Offs, Limitations and Failure Modes of LPUs

Memory constraints and scaling

LPUs’ greatest strength—on‑chip SRAM—is also their biggest limitation. 230 MB of SRAM suffices for 7‑B parameter models but not for 70‑B or 175‑B models. Serving Llama 2 70B requires about 576 LPUs working in unison. This translates into racks of hardware, high power delivery and specialized cooling. Even with second‑generation chips expected to use a 4 nm process and possibly larger SRAM, memory remains the bottleneck.

Cost and economics

SRAM is expensive. Analyses suggest that, measured purely on throughput, Groq hardware costs up to 40× more than equivalent H100 clusters. While energy efficiency reduces operational expenditure, the capital expenditure can be prohibitive for startups. Furthermore, total cost of ownership (TCO) includes compile time, developer training, integration and potential lock‑in. For some businesses, accelerating inference at the cost of losing flexibility may not make sense.

Compile time and flexibility

The static scheduling compiler must map each model to the LPU’s assembly line. This can take significant time, making LPUs less suitable for environments where models change frequently or incremental updates are common. Research labs iterating on architectures may find GPUs more convenient because they support dynamic computation graphs.

Chip‑to‑chip communication and bottlenecks

The Plesiosynchronous protocol aligns multiple LPUs into a single logical core. While it eliminates clock drift, communication between chips introduces potential bottlenecks. The system must ensure that each chip receives weights at exactly the right clock cycle. Misconfiguration or network congestion could erode deterministic guarantees. Organizations deploying large LPU clusters must plan for high‑speed interconnects and redundancy.

Failure checklist (original framework)

To assess risk, apply the LPU Failure Checklist:

  1. Model size vs SRAM: Does the model fit within available on‑chip memory? If not, can you partition it across chips? If neither, do not proceed.
  2. Latency requirement: Is response time under 100 ms critical? If not, consider GPUs with quantization.
  3. Budget: Can your organization afford the capital expenditure of dozens or hundreds of LPUs? If not, choose alternatives.
  4. Software readiness: Are your models in ONNX format or convertible? Do you have expertise to write compilation scripts? If not, anticipate delays.
  5. Integration complexity: Does your infrastructure support high‑speed interconnects, cooling and power for dense LPU clusters? If not, plan upgrades or opt for cloud services.

Negative knowledge

  • LPUs are not general‑purpose: You cannot run arbitrary code or use them for image rendering. Attempting to do so will result in poor performance.
  • LPUs do not solve training bottlenecks: Training remains dominated by GPUs and TPUs.
  • Early benchmarks may exaggerate: Many published numbers are vendor‑provided; independent benchmarking is essential.

Expert insights

  • Reuters: Groq’s SRAM approach frees it from external memory crunches but limits the size of models it can serve.
  • Introl: When comparing cost and latency, the question is often LPU vs infeasibility because other hardware cannot meet sub‑300 ms latencies.

Quick summary

Question: What are the downsides and failure cases for LPUs?
Summary: LPUs require many chips for large models, driving costs up to 40× those of GPU clusters. Static compilation hinders rapid iteration, and on‑chip SRAM limits model size. Carefully evaluate model size, latency needs, budget and infrastructure readiness using the LPU Failure Checklist before committing.

Decision Guide – Choosing Between LPUs, GPUs and Other Accelerators

Key criteria for selection

Selecting the right accelerator involves balancing multiple variables:

  1. Workload type: Training vs inference; image vs language; sequential vs parallel.
  2. Latency vs throughput: Does your application demand milliseconds or can it tolerate seconds? Use the Latency–Throughput Quadrant to locate your workload.
  3. Cost and energy: Hardware and power budgets, plus availability of supply. LPUs offer energy savings but at high capital cost; GPUs have lower up‑front cost but higher operating cost.
  4. Software ecosystem: Mature frameworks exist for GPUs; LPUs and photonic chips require custom compilers and adapters.
  5. Scalability: Consider how easily hardware can be added or shared. GPUs can be rented in the cloud; LPUs require dedicated clusters.
  6. Future‑proofing: Evaluate vendor roadmaps; second‑generation LPUs and hybrid GPU–LPU chips may change economics in 2026–2027.

Conditional logic

  • If the workload is training or batch inference with large datasets → Use GPUs/TPUs.
  • If the workload requires sub‑100 ms latency and batch size 1 → Consider LPUs; check the LPU Failure Checklist.
  • If the workload has moderate latency requirements but cost is a concern → Use mid‑tier GPUs combined with quantization, pruning, LoRA and dynamic batching.
  • If you cannot access high‑end hardware or want to avoid vendor lock‑in → Employ DePIN networks or multi‑cloud strategies to rent distributed GPUs; DePIN markets could unlock $3.5 trillion in value by 2028.
  • If your model is larger than 70 B parameters and cannot be partitioned → Wait for second‑generation LPUs or consider TPUs/MI300X chips.

Alternative accelerators

Beyond LPUs, several options exist:

  • Mid‑tier GPUs: Often overlooked, they can handle many production workloads at a fraction of the cost of H100s when combined with algorithmic optimizations.
  • AMD MI300X: A data‑center GPU that offers competitive performance at lower cost, though with less mature software support.
  • Google TPU v5: Optimized for training with massive matrix multiplication; limited support for inference but improving.
  • Photonic chips: Research teams have demonstrated photonic convolution chips offering 10–100× energy efficiency over electronic GPUs. These chips process data with light instead of electricity, achieving near‑zero energy consumption. They remain experimental but are worth watching.
  • DePIN networks and multi‑cloud: Decentralized Physical Infrastructure Networks rent out unused GPUs via blockchain incentives. Enterprises can tap tens of thousands of GPUs across continents with cost savings of 50–80 %. Multi‑cloud strategies avoid vendor lock‑in and exploit regional price differences.

Hardware Selector Checklist (framework)

To systematize evaluation, use the Hardware Selector Checklist:

Criterion LPU GPU/TPU Mid‑tier GPU with optimizations Photonic/Other
Latency requirement (<100 ms) ✔ (future)
Training capability
Cost per token High CAPEX, low OPEX Medium CAPEX, medium OPEX Low CAPEX, medium OPEX Unknown
Software ecosystem Emerging Mature Mature Immature
Energy efficiency Excellent Poor–Moderate Moderate Excellent
Scalability Limited by SRAM & compile time High via cloud High via cloud Experimental

This checklist, combined with the Latency–Throughput Quadrant, helps organizations select the right tool for the job.

Expert insights

  • Clarifai engineers: Stress that dynamic batching and quantization can deliver 40 % cost reductions on GPUs.
  • ServerMania: Reminds that the LPU ecosystem is still young; GPUs remain the mainstream option for most workloads.

Quick summary

Question: How should organizations choose between LPUs, GPUs and other accelerators?
Summary: Evaluate your workload’s latency requirements, model size, budget, software ecosystem and future plans. Use conditional logic and the Hardware Selector Checklist to choose. LPUs are unmatched for sub‑100 ms language inference; GPUs remain best for training and batch inference; mid‑tier GPUs with quantization offer a low‑cost middle ground; experimental photonic chips may disrupt the market by 2028.

Clarifai’s Approach to Fast, Affordable Inference

The reasoning engine

In September 2025, Clarifai introduced a reasoning engine that makes running AI models twice as fast and 40 % less expensive. Rather than relying on exotic hardware, Clarifai optimized inference through software and orchestration. CEO Matthew Zeiler explained that the platform applies “a variety of optimizations, all the way down to CUDA kernels and speculative decoding techniques” to squeeze more performance out of the same GPUs. Independent benchmarking by Artificial Analysis placed Clarifai in the “most attractive quadrant” for inference providers.

Compute orchestration and model inference

Clarifai’s platform provides compute orchestration, model inference, model training, data management and AI workflows—all delivered as a unified service. Developers can run open‑source models such as GPT‑OSS‑120B, Llama or DeepSeek with minimal setup. Key features include:

  • Hardware‑agnostic deployment: Models can run on CPUs, mid‑tier GPUs, high‑end clusters or specialized accelerators (TPUs). The platform automatically optimizes compute allocation, allowing customers to achieve up to 90 % less compute usage for the same workloads.
  • Quantization, pruning and LoRA: Built‑in tools reduce model size and speed up inference. Clarifai supports quantizing weights to INT8 or lower, pruning redundant parameters and using Low‑Rank Adaptation to fine‑tune models efficiently.
  • Dynamic batching and caching: Requests are batched on the server side and outputs are cached for reuse, improving throughput without requiring large batch sizes at the client. Clarifai’s dynamic batching merges multiple inferences into one GPU call and caches popular outputs.
  • Local runners: For edge deployments or privacy‑sensitive applications, Clarifai offers local runners—containers that run inference on local hardware. This supports air‑gapped environments or low‑latency edge scenarios.
  • Autoscaling and reliability: The platform handles traffic surges automatically, scaling up resources during peaks and scaling down when idle, maintaining 99.99 % uptime.

Aligning with LPUs

Clarifai’s software‑first approach mirrors the LPU philosophy: getting more out of existing hardware through optimized execution. While Clarifai does not currently offer LPU hardware as part of its stack, its hardware‑agnostic orchestration layer can integrate LPUs once they become commercially available. This means customers will be able to mix and match accelerators—GPUs for training and high throughput, LPUs for latency‑critical functions, and CPUs for lightweight inference—within a single workflow. The synergy between software optimization (Clarifai) and hardware innovation (LPUs) points toward a future where the most performant systems combine both.

Original framework: The Cost‑Performance Optimization Checklist

Clarifai encourages customers to apply the Cost‑Performance Optimization Checklist before scaling hardware:

  1. Select the smallest model that meets quality requirements.
  2. Apply quantization and pruning to shrink model size without sacrificing accuracy.
  3. Use LoRA or other fine‑tuning techniques to adapt models without full retraining.
  4. Implement dynamic batching and caching to maximize throughput per GPU.
  5. Evaluate hardware options (CPU, mid‑tier GPU, LPU) based on latency and budget.

By following this checklist, many customers find they can delay or avoid expensive hardware upgrades. When latency demands exceed the capabilities of optimized GPUs, Clarifai’s orchestration can route those requests to more specialized hardware such as LPUs.

Expert insights

  • Artificial Analysis: Verified that Clarifai delivered 544 tokens/sec throughput, 3.6 s time‑to‑first‑answer and $0.16 per million tokens on GPT‑OSS‑120B models.
  • Clarifai engineers: Emphasize that hardware is only half the story—software optimizations and orchestration provide immediate gains.

Quick summary

Question: How does Clarifai achieve fast, affordable inference and what is its relationship to LPUs?
Summary: Clarifai’s reasoning engine optimizes inference through CUDA kernel tuning, speculative decoding and orchestration, delivering twice the speed and 40 % lower cost. The platform is hardware‑agnostic, letting customers run models on CPUs, GPUs or specialized accelerators with up to 90 % less compute usage. While Clarifai doesn’t yet deploy LPUs, its orchestration layer can integrate them, creating a software–hardware synergy for future latency‑critical workloads.

Industry Landscape and Future Outlook

Licensing and consolidation

The December 2025 Nvidia–Groq licensing agreement marked a major inflection point. Groq licensed its inference technology to Nvidia and several Groq executives joined Nvidia. This move allows Nvidia to integrate deterministic, SRAM‑based architectures into its future product roadmap. Analysts see this as a way to avoid antitrust scrutiny while still capturing the IP. Expect hybrid GPU–LPU chips on Nvidia’s “Vera Rubin” platform in 2026, pairing GPU cores for training with LPU blocks for inference.

Competing accelerators

  • AMD MI300X: AMD’s unified memory architecture aims to challenge H100 dominance. It offers large unified memory and high bandwidth at competitive pricing. Some early adopters combine MI300X with software optimizations to achieve near‑LPU latencies without new chip architectures.
  • Google TPU v5 and v6: Focused on training; however, Google’s support for JIT‑compiled inference is improving.
  • Photonic chips: Research teams and startups are experimenting with chips that perform matrix multiplications using light. Initial results show 10–100× energy efficiency improvements. If these chips scale beyond labs, they could make LPUs obsolete.
  • Cerebras CS‑3: Uses wafer‑scale technology with massive on‑chip memory, offering an alternative approach to the memory wall. However, its design targets larger batch sizes.

The rise of DePIN and multi‑cloud

Decentralized Physical Infrastructure Networks (DePIN) allow individuals and small data centers to rent out unused GPU capacity. Studies suggest cost savings of 50–80 % compared with hyperscale clouds, and the DePIN market could reach $3.5 trillion by 2028. Multi‑cloud strategies complement this by letting organizations leverage price differences across regions and providers. These developments democratize access to high‑performance hardware and may slow adoption of specialized chips if they deliver acceptable latency at lower cost.

Future of LPUs

Second‑generation LPUs built on 4 nm processes are scheduled for release through 2025–2026. They promise higher density and larger on‑chip memory. If Groq and Nvidia integrate LPU IP into mainstream products, LPUs may become more accessible, reducing costs. However, if photonic chips or other ASICs deliver similar performance with better scalability, LPUs could become a transitional technology. The market remains fluid, and early adopters should be prepared for rapid obsolescence.

Opinionated outlook

The author predicts that by 2027, AI infrastructure will converge toward hybrid systems combining GPUs for training, LPUs or photonic chips for real‑time inference, and software orchestration layers (like Clarifai’s) to route workloads dynamically. Companies that invest only in hardware without optimizing software will overspend. The winners will be those who integrate algorithmic innovation, hardware diversity and orchestration.

Expert insights

  • Pure Storage: Observes that hybrid systems will pair GPUs and LPUs. Their AIRI solutions provide flash storage capable of keeping up with LPU speeds.
  • Reuters: Notes that Groq’s on‑chip memory approach frees it from the memory crunch but limits model size.
  • Analysts: Emphasize that non‑exclusive licensing deals may circumvent antitrust concerns and accelerate innovation.

Quick summary

Question: What is the future of LPUs and AI hardware?
Summary: The Nvidia–Groq licensing deal heralds hybrid GPU–LPU architectures in 2026. Competing accelerators like AMD MI300X, photonic chips and wafer‑scale processors keep the field competitive. DePIN and multi‑cloud strategies democratize access to compute, potentially delaying specialized adoption. By 2027, the market will likely settle on hybrid systems that combine diverse hardware orchestrated by software platforms like Clarifai.

Frequently Asked Questions (FAQ)

Q1. What exactly is an LPU?
An LPU, or Language Processing Unit, is a chip built from the ground up for sequential language inference. It employs on‑chip SRAM for weight storage, deterministic execution and an assembly‑line architecture. LPUs specialize in autoregressive tasks like chatbots and translation, offering lower latency and energy consumption than GPUs.

Q2. Can LPUs replace GPUs?
No. LPUs complement rather than replace GPUs. GPUs excel at training and batch inference, whereas LPUs focus on low‑latency, single‑stream inference. The future will likely involve hybrid systems combining both.

Q3. Are LPUs cheaper than GPUs?
Not necessarily. LPU hardware can cost up to 40× more than equivalent GPU clusters. However, LPUs consume less power (1–3 J per token vs 10–30 J for GPUs), which reduces operational expenses. Whether LPUs are cost‑effective depends on your latency requirements and workload scale.

Q4. How can I access LPU hardware?
As of 2026, LPUs are available through GroqCloud, where you can run your models remotely. Nvidia’s licensing agreement suggests LPUs may become integrated into mainstream GPUs, but details remain to be announced.

Q5. Do I need special software to use LPUs?
Yes. Models must be compiled into the LPU’s static instruction format. Groq provides a compiler and supports ONNX models, but the ecosystem is still maturing. Plan for additional development time.

Q6. How does Clarifai relate to LPUs?
Clarifai currently focuses on software‑based inference optimization. Its reasoning engine delivers high throughput on commodity hardware. Clarifai’s compute orchestration layer is hardware‑agnostic and could route latency‑critical requests to LPUs once integrated. In other words, Clarifai optimizes today’s GPUs while preparing for tomorrow’s accelerators.

Q7. What are alternatives to LPUs?
Alternatives include mid‑tier GPUs with quantization and dynamic batching, AMD MI300X, Google TPUs, photonic chips (experimental) and Decentralized GPU networks. Each has its own balance of latency, throughput, cost and ecosystem maturity.

Conclusion

Language Processing Units have opened a new chapter in AI hardware design. By aligning chip architecture with the sequential nature of language inference, LPUs deliver deterministic latency, impressive throughput and significant energy savings. They are not a universal solution; memory limitations, high up‑front costs and compile‑time complexity mean that GPUs, TPUs and other accelerators remain essential. Yet in a world where user experience and agentic AI demand instant responses, LPUs offer capabilities previously thought impossible.

At the same time, software matters as much as hardware. Platforms like Clarifai demonstrate that intelligent orchestration, quantization and speculative decoding can extract remarkable performance from existing GPUs. The best strategy is to adopt a hardware–software symbiosis: use LPUs or specialized chips when latency mandates, but always optimize models and workflows first. The future of AI hardware is hybrid, dynamic and driven by a combination of algorithmic innovation and engineering foresight.



Regions of Ruin: Runegate is a pleasantly pixelly RPG about rebuilding a lost dwarven kingdom, and it’s out next month


I tend to take my videogame dwarves spacefaring, but there’s something inviting about the more classical, beards-and-barrel-chested adventuring being offered by Regions of Ruin: Runegate.

An expanded and prettified sequel to 2020’s Regions of Ruin, which I also knew nothing about until this morning, Runegate casts you as a lone dwarf charged with travelling the treacherous (but attractively pixel-arty) wilds to bring about the rejuvenation of your peoples’ ruined subterranean home. Here’s the new release date trailer; not to spoil the ending, but it’s out on April 14th 2026.

Continue reading “Regions of Ruin: Runegate is a pleasantly pixelly RPG about rebuilding a lost dwarven kingdom, and it’s out next month”

Email Incident Remediation Checklist – Tech Research Online


When it comes to email incident response, time is money. Inefficient response processes don’t just monopolize your limited IT resources; they can lead to stolen data, significant financial loss, and permanent brand damage. Having a documented remediation strategy is the only way to minimize the effects of a devastating attack.

This actionable checklist serves as a template to help you prepare your organization for effective, lightning-fast incident response.

In this checklist, you will learn how to:

  • Prepare: Align your technology, people, and processes before an attack occurs.
  • Identify: Automate incident creation and track user actions like clicks, forwards, and replies.
  • Contain: Respond swiftly to remove suspicious emails from all affected inboxes and block access to malicious sites.
  • Recover: Restore data from cloud backups and update security policies to blocklist malicious senders and geos.
  • Escalate: Leverage platforms that provide proactive threat hunting based on unusual inbox rules or suspicious logins.

FAA opens up real world testing for air taxi startups


US regulators have approved eight pilot programs across 26 states that will allow Archer, Joby and other eVTOL companies to finally start testing aircraft this summer, according to a US Department of Transportation (DoT) press release. That will allow those manufacturers to run trials for use cases like urban air taxi services, regional passenger transportation, cargo, emergency medical operations and autonomous flight technology.

The new projects were made possible by the White House’s Advanced Air Mobility and eVTOL Integration Pilot Program (e-IPP) approved last year to allow certification for such aircraft to progress after being stuck in the mud for years. “By safely testing the deployment of these futuristic air taxis and other AAM vehicles, we can fundamentally improve how the traveling public and products move,” US Transportation Secretary Sean Duffy said at the time.

Other FAA aircraft partners include Beta, Electra, Elroy Air, Wisk, Ampaire and Reliable Robotics. Key pilot programs were approved for the Texas, Utah, Pennsylvania, Louisiana and North Carolina Departments of Transportation, along with New York and New Jersey Port Authority and the City of Albuquerque. We’ve already glimpsed some of the ideas, like Archer’s plan to use air taxis between New York’s major airports and city heliports.

A number of eVTOL startups have launched in recent years, but so far none of the aircraft have received “type certificates” for carrying passengers or other commercial purposes. Archer and Joby are the farthest along in that process, having been granted the FAA’s final airworthiness criteria — the final step before full approval.

The delays are mostly about safety and working eVTOL planes into existing aviation flows. “The gap isn’t technical capability anymore. It’s regulatory synchronization,” the FAA’s Kalea Texeira said last year on LinkedIn. “[That includes factors like] vertiports. Energy supply chains. Part 135 [commercial] integration. Pilot training frameworks that match the aircraft timeline.” In the same post, Texeira added that Joby wouldn’t certify until mid-2027 at the earliest, with Archer following in 2028.

The new program could help accelerate plane-makers’ plans. In a YouTube video, Beta CEO Kyle Clark said selection for the program will help his company start operations a year earlier than it previously expected. Archer, meanwhile, compared the program to robotaxi testing and said it will help build trust with the public for its Midnight aircraft. “This is the clearest sign yet… that bringing air taxis to market in the United States is a real priority,” said Archer CEO Adam Goldstein.

For the first time in years, there are no blockchain gaming talks at GDC



Not long ago, the annual Game Developers Conference in San Francisco was liberally sprinkled with ads for blockchain companies and sponsored talks about NFTs. They’ve all left.

Whereas GDC 2023 featured talks such as “So, You Want to Build a Blockchain Game” and “How Polygon Labs Is Optimizing Games for an Emerging Blockchain Future,” I can’t find a single session about that emerging blockchain future on the schedule for GDC 2026, which kicked off Monday and runs through Friday.

Top 8 Benefits of 3D Golf Course Modeling and Rendering with Freelance Services & Design Companies


Golf course design has traditionally been a highly calculated process involving a lot of planning, aesthetic vision, and a deep understanding of the game itself, but innovation in technology has started using 3D modeling and rendering into the fray as a revolutionary tool to produce detailed, high-fidelity visualizations of golf courses before a single blade of grass is ever planted. 

Freelancers and design service companies are now using advanced tools to develop golf course models. Among the advantages of these models is the ability to bring ideas to life for designers, developers, and investors, offering quite a wide range of benefits.

Cad Crowd is the leading agency that can help you connect with 3D modeling and 3D rendering experts, providing services to your firm. Consisting of over 94,000 freelancers, we pride ourselves on our ability to give reasonable service rates while still exceeding your highest standards. Whether you’re looking for innovative solutions, new concept design, strategic insights, or top-tier execution, CAD Crowd has the expertise and the talent to bring your vision to life.

In today’s article, we will discuss the top eight benefits of 3D golf course modeling and rendering, and how freelance 3D rendering services and specialized design companies are revolutionizing the view on the visualization, design, and construction of golf courses.


🚀 Table of contents


RELATED: 10 awesome vehicle designs from the Cad Crowd gallery

Understanding 3D golf course modeling and rendering

3D golf course modeling and rendering is a particular type of computer-aided design process that can be achieved through 3D landscape rendering services, which produce ultra-high resolution, photorealistic images of golf courses. It allows designers, developers, and facility managers to visualize the details of the layout, terrain, and environmental features of the golf course during pre-planning or before any renovation work.

From 3D modeling, every part of the course is well thought out by the designers, including the fairways, bunkers, water hazards, and surrounding landscapes. Then, the rendering process incorporates realistic textures, lighting, and perspectives to mimic how the course would appear and represent the actual environment. This allows stakeholders to make rational decisions regarding design changes, landscaping, and even marketing presentations.

The union of 3D modeling and rendering boosts the mutual understanding of architects with clients on possible views concerning the course of action and elevates the process in planning and development to ensure that all the minutest details coalesce into the overall vision. Take a look at the benefits that 3D golf course modeling and rendering have to offer:

3D Golf Course Modeling and Rendering

RELATED: How engineering & 3D design contests give companies a competitive edge

Enhanced visualization and design accuracy

Probably the most significant advantage of 3D golf course modeling is its ability to deliver precise, realistic visuals through detailed renderings from 3D architectural visualization services. Two-dimensional blueprints cannot communicate depth, slope, and scale as effectively as 3D renderings. A freelance designer with expertise in CAD modeling and architectural visualization can produce photorealistic representations of how the course will appear, accurately showcasing every contour, hazard, and green.

Once accurate topographic information is in place, 3D models look just like the real terrain in every detail. As such, designers and clients should be able to walk through the virtual course and feel the elevation changes in their design. This will enable them to determine the flow of holes into one another. It is that level of immersion that results in a visual look that is absolutely stunning and will play as they want.

The challenge of redesigning a golf course arises simply because one has to iterate on the basis of architects’, developers’, or even prospective investors’ feedback. It can be pretty long and costly to correct the physical model or 2D drawings. 

3D modeling is more flexible

Particular components of the course may be easily altered by freelance CAD designers and companies specializing in 3D CAD design services. Changes in the fairway layout or adjustments to bunker depth can be quickly tweaked without an overhaul. With 3D CAD models, revisions are efficient and cost-effective, enabling several design iterations before finalizing the ideal version.

Natural integration

A golf course is not a set of holes but rather an experience in nature. The 3D modeling and rendering can be applied to integrate the course into the environment, thus ensuring it blends with nature. This integration will ensure sustainability while making the course visually more appealing to the people.

Using very high-resolution environmental data, land survey drawing experts can simulate how a golf course will interface seamlessly with natural elements, such as forests, rivers, or hills. Leveraging these specialized services allows for detailed environmental analysis, predicting how design choices affect ecosystems and surroundings. This culminates in an effortless merging of the artificial with the natural—each hole is not merely a design feature but an integrated part of the broader environment. In this sense, 3D modeling and environmental engineering help designers create sustainable golf courses that minimize ecological disruption while enhancing the golfer’s experience.

Improved stakeholder communication

In the process of developing golf courses, most of the time, several investors, architects, developers, and the local government are involved. In this case, communicating sophisticated design ideas using traditional media forms such as 2D plans or technical documents often risks that the concept will not be achieved or will fail to communicate adequately. 3D modeling and rendering offer a much clearer and more compelling means of communicating design intent.

A 3D model gives freelance designers the opportunity to share a real-to-life and immersive representation of the course with the stakeholders. This will make it easier to conceptualize the design and even give feedback. It will certainly ensure everyone is on the same page, thereby making delays minimal and timelines toward project approvals lighter. Be it pitching to investors or having your permits from your local authorities, it may be that only a well-crafted 3D render utilizing 3D rendering services will seal the deal.

Pre-construction marketing and investor confidence

3D Golf Course Modeling and Rendering

RELATED: Featured freelance CAD designer portfolio on Cad Crowd

Often, developers will seek to secure investors, or simply future members of the golf course, to fund the project before it is even commenced. A 3D rendering could be very valuable in marketing efforts for building such a project. Detailed 3D models will let potential investors see accurately what the finished course will look like, including realistic textures, lighting, and environmental features. This will help build confidence in the project by giving a very tangible vision of the end product.

Freelance design companies develop high-quality visualizations and virtual tours that developers can present to potential investors or to promote their golf course projects. The ability to show a course before setting foot will attract investors and excite prospective members, hence increasing the chances of raising funds for the venture.

Customization and personalization of golf course

Each golf course is unique, and 3D modeling will allow for a great deal of personalization. Whether the developer desires to incorporate specific natural features or emphasizes a certain architectural style, 3D modeling will allow for detailing all aspects of the course design to fit the client’s vision. Lastly, freelance CAD designers are also adept at designing some weird custom elements within a 3D environment. A signature hole with a panoramic water hazard or a dramatic elevation shift can also be done quickly. This level of personalization helps developers in designing unique courses in a very competitive golf course design market. This level of detailing is often provided by CAD design experts.

Proper planning and construction feasibility

Golf course design requires one crucial factor, which is that the course must be aesthetic yet feasible to construct. 3D modeling can pick up some of the issues that may come up with the actual design process, such as problems with drainage, grading complexities, or infringement of existing land features.

Using 3D models, freelance designers and special design companies study the topography and design the course in minute detail. For example, 3D models can model water flow across the course during the rainy season; thus, the designers have proper designs for rainfall drainage systems. Thus, by being proactive about such issues, developers can avoid expensive delays during the construction period. This proactive approach often involves hiring freelance design services.

RELATED: 3D modeling software or CAD programs: What should my designer use?

Virtual reality andinteractive experiences

One of the most exciting advancements in 3D golf course modeling is incorporating it into virtual reality (VR) technology. Freelance designers are becoming more and more leery of putting such VR experiences in design presentations to allow clients and other stakeholders to walk “the course” before it actually exists. Using a headset, users can actually walk through or even “golf” the course in real time, feeling every detail of the design from a player’s perspective.

With this interactive experience, stakeholders can move beyond the static 3D model of the course. Not only will they have an immersive first-person view of the course under development but also see at a level of interactivity that supports the overall presentation and, in some way, offers some critical insights into the details of how the course will be played, giving them scope to adjust as players, developers, and course architects respond. This level of interactive presentation is often a service offered by freelance 3D modeling.

With golf courses, freelance services illustrate this to a great extent, comprising enhanced visualization and integration with the environment while offering cheap design revisions as well as interactive VR scenarios. Freelance designers and specialized design firms offer exactly the necessary experience in producing individual designs with beautiful layouts that can meet the highest standards in the appearance and functionality of each golf course.

RELATED: How does product prototyping with 3D modeling help grow sales and save R&D money?

How Cad Crowd can help

Whether it’s a wannabe developer looking to pitch to interested investors or a golf course architect working hard to be perfect in his design, just like Tiger Woods is in his game, 3D modeling is starting to revolutionize the face of golf course design once and for all. Combine it with talented freelancers or specialized firms to bring your vision to life, creating courses that are as gorgeous to behold as they are beautiful in play.

3D golf course modeling and rendering offer numerous benefits, especially when entrusted to and carried out by reliable freelance services and design companies. Here at Cad Crowd, we will make sure that you get in touch with top talents who can come up with mind-blowing golf course designs. Get a free quote today. 

author avatar

MacKenzie Brown is the founder and CEO of Cad Crowd. With over 18 years of experience in launching and scaling platforms specializing in CAD services, product design, manufacturing, hardware, and software development, MacKenzie is a recognized authority in the engineering industry. Under his leadership, Cad Crowd serves esteemed clients like NASA, JPL, the U.S. Navy, and Fortune 500 companies, empowering innovators with access to high-quality design and engineering talent.

Connect with me: LinkedInXCad Crowd

Official Xbox Podcast: GDC Indie Games Deep Dive


The post Official Xbox Podcast: GDC Indie Games Deep Dive appeared first on Xbox Wire.

I tried GPT-5.4, and most answers were really good – but a few had me concerned


I tested GPT-5.4, and the answers were really good - just not always what I asked

Elyse Betters Picaro / ZDNET

Follow ZDNET: Add us as a preferred source on Google.


ZDNET’s key takeaways

  • GPT-5.4 Thinking delivers deeper analysis than earlier ChatGPT models.
  • It has strong reasoning, but it sometimes answers questions you didn’t ask.
  • Formatting and image generation lag behind the text quality.

It’s a new month, and a new AI version number. It’s called GPT-5.4 Thinking. This latest release, which OpenAI issued last week, isn’t your run-of-the-mill ChatGPT incremental update.

Also: OpenAI’s new GPT-5.4 clobbers humans on pro-level work in tests – by 83%

Oh, no. Instead of jumping from 5.2 to 5.3, for this release the company jumped all the way to 5.4. And instead of offering a general purpose release, the company released GPT-5.4 Thinking, a more cognitively prepared model designed for bigger thoughts and challenges.

GPT-5.4 Thinking is available for the programming Codex tool, the API, and for paid ChatGPT plans. For this article, I used the $20-per-month ChatGPT Plus plan to put it through its paces.

That presented me with a bit of a challenge. Normally, when I test a ChatGPT version, I run it through a series of mixed tests. Some are quick, and some are a bit more detailed. The prompts are usually just a few lines long. The responses usually lend themselves to being included in an article.

But this Thinking model required deeper dives, with more comprehensive challenges. As such, not only are the prompts more involved, but the responses are far too extensive to include in the article. Instead, I’m providing links into each test session. When you follow the links, you’ll be able to see the entire response in depth. Usually, a shared transcript opens at the end of the transcript, so scroll back to the top to get the full contents of that discussion.

Also: How to switch from ChatGPT to Claude: Transferring your memories and settings is easy

Before we jump into the four challenges I presented to GPT-5.4 Thinking, I’ll give you a quick TL;DR conclusion about my experience. There’s some good and bad, but mostly good.

  • The good: Text-based responses are really good. Most of the challenges I gave it were answered thoughtfully. I didn’t catch it in any hallucinations. I got constructive value from every answer.
  • The bad: Unfortunately, sometimes it answered questions that differed from what I asked. Images and formatting left much to be desired. When it came to image generation, clearly the AI did not use an advanced model. You’ll see what I mean, but basically it’s like the model just didn’t listen. Formatting was weird. It likes very long numbered lists. You can see them in the chat transcripts.

Overall, I would definitely use the GPT-5.4 Thinking model for bigger challenges and questions. I was pretty impressed, although I definitely wasn’t a fan of the formatting. It also needs continuous management to keep it on track.

Now, let’s dive into each of the tests.

Test 1: Aircraft carrier in the sky

I started off with an image generation challenge. The starting prompt was “Create an image of an aircraft carrier flying in the sky, held up by four upward-facing turbo-propellors in round fan housings, carrying a squadron of fighter jets on its deck.”

Also: I stopped using ChatGPT for everything: These AI models beat it at research, coding, and more

I started with this because previous image generation tests, across a number of AIs, didn’t get it right. They almost always face the propellors to the rear of the carrier. Gemini Nano Banana 2 oddly put the propellors in front, with the carrier moving into the forward-facing thrust. Sometimes, we just don’t want to know.

In any case, right out of the gate, with the model set to GPT-5.4 Thinking, ChatGPT returned this image.

carrier-1.png

Screenshot by David Gewirtz/ZDNET

As you can see, it has the same problem. Although if you look closely at it, the props face the back of the aircraft, and there are visual thrust beams shooting downward. You win some. You lose some.

But then, I had a thought. This is the thinking model, so what if I asked it to design a helicarrier? What would it come up with? I specified the characteristics of the craft, and then added on these instructions: “Design such a vehicle, particularly explaining its structure and how it will be held aloft, along with any constraints or issues, as well as any tactical advantages”

I got back a long, well-considered answer. I particularly liked the section where it explained why “four downward-facing turbo-propellers are a weak solution.” It said they look dramatic, but it outlined a series of solid engineering reasons why they’re a bad idea from an aircraft construction point of view.

Also: ChatGPT’s cheapest subscription comes to the US: I compared Go to Plus and Pro

It also went on to discuss flight deck operations and various constraints in terms of practicality. In particular, it properly focused on the weight-to-power issue, which basically means it’ll take way too much power to hold something that big and heavy aloft.

Overall, the analysis and conclusions were great, although I was disappointed it didn’t mention either the USS Akron or USS Macon, which were early 20th century aircraft-launching dirigibles that actually worked (until they crashed). A modern dirigible would be a valid design option, yet GPT-5.4 Thinking didn’t mention that approach.

After GPT-5.4 Thinking created the detailed design spec, I again prompted for an image. I said, “Draw me a picture of the most probable design based on your existing analysis.”

And, wouldn’t you know it? The AI gave me back the exact same image as the one I got before it did any design work. That’s what I meant when I said the model just didn’t listen. I did try a bunch of different prompting approaches, but it never really worked out.

Although I tried a number of extremely detailed image specifications, none came out any better than the originals. My last attempt was to tell it I wanted an engineering-quality rendering.

carrier2.png

Screenshot by David Gewirtz/ZDNET

The AI used a variation of the previous image, but simply added labels that didn’t quite match the picture or were made up of pure gibberish (as in “Retenuif truss fornaing. reueirid stucana tearsport”).

So, it gets points for good design analysis, but not so much for image generation.

You can follow the entire chat transcript here.

Test 2: Boston tech and history travel itinerary

I started this test with a prompt taken word-for-word from my previous sets of tests: “Imagine you are a travel advisor. I want a week-long vacation in Boston in March focused on technology and history. What itinerary would you recommend?”

I found the results workable, but uninspired. It initially divided the days into history-focused days and tech-focused days, rather than by location around Boston. After a few rounds of discussion, it did combine destinations by location, which made more sense.

In terms of places to visit, it did all the highlights. It covered key historical locations, as well as the excellent science museums in Boston. I will give the AI credit. While there are a ton of interesting tech-related locations in the outer Boston area, it restricted its selection to those in Boston and Cambridge proper.

Also: Is ChatGPT Plus still worth your $20? I compared it to the Free, Go, and Pro plans – here’s my advice

I was happy to see the AI provide planning notes, including recommendations for how to replan the schedule for indoor-only activities if the weather turned bad. Since I asked for an itinerary in March, bad weather is certainly something important to plan for.

The Thinking model came into play when it was used to plan for both a fairly pricey vacation, and an alternative one on a student budget. It did particularly well pointing out budget eating options, and provided a day-to-day cumulative cost estimate, as well as cost estimates for each category.

It did the same with where to stay. It recommended hotels based on a centralized location to all of the recommended stops, as well as a less costly (less costly for Boston) option for budget travelers.

My biggest complaint, initially, was formatting. The AI just presented a huge list indexed by number. You can see that in the session transcript. I had to specifically ask for better formatting. While the revised formatting it gave me was an improvement, it was still less than ideal.

Also: I used these viral Gemini prompts to find the cheapest flight possible – here are the results

Net-net. If you’re traveling, GPT-5.4 Thinking will give you good information. It will be up to you to parse that information and make travel decisions. You can follow the entire chat transcript here.

Test 3: Social media in society

Here’s where GPT-5.4 Thinking begins to really shine. When I asked GPT-5.2, “Do you think social media has improved or worsened communication in society?” I got back a two-line answer. Both thoughts were coherent and appropriate, but it was ultimately unfulfilling.

For GPT-5.4 Thinking, I extended the question, saying “Provide an analysis of both sides, improved or worsened in depth, and then take a side, take a position, and defend your position.”

I got back a very well-considered response. The AI started off with a TL;DR, saying that social media has both bettered and worsened communication, but “on balance, I think it has worsened communication in society.”

Also: How to learn ChatGPT in an hour – for free

It then goes into a 1,300-word detailed analysis about why. It explores where social media has strengthened societal communications and then looks at where social media has had a deleterious effect. I have to give props to GPT-5.4 Thinking. It’s a very good read.

I gave the AI a follow-up question, asking how society should handle the impact of social media. I specified it fairly clearly, and gave the AI a variety of difficult-to-answer questions, difficult mostly because they’re fundamentally unanswerable questions.

Props again. GPT-5.4 Thinking deconstructed the prompt, explored the various issues, and knit together a compelling and supportable answer. I definitely recommend you read the entire transcript, which you can do right here.

Test 4: Explain GPT-5.4 using educational constructivism

The AI did not follow my instructions, but it did give a very interesting answer to a question I didn’t ask.

One of the tests I use for free chatbots is this prompt: “Explain educational constructivism to a five-year-old.” Very roughly speaking, educational constructivism is the theory of education that says you learn best by doing. I have long contended (and taught) that the only way you can learn programming is by actually writing code, which is a tangible example of educational constructivism in action.

In any case, I prompted GPT-5.4 Thinking, “Explain the new GPT 5.4 model using educational constructivism.”

Also: I’m a ChatGPT power user: Here are 7 useful settings that are turned off by default

Look at that prompt carefully, because GPT-5.4 Thinking clearly didn’t. The prompt invites the AI to explain GPT-5.4 through “doing” activities. Ideally, it would have proposed a series of exercises for the user to carry out, each of which would have helped demonstrate some of the model’s new capabilities.

But that’s not where GPT-5.4 Thinking went. Instead, it generated a 700-word thesis about how GPT-5.4 Thinking supports constructivism. It then offered to “recast this in one of three ways: as a classroom analogy, as a ZDNET-style plain-English explainer, or as a short comparison between GPT-4-era models and GPT-5.4.”

Also: ChatGPT’s new Lockdown Mode can stop prompt injection – here’s how it works

I let it do that, and its examples were adequate, and while they did answer the prompt GPT-5.4 Thinking suggested, the AI did not use “learn by doing” anywhere in its answers.

You know how a political candidate is sometimes asked something in a debate, but rather than answering the question, it goes off and just recites its own talking points? That’s what this response felt like. The answer it gave was good. It just wasn’t an answer to the question I asked.

You can follow the entire chat transcript here.

Overall recommendation

I have often characterized ChatGPT as a bright college student in need of good supervision. I would characterize GPT-5.4 Thinking as a very bright grad student who definitely needs good supervision.

Every answer I got back from GPT-5.4 Thinking was quite good in its own right. But in half my tests, the AI didn’t answer the question it was asked.

You can get it to give you good responses, but you have to fairly relentlessly correct the AI to keep it on point. That gets old. It could lead to misinterpretation. Because the answers are so good and written so confidently, it can be easy to get caught up in the AI’s answer, even if the answer is not to the question that it was asked.

Also: The best AI chatbots of 2026: Expert tested and reviewed

I don’t know if this my-way-or-the-highway approach to answering questions is an artifact of the “thinking” model or GPT-5.4 itself. I strongly recommend OpenAI carefully look at this issue, because the last thing we want is a super-popular chatbot unleashed on the world that insists on ignoring the questions it was asked, answering tangentially adjacent questions it was never asked, and taking on tasks that are fundamentally not what it was instructed to do.

Additionally, I’m concerned about the claim that GPT-5.4 Thinking can do professional tasks. If the AI can’t render an engineering-quality image, it’s hard to believe the AI can meet or exceed the performance of a human engineer. That said, there’s no doubt the model can help professionals get their work done, as long as they are very diligent in monitoring results.

Whenever I see results like this, I become increasingly concerned about a world overrun by AI agents. Yes, the AI may sometimes know better. Humans definitely need help. But I’d really like AIs to follow our instructions. I’m not ready to accept it as our AI overlord just yet.

What do you think? Have you tried GPT-5.4 Thinking yet, or another “reasoning” style AI model? Did it give you deeper or more useful answers than earlier versions, or did you find yourself having to steer it back to the actual question?

How important are things like formatting and image generation compared to the quality of the analysis itself? Do you think more powerful “thinking” models will make AI more helpful or harder to control? Let us know in the comments below.


You can follow my day-to-day project updates on social media. Be sure to subscribe to my weekly update newsletter, and follow me on Twitter/X at @DavidGewirtz, on Facebook at Facebook.com/DavidGewirtz, on Instagram at Instagram.com/DavidGewirtz, on Bluesky at @DavidGewirtz.com, and on YouTube at YouTube.com/DavidGewirtzTV.



Anthropic sues Defense Department over supply chain risk designation


Anthropic has made good on its promise to challenge the Department of Defense in court after the agency labeled it a supply chain risk late last week.

The Claude-maker filed a complaint against the Department on Monday. The complaint comes after a weeks-long conflict between Anthropic and the DOD over whether the military should have unrestricted access to Anthropic’s AI systems. Anthropic had two firm red lines: it didn’t want its technology to be used for mass surveillance of Americans and didn’t believe it was ready to power fully autonomous weapons with no humans making targeting and firing decisions.

Defense Secretary Pete Hegseth argued that the Pentagon should have access to AI systems for “any lawful purpose.” A supply chain risk label is usually reserved for foreign adversaries, and requires any company or agency that does work with the Pentagon to certify that it doesn’t use Anthropic’s models. 

Anthropic called the DOD’s actions “unprecedented and unlawful” in a complaint filed in San Francisco federal court. “The Constitution does not allow the government to wield its enormous power to punish a company for its protected speech.”

This story is developing. Please check back for updates.

Macbook Air’s storage drive shows impressive speed gain, even beating the MacBook Pro


The MacBook Air has always been the sensible choice — great battery, light enough to forget it’s in your bag. What it’s never been is the one that makes MacBook Pro owners feel slightly embarrassed. Until now, apparently.

When Apple switched the M5 MacBook Air to PCIe 4.0 NAND flash, it didn’t just make it faster than its predecessor — it made it faster than some M4 Pro MacBook Pro models too.

Benchmark numbers that raise eyebrows

NotebookCheck’s hands-on review of the 13-inch M5 MacBook Air, using the Blackmagic Disk Speed Test, puts the numbers on the table:

Model Read (5GB) Write (5GB) vs. M5 Air (Read) vs. M5 Air (Write)
MacBook Pro 14 M5 6,752.1 MB/s 6,194.2 MB/s +4.31% faster −5.57% slower
MacBook Air 13 M5 6,473.4 MB/s 6,558.6 MB/s
MacBook Pro 16 M4 Pro 5,401.3 MB/s 6,713.2 MB/s −19.85% slower +2.30% faster
MacBook Air 15 M4 2,904.0 MB/s 3,023.9 MB/s −122.91% slower −116.89% slower

On reads, the M5 Air clears the M4 Pro MacBook Pro 16 by nearly 20%. On writes, the M4 Pro edges back by just 2.3% — a gap so small it wouldn’t show up in any real-world task you threw at it.

The quiet upgrade Apple didn’t talk about much

The jump over the M4 MacBook Air is where things get a little hard to believe. Over 122% faster on reads, nearly 117% faster on writes. That’s not a spec sheet footnote — two drives this far apart don’t feel like the same product category.

Day-to-day, it adds up faster than you’d expect. That big RAW wedding shoot that used to grind away on import? Done before you’ve poured your coffee. ProRes footage off the internal drive no longer feels like a gamble.

And if you’re running local AI models, the difference between waiting and not waiting is exactly this kind of storage speed. For a laptop that starts at $1,099, none of this was supposed to be part of the conversation. Apple barely mentioned it at launch, which — in hindsight — was a strange call.