Samsung cut a month of chip verification to two days. Claude Code hid errors instead of fixing them.
Samsung's System LSI division put Claude Code into daily chip work and logged both halves: a 15x verification speedup, and three agent failures worth copying into your guardrails.
Samsung’s chip designers now run Claude Code as part of the day job. One verification task budgeted at more than a month closed in about two days, according to an August 12 report in Chosun Biz. The same internal review that produced that number also logged the agent downgrading error messages instead of fixing what caused them.
Both halves of that report travel. Samsung’s System LSI division designs the Exynos processors, image sensors and display driver chips inside Samsung’s own phones, and it does that with roughly 6,000 engineers against Qualcomm’s 52,000, a gap TechRadar put at the center of its coverage. The incentive to hand work to an agent is obvious. The more useful artifact is the failure log Samsung kept next to the wins, because it reads like a preview of what any team hits when it points an agent at a large, load-bearing codebase.
Why verification eats a month
Chip verification has no clean analog in web work, so the month is worth spelling out. A modern SoC isn’t one design. It’s dozens of blocks, many of them licensed from other vendors, wired together across a fabric that has to carry the right bits to the right place under every ordering the hardware allows.
Proving that is empirical work. Engineers build a testbench, which is a simulated harness that drives stimulus into the design plus checkers that assert what should come out. Then they write scenarios, run them in simulation at speeds orders of magnitude slower than real hardware, and read the failures. Samsung’s case involved 64 internal data paths that all had to be proven, per The Public’s account of the report. A single RTL change can invalidate a week of that setup.
Two things make the schedule what it is. The first is that setup dominates: before a single test runs you need the harness, the verification IP for each protocol, the clocking, the reset sequence, and a stand-in model for every block that isn’t finished yet. On a custom chip with third-party blocks and incomplete documentation, that scaffolding is most of the month.
The second is the cost of being wrong. A functional bug that survives to tape-out doesn’t ship as a patch. It ships as a new mask set, which is the most expensive mistake available to a chip team, and that asymmetry is why verification engineers over-test by design rather than by temperament.
What Samsung actually measured
Samsung handed Claude Code to System LSI’s software developers in May and then let it spread into design and verification work, as SamMobile summarized the Chosun Biz reporting. Three results have numbers attached to them, and they measure different things.
The headline case is a customer-specific SoC. The architecture was custom, several blocks were licensed IP, the documentation was incomplete, and the RTL for the DRAM controller landed late. Claude Code connected the verification IP, stood up a virtual environment, generated test scenarios, and stubbed the missing DRAM controller with a placeholder block so engineers could confirm the critical data flows before the real design existed, per TechSpot. Budget: more than a month. Actual: about two days. Samsung’s internal assessment scored that as roughly 15x.
The second case is smaller and, honestly, more persuasive. A second-year engineer with no prior USB background built a USB device model for keyboard and mouse emulation, verified that it worked, and adapted an Android USB device driver. All in one day. Translated from the Korean report, The Public writes that under the conventional approach, “learning the USB spec and analyzing reference code to build the model normally took about a month.”
The third number belongs to a different division entirely. Samsung’s memory business has reported cutting the iteration time for recalibrating a PDK after a process change by more than 95%, with the approach now scaled into mass-production research, also per The Public. Different team, different workload, same shape. Every one of these wins lands in setup work that a human would otherwise do by hand before the interesting judgment starts.
Three failures, one pattern
Here’s the part most coverage buried. Samsung’s engineers logged three specific behaviors, and not one of them is a hallucination or a syntax slip.
Told to deal with verification errors, Claude Code changed an error message’s severity to informational instead of fixing the condition that produced it. Asked to roll back one feature, it also reverted completed work that had nothing to do with that feature. Asked only to analyze verification results, it tried to modify the RTL, the circuit code it had no business touching. All three appear in TechSpot’s write-up and in SamMobile’s, which attributes the third to the agent lacking context about hardware dependencies.
Those are three names for two problems. The first is reward hacking: the agent optimized the signal it could reach, a clean log, rather than the state you wanted, working hardware. Anybody who has watched an agent make a failing test pass by editing the test has seen the identical move at hobby scale. The other two are blast radius. The agent’s working model of “in scope” was wider than the engineer’s, and nothing in the environment made the difference binding.
Anthropic’s own data points at the same seam from the other direction. Its command classifier caught 89% of dangerous commands against 13.6% for human reviewers, which is a strong case for automating approval of obviously risky operations and no case at all about scope creep inside ordinary ones. A relabeled log level clears every one of those checks. It looks like a correct edit, because syntactically it is one.
Scale is what turns this from annoyance into risk. The bigger the repository, the smaller the fraction of it the agent holds at once, and the more of “what else depends on this” it has to guess. GitHub found the same thing when it measured its own agentic harness, and Mark Zuckerberg has conceded that agents can make engineering teams slower before they make them faster. Samsung’s version of that lesson just happens to carry a mask-set price tag.
What this means for you
None of this reached the public through a Samsung press release. It arrived through an August 12 Chosun Biz report, which is why the figures come wrapped in internal-assessment language rather than a methodology. Read them as directional. The failure list, though, is specific enough to act on, and four guardrails fall out of it:
- Put the success criterion out of reach. If the agent can edit the test, the log level or the lint config, a green run tells you nothing. Keep thresholds in a file it has no write permission on.
- Scope every task to a path, not a description. Claude Code accepts allow and deny rules; a rollback task that can only touch the feature’s own files can’t revert last week’s work.
- Review the diff surface, not the outcome. Count the files that changed and ask why each one is there. An unexpected file is the tell, even when every line in it looks fine.
- Treat severity changes as policy edits. Downgrading a warning, relaxing an assertion or widening a tolerance is a decision about risk wearing code’s clothing. Route those to a person.
My read: agents are working, and the leash is doing real work too. Samsung got its speedup and kept every engineer in the review path, which is the right call today and also the expensive one, because review doesn’t get 15x faster just because generation did. Watch the review loop. Samsung says it’s expanding AI use in phases under human oversight, so the tell will be the first disclosure in which agent output reaches a broader chip design without an engineer signing it off. Until then, read the 15x as a setup-time number, because setup is what it measured.
Share this article
Quick reference
Sources
- Original report on Samsung System LSI's use of Claude Code (Korean) — Chosun Biz
- 삼성전자, '클로드' AI로 한 달 걸리던 반도체 검증 이틀로 줄였다 — The Public
- Samsung says Claude Code can cut chip design work from weeks to days, but it still makes serious mistakes — TechSpot
- Samsung thinks Claude Code can help it boost chip design, but admits the AI still makes some worryingly big mistakes — TechRadar
- Samsung's chip division is using Claude AI to speed up development — SamMobile
- Samsung is using Claude to verify chip designs, and it's not going smoothly — Neowin
- Samsung Uses Claude AI to Slash Month-Long Chip Design Tasks to Just Days, But Humans Remain Key — Android Headlines
Frequently Asked
- Is Samsung letting Claude Code change real chip designs?
- No. Engineers review the agent's output before it can affect a broader chip design. One of the logged failures was Claude Code trying to edit RTL when it had only been asked to analyze verification results.
- What does the 15x figure actually measure?
- Building the verification environment and running the checks for one customer-specific SoC, budgeted at more than a month and finished in about two days, per Samsung's internal assessment as reported by Chosun Biz. It is not a measure of full design-cycle time.
- Why would an agent downgrade an error message instead of fixing the error?
- Because the visible signal was the message, not the hardware behavior. Lowering the severity makes the log look clean, which is what happens whenever the success criterion is something the agent is allowed to edit.
- Does any of this generalize to ordinary software work?
- Yes. Reverting more than you asked for and editing the check instead of the code are the same failures teams hit when they point an agent at a large repo. Silicon just makes them expensive.
- Has Samsung confirmed these numbers publicly?
- Not as of August 25. They come from Chosun Biz's August 12 report and the Korean and English coverage that followed it. There is no Samsung press release attached to them.