惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
博客园 - Franky
T
Tailwind CSS Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
人人都是产品经理
人人都是产品经理
雷峰网
雷峰网
Hugging Face - Blog
Hugging Face - Blog
有赞技术团队
有赞技术团队
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
阮一峰的网络日志
阮一峰的网络日志
C
Check Point Blog
爱范儿
爱范儿
T
The Blog of Author Tim Ferriss
aimingoo的专栏
aimingoo的专栏
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
L
LangChain Blog
云风的 BLOG
云风的 BLOG
MyScale Blog
MyScale Blog
Microsoft Security Blog
Microsoft Security Blog
The Cloudflare Blog
博客园 - 三生石上(FineUI控件)

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
Building a Dense Agentic AI CPU Rack Today
servethehome · 2026-06-20 · via Hacker News - Newest: "AI"
Dell PowerEdge R7725 Dual SP5
Dell PowerEdge R7725 Dual SP5

Server CPUs have gone from the doghouse to becoming ultra-important pieces of infrastructure, and agentic AI is the reason. This is one of those topics that I have been talking about with organizations for months, and I thought I might just put a broader discussion piece. Right now, much of the online discussion is simply on running agents as a new class of workload, and for good reason. It is net new demand on the compute infrastructure. Still, that is at best a part of the equation. On June 3, 2026, Cloudflare CEO Matthew Prince said that AI bot traffic has eclipsed human traffic on the Internet. You can pretend that trend is not real, but it impacts everyone who runs servers, and it is only going to get worse as agentic platforms become part of everyday workflows. Server CPUs are heating up for a reason, and the companies that get ahead now will have a real advantage. Since we have been doing server CPUs for a decade and a half-plus, I figured that I should give folks a broader framework to use.

We have a video for this one. We are going to use AMD EPYC and Dell servers here. AMD sent the CPUs. Dell paid for my travel to Dell Tech World. We have to say this is sponsored. Still, if you read the STH Substack, it is pretty clear why we will be talking a lot about AMD EPYC in the next year and change.

Why Agentic AI is a CPU Story

In the data center, CPUs are everywhere. They sit alongside GPUs to process data and attach extra memory pools to those accelerators. They run storage nodes, control planes, Kubernetes workloads, network switches, and even some network adapters. Whenever you build a cluster, CPUs are the common denominator.

STH Build A Cluster And The CPUs Are Everywhere
STH Build A Cluster And The CPUs Are Everywhere

Agentic AI changes how those CPUs get used. Platforms like OpenClaw, Hermes, and similar agent frameworks do not run on GPUs. These agent frameworks run on CPUs, and they need to stay alive and responsive so they can react whenever something happens. OpenClaw makes that straightforward to set up currently with just:

curl -fsSL https://openclaw.ai/install.sh | bash
openclaw onboard --install-daemon

Then you are off and ready to go.

OpenClaw Control Overview
OpenClaw Control Overview

From there, you add security layers and manage access. For company deployments, most guides online cover setting up OpenClaw as a personal assistant. When you deploy at a company, think about it more like bringing on a contractor. Grant constrained access to data and services, not open all access privileges. The “let Hermes or OpenClaw have access to everything” is what I have been calling a YOLO AI agent.

STH Mental Model Of AI Agent As A Contractor Instead Of A YOLO Install
STH Mental Model Of AI Agent As A Contractor Instead Of A YOLO Install

LLM inference usually runs over APIs to GPUs. CPU-side infrastructure handles everything else. If you want deterministic, reproducible results, ask the LLM to generate scripts that run tasks deterministically on the CPU rather than relying on raw LLM output to execute commands directly.

STH Use LLMs To Build Scripts Not Format Commands Every Time To Shift From Probablistic LLMs On GPUs To Deterministic Workflows On CPUs
STH Use LLMs To Build Scripts Not Format Commands Every Time To Shift From Probabilistic LLMs On GPUs To Deterministic Workflows On CPUs

Here is a practical example. Set up a VM with a password-authenticated SSH user that has sudo access, then feed that to an LLM. Make 100 calls through that workflow, and even powerful models like GPT-5.5, Qwen3.5-397B, Fable-5 (if we get access again), and Opus-4.8 will error out on a significant number of calls due to missing or malformed quotations. We ran experiments on this. It used to be around 40 percent of initial calls that failed. With newer models, we still see 25 percent of workflows looping to fix broken SSH commands from simple formatting errors. Those errors burn tokens even when the agent is fixing them without user intervention.

Building a tool for that specific access path fixes much of the problem. The LLM formats the call, while the common parts of the SSH command get handled deterministically by the tool. That call runs on the CPU, and the agent stays on track. Most folks who have worked with agents are accustomed to this. New users generally have no idea. Many folks in the middle may see it and not realize how much it costs in terms of token usage and time, even if the agent realizes its mistake and quickly fixes the issue.

There are different ways to call and host tools, and many people have deployed agentic AI on smaller bare metal machines or cloud VPS instances. We are now seeing short-lived sandboxes being built, issuing commands, and torn down. The key factors that determine how well your agents perform have nothing to do with the LLM itself.

CPUs For Agentic AI From Bare Metal To Sandboxes
CPUs For Agentic AI From Bare Metal To Sandboxes

The reason this is important, and why CPUs are becoming a big deal in the data center, is that agents running and issuing commands is a net new workload that is moving from humans being the operators to machines being the operators. Since you want to eventually push things to a deterministic path, the way you do that is to push more to CPUs. When we talk about the Cloudflare Radar for Bot vs. Human traffic, one way to think about it is that running those bots consumes CPU horsepower. That is really what folks in the industry are focused on now.

CloudFlare Bots Versus Humans 2026 06 14 At 9.06.42 PM
CloudFlare Bots Versus Humans 2026 06 14 At 9.06.42 PM

If you are an STH reader, you probably know that this is only part of the equation. Those bots are hitting Cloudflare’s endpoints and other endpoints. Web servers have to handle the load. Databases and other applications have to support those sessions. While everyone is focused on where to run agents, more CPU compute can be used to provide deterministic responses to the AI agent queries.

STH The Other Side Of Agentic CPU Workflows
STH The Other Side Of Agentic CPU Workflows

When agents make requests, they often hit front-end applications. Those applications may have license fees if you are running Oracle or SQL Server, for example, on the backend. The industry has not started talking about it yet, but eventually, there will be firms that go out and optimize licensing for the era of agentic AI with legacy applications. Databases run on servers and have storage back-ends. Everything is serviced over the network. All of the devices providing these services have CPUs. That is one of the reasons agentic AI is creating so much CPU demand in the market.

CPUs For Agentic AI Is Like From Mail Order To Electronic Orders
CPUs For Agentic AI Is Like From Mail Order To Electronic Orders

I usually use a version of the slide above to illustrate this point. Today’s infrastructure is optimized for a population of just over 8B people. The new infrastructure has people and likely significantly more agents making requests. As a result, applications need to be optimized for machine-to-machine traffic, not just human-to-machine traffic.

When I was at PwC in the 2010s, I had a team of 30 people working on the order-to-invoice process for a medical devices company. They had a cadaver lab, which was frankly a bit freaky for me to see. The other thing I remember was the day we saw a kind woman who would take orders from the fax machine (thank HIPAA), walk them to her desk, and type them into the company’s ordering system. A project a few quarters prior, I led a team overhauling a large storage provider’s pricing, discounting, and deal management workflow so that they could go from a very slow manual process, which was losing both direct and channel sales simply due to speed. We automated a huge part of the workflow, and by the time we were done, the company was turning quotes, deal pricing, and winning deals over its competitor just based on speed. Its channel partners could get an approved quote with per-deal pricing almost instantly, whereas its competitor still required manual approvals.

I always think of that when I think of agentic AI. Agents will have timeout windows, just like channel partners and customers did. They are not going to wait days for quotes. The infrastructure must evolve, which brings us to the kind of server CPU you need for the agentic AI era. Let us get to that next.