<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:dc="https://purl.org/dc/elements/1.1/"
     xmlns:dcterms="http://purl.org/dc/terms/"
     xmlns:media="http://search.yahoo.com/mrss/"
     xmlns:atom="http://www.w3.org/2005/Atom"
>
    <channel>
                    <atom:link rel="alternate" hreflang="en-GB"
                       href="https://www.tomshardware.com/uk/feeds/tag/x86"
                       type="application/rss+xml"/>
                            <title><![CDATA[ Latest from Tom's Hardware UK in X86 ]]></title>
                <link>https://www.tomshardware.com/uk/tag/x86</link>
        <description><![CDATA[ All the latest x86 content from the Tom's Hardware  UK team ]]></description>
                                    <lastBuildDate>Sat, 20 Jun 2026 12:00:00 +0000</lastBuildDate>
                            <language>en</language>
                                <item>
                                                            <title><![CDATA[ Intel and AMD's new ACE CPU extensions bring an efficient AI-oriented instruction set to x86 — a new design makes matrix multiplication more power- and density-efficient ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/pc-components/cpus/intel-and-amds-new-ace-cpu-extensions-bring-an-efficient-ai-oriented-instruction-set-to-x86-a-new-design-makes-matrix-multiplication-more-power-and-density-efficient</link>
                                                                            <description>
                            <![CDATA[ ACE CPU extensions bring an efficient AI-oriented instruction set to x86 — new design makes matrix multiplication more power- and density-efficient ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">2feRFjirMG59YbKmkpYrha</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/kSPdaqEJiCnEKtFXGqvY9d-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Sat, 20 Jun 2026 12:00:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                <author><![CDATA[ editors@tomshardware.com (Bruno Ferreira) ]]></author>                    <dc:creator><![CDATA[ Bruno Ferreira ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/ZQiPPaXaAuQ4VrVEYnnR7G.png ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Bruno Ferreira&#039;s journey kicked off with the venerable ZX Spectrum, a cassette player, and his hopes and dreams. He quickly realized he had more fun figuring out how computers work than he did actually using the things. Kicking off a developer career with C and Assembly before moving to scripting languages, he&#039;s worn many hats, including both database architect and systems administration. As a teen, Bruno co-founded a web development outfit where he was for 17 years before moving on to spend nearly a decade at The Tech Report as a writer, editor, and (of course) developer. In this decade, he&#039;s been at Asus, MLCommons, and HotHardware, among others. When not fiddling with computers and games, his love for music and production sends him off to live shows and festivals. Occasionally, he pretends he can play the guitar and bass.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/kSPdaqEJiCnEKtFXGqvY9d-1280-80.jpg">
                                                            <media:credit><![CDATA[Getty Images]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[CPU silicon]]></media:description>                                                            <media:text><![CDATA[CPU silicon]]></media:text>
                                <media:title type="plain"><![CDATA[CPU silicon]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/kSPdaqEJiCnEKtFXGqvY9d-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Most all you hear about "running an AI model" involves a GPU of some sort, but not every AI task is suited to that hardware. Smaller models or single-user latency-sensitive operations can benefit from running on the CPU instead, as it avoids the overhead of shuffling data to and from the GPU. There are also many situations where there is no GPU available to begin with, or it's a meek integrated affair with limited capabilities. Intel and AMD have recently released the <a href="https://x86ecosystem.org/wp-content/uploads/2026/06/ACE_v1_Specification_public_1_15.pdf" target="_blank">full specification</a> for the ACE CPU extensions that make it easier and more power-efficient to run the aforementioned AI tasks on x86 processors.</p><p>ACE comes in by offering a <a href="https://x86ecosystem.org/wp-content/uploads/2026/03/ACE-Whitepaper-v1.pdf" target="_blank">technical standard</a> that leverages the existing AVX10 registers but adds silicon dedicated to matrix multiplication. This brings multiple benefits, but the key advantages are better power efficiency, easier development and optimization, and leveraging AVX's 512-bit inputs. The latter makes for easy integration with existing designs by eschewing the need for ACE-specific inputs.</p><p>Matrix multiplication is the cornerstone of AI workloads: take a table of numbers, and run a multiplication-addition loop over the whole thing. This has always been possible with most any CPU, though at limited speed. Even today, running these loops uses a lot of power, even when leveraging x86's AVX10 multiply-accumulate instructions — something that's technically a hack, as AVX wasn't designed with 2D matrix operations multiplication in mind.</p><p>For the same number of input vectors, ACE can perform 16x as many operations, compared to AVX10. Note this doesn't necessarily mean a 16x speedup, as that will depend on each individual implementation, but it's reasonable to expect that Intel and AMD will dedicate more silicon to this task in future designs to improve performance. Plus, as each ACE instruction performs more work than its equivalent AVX10 loop, there's less CPU instruction overhead and potentially better RAM bandwidth usage right off the bat.</p><p>The benefits go far beyond just using fewer instructions for the same thing. ACE is intended to be implementation-agnostic, meaning that ML frameworks and their underlying libraries (PyTorch, TensorFlow) can just write one code path instead of having multiple variations depending on the underlying hardware and its degree of AVX support.</p><p>ACE native supports most every data type used in ML operations (including but not limited to INT8, INT32, FP8, FP16, FP32, BF16), but it also can use Open Compute Project's MX block-scaled formats natively, something that AVX10 does not provide. Developers will also be able to move some NPU-specific workloads back to CPU when they need something done now and fast. In those situations, not having to deal with the fact that each NPU is different is a huge boon, too, as ACE offers a consistent target across x86 hardware.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Intel introduced ‘the first processor in the x86 series and the first 8086 microprocessor’ on this day in 1978 — CPU was designed as a temporary substitute for the delayed iAPX 432 project ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/pc-components/cpus/intel-introduced-the-first-processor-in-the-x86-series-and-the-first-8086-microprocessor-on-this-day-in-1978-cpu-was-designed-as-a-temporary-substitute-for-the-delayed-iapx-432-project</link>
                                                                            <description>
                            <![CDATA[ June 8, 1978, marked the birth of the x86 architecture with the arrival of the 16-bit Intel 8086 CPU. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">u3GsaAuPBkbgexDWELuX7b</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/9wfAmjd4DeVekWfKBqy7MT-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Mon, 08 Jun 2026 11:21:46 +0000</pubDate>                                                                                                                                <updated>Mon, 08 Jun 2026 11:21:51 +0000</updated>
                                                                                                                                            <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                                    <dc:creator><![CDATA[ Mark Tyson ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/56vqMYLDaKRHPhHZgbADFR.jpg ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Mark&#039;s enthusiasm for computers dampened at an early age by the rubber-keyed Sinclair Spectrum 48K and feelings of Commodore 64 envy. However, in the mid-80s, hope in a digital future was rekindled by the purchase of an Atari 520 STe. Since that time Mark has used a multitude of computers for fun and professional endeavors. He often owned both Macs and PCs but went cold on the former after OS9 was killed off, and warmed to the latter with the introduction of Windows XP.&lt;br&gt;
&lt;br&gt;
Early work years were spent in artwork and reprographics but in the late noughties, Mark started to blog about computers, Taiwanese food culture, and guitar design. This activity led to a full-time position writing about breaking PC tech news for HEXUS, for the best part of a decade. When HEXUS was abruptly closed, Mark helped with the foundation of Club386, before finding a new home at Tom&#039;s Hardware.&lt;br&gt;
&lt;br&gt;
When not wearing through the keycap legends on his PC keyboards, Mark can be found wandering the computer malls of Taiwan&#039;s neon-lit conurbations and enjoying local and international cuisine.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/9wfAmjd4DeVekWfKBqy7MT-1280-80.jpg">
                                                            <media:credit><![CDATA[Intel]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Intel 8086]]></media:description>                                                            <media:text><![CDATA[Intel 8086]]></media:text>
                                <media:title type="plain"><![CDATA[Intel 8086]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/9wfAmjd4DeVekWfKBqy7MT-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Probably the most important processor in PC history was introduced on this day 48 years ago. <a href="https://web.archive.org/web/20230212150554/https:/newsroom.intel.com/news/intel-i7-8086k-processor/" target="_blank">June 8, 1978,</a> marked the birth of the x86 architecture with the arrival of the 16-bit <a href="https://www.tomshardware.com/news/intels-first-x86-cpu-had-secret-instructions-meant-to-catch-ip-thievery">Intel 8086</a> CPU. This lineage continues to the majority of PCs today, almost half a century later. Ironically, this chip and its x86 architecture, the result of 18 months of R&D, was meant only as a stopgap because Intel’s complex, clean-sheet 32-bit <a href="https://en.wikipedia.org/wiki/Intel_iAPX_432" target="_blank">iAPX 432</a> project was delayed.</p><p>The Intel 8086 was designed by a team of four engineers and 12 layout people led by Stephen P. Morse. Reports indicate that the impetus behind this project was to provide a practical, timely alternative to upcoming 16-bit Motorola and Zilog CPU designs. The fabled 8086 processor was only meant as a stopgap, as Intel had bitten off a bit more than it could chew with the iAPX 432 project, begun a year prior. As a side note, the 432 finally shipped in 1981 and was deemed too expensive, too complex, and fatally too slow when it arrived.</p><p>The 8086, the founding CPU in the x86 lineage, was marketed as Intel’s first 16-bit processor. It benefited from a degree of backwards compatibility with prior Intel 8-bit designs like the 8008, 8080, and 8085. Notable advancements over its predecessors included microcode for multiply and divide assembly language instructions.</p><p>Looking closer at the hardware tech specs, the Intel 8086 had around 20,000 transistors (29,277 including ROM and PLA) and was manufactured using Intel’s HMOS (High performance MOS) manufacturing process, originally developed for manufacturing fast static RAM products. The resulting 40-pin chip measured 33mm², and the minimum feature size was 3.2μm. Over its lifetime, it was released in clock speeds ranging from 5 to 10 MHz.</p><p>While the Intel 8086 founded the <a href="https://www.tomshardware.com/pc-components/cpus/amd-and-intel-celebrate-first-anniversary-of-x86-alliance-new-security-features-coming-to-x86-cpus" target="_blank">x86 architecture</a>, the subsequent 8088 design (1979) would become the beating heart of the first IBM PC (1981) and that particular storied lineage.</p><p>Direct 8086 successors like the 80286, 80386, and<a href="https://www.tomshardware.com/software/linux/linux-devs-start-removing-support-for-37-year-old-intel-486-cpu-head-honcho-linus-torvalds-says-zero-real-reason-to-continue-support" target="_blank"> 80486</a> would spearhead the Wintel alliance and establish the PC compatible as the default choice for productivity, home computing, and computer gaming enthusiasts until being sidelined by <a href="https://www.tomshardware.com/reviews/intel-cpu-history,1986-9.html" target="_blank">the Pentium</a> CPU (also x86) from the mid-90s onwards.</p><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/T5qGcKRYeFcKcWVGLqywAT.jpg" alt="Intel 8086" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/pa7yZufQ47TPi5nLpHCSFT.jpg" alt="Intel 8086" /><figcaption><small role="credit">Intel</small></figcaption></figure></figure><h2 id="intel-released-its-core-i7-8086k-40th-anniversary-chip-in-2018-what-next">Intel released its Core i7-8086K 40th anniversary chip in 2018. What next?</h2><p>To celebrate 40 years since the original 8086, Intel launched the <a href="https://www.tomshardware.com/reviews/intel-core-i7-8086k-cpu-8086-anniversary,5658.html" target="_blank">Core i7-8086K</a> 40<sup>th</sup> anniversary chip in 2018. It looks like a pretty safe bet that we should get another tribute in 2028, marking the half-century anniversary. What will we get for the 50<sup>th</sup>? Something that embodies the fun and enthusiastic side of PCs, we hope.</p><p>Also, it will be interesting to see if Arm processors begin to impinge upon the dominant x86 designs from the likes of Intel and AMD in the Windows PC market in the next couple of years. We’ve had Windows-on-Arm efforts from <a href="https://www.tomshardware.com/laptops/qualcomm-announces-snapdragon-c-platform-for-usd300-and-up-laptops-windows-on-arm-and-npus-for-the-budget-market" target="_blank">Qualcomm </a>and Mediatek try to usurp x86 with muted success. </p><p>At the recent Computex 2026 there was a lot of buzz about <a href="https://www.tomshardware.com/pc-components/cpus/nvidia-unveils-dgx-sparrk-roadmap-for-laptops-and-desktop-pcs-at-computex-2026-three-generations-outlined-rubin-followed-by-rosa-feynman" target="_blank">Nvidia’s RTX Spark Superchip</a>, a powerful new Arm platform designed to transform Windows 11 into an agentic AI operating system. Looking back two years from now, will Nvidia and its partners have started to turn the tide against x86?</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ China announces CPU-only exascale supercomputer with 47,000 homemade processors, record 2 Exaflops of performance without GPUs — Lingshen super said to use Huawei Kunpeng servers and no foreign-made components  ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/tech-industry/china-plans-cpu-only-exascale-supercomputer-with-47000-domestic-processors</link>
                                                                            <description>
                            <![CDATA[ The system would pack 47,000 processors into 92 compute cabinets, making it the first exascale machine designed to reach that performance tier without GPU accelerators. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">mjfpr9aGBTdXoxssZqcbAN</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/uap6jrvnj7kdkxXgGD9Jtk-1280-80.png" type="image/png" length="0"></enclosure>
                                                                        <pubDate>Tue, 28 Apr 2026 15:26:19 +0000</pubDate>                                                                                                                                <updated>Tue, 28 Apr 2026 15:49:06 +0000</updated>
                                                                                                                                            <category><![CDATA[Tech Industry]]></category>
                                                                                                                    <dc:creator><![CDATA[ Luke James ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/C4FAi2KzwaGLUrBqzX5aBM.png ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Luke is a freelance technology journalist who has been covering hardware and semiconductors since 2020. He began his career at All About Circuits and has since contributed to EE Power and Laptop Mag. Luke has a particular interest in semiconductors, microelectronics, and the industry shifts that shape the devices we use every day. Above all, he loves making complex technology accessible to experts and enthusiasts alike. Luke&#039;s interest in hardcore computing can be traced back to his university studies, when he responsibly spent his very first student loan payment on a custom-built gaming rig equipped with a GTX 780 Ti. &lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/png" url="https://cdn.mos.cms.futurecdn.net/uap6jrvnj7kdkxXgGD9Jtk-1280-80.png">
                                                            <media:credit><![CDATA[National Supercomputing Center, Shenzen]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[China announces Lingsheng supercomputer project]]></media:description>                                                            <media:text><![CDATA[China announces Lingsheng supercomputer project]]></media:text>
                                <media:title type="plain"><![CDATA[China announces Lingsheng supercomputer project]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/uap6jrvnj7kdkxXgGD9Jtk-1280-80.png" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>China's National Supercomputing Center in Shenzhen <a href="https://www.nsccsz.cn/nsccsz2024/zxdt2024/202604/0c5dbb95-e6ca-496a-abba-1148cf586640.shtml" target="_blank">announced</a> the Lingshen supercomputer project at a conference on April 24, targeting sustained performance above 2 ExaFLOPS using only CPUs and no foreign-made components. </p><p>The system would pack 47,000 processors into 92 compute cabinets, making it the first exascale machine designed to reach that performance tier without GPU accelerators. Lu Yutong, director of the Shenzhen supercomputing center and the system's chief designer, presented the technical details at the event.</p><p>Every other exascale system in operation relies heavily on GPUs or accelerator hardware. The U.S. Department of Energy's El Capitan, currently the <a href="https://www.tomshardware.com/pc-components/cpus/amd-powered-el-capitan-is-now-the-worlds-fastest-supercomputer-with-1-7-exaflops-of-performance-fastest-intel-machine-falls-to-third-place-on-top500-list">world's fastest supercomputer</a>, runs on 44,544 AMD MI300A APUs that tightly couple CPU and GPU silicon on a single package. Lingsheng’s CPU-only architecture would represent a fundamentally different approach to reaching exascale throughput.</p><p>The project is split into a pilot verification phase and a full production system, with the pilot using 100 <a href="https://www.tomshardware.com/tech-industry/semiconductors/huaweis-ascend-and-kunpeng-progress-shows-how-china-is-rebuilding-an-ai-compute-stack-under-sanctions">Huawei Kunpeng servers</a> built on Arm-based Taishan cores, totaling 12,800 cores. The production system scales to 1,580 blade servers using x86 CPUs with 101,120 cores and a theoretical peak above 10 petaflops. 16 four-way servers could add another 2,048 cores, and four eight-way servers could contribute a further 1,280, based on a machine translation of Chinese-language press materials. </p><p>The full system would include 36 network cabinets supporting a million-port interconnect, 650PB of planned storage across 428 nodes, and 67 liquid-cooled storage cabinets with 10 TB/s of bandwidth. </p><p>Lingsheng's claimed sustained performance of 2+ ExaFLOPS would, if achieved, exceed El Capitan's measured Linpack score of 1.809 ExaFLOPS. While El Capitan's theoretical peak is 2.79 ExaFLOPS, real-world Linpack results are always lower. Obviously, no Linpack or equivalent benchmark data exists for Lingsheng because the system hasn’t been built yet.</p><p>China’s claims are at best dubious. On a literal reading of the announcement, China says it might be able to achieve 2+ ExaFLOPS at some point in the future. But El Capitan is already theoretically capable of 2.79 ExaFLOPS, so it’s difficult to see how China’s project is ever going to "cast a new benchmark for global supercomputing,"  when it’s unlikely to be running even five years from now. </p><p>Then China says there’ll be no reliance on outside vendors for Lingsheng while also claiming that the production system will use x86 CPUs. China’s domestic x86 options are limited to Zhaoxin, a joint venture between VIA Technologies and the Shanghai municipal government, and Hygon, which originally licensed AMD's Zen architecture but lost access to updated designs following U.S. export restrictions. </p><p>Neither company has demonstrated processors competitive with current-gen parts from Intel or AMD, and the center and its partners didn’t name any suppliers or operational timeline for the completed system.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ AMD adopts FRED together with Intel for Zen 6 architecture — replacement for decades-old IDT can improve performance and stability ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/pc-components/cpus/amd-adopts-fred-together-with-intel-for-zen-6-architecture-replacement-for-decades-old-idt-can-improve-performance-and-stability</link>
                                                                            <description>
                            <![CDATA[ AMD adopts FRED together with Intel for Zen 6 architecture ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">QpvPHvMSd5KjKGDN7Jq8qk</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/yjkWGMBe8PVNyrvwF2ffAa-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Mon, 02 Feb 2026 16:17:42 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                                    <dc:creator><![CDATA[ Bruno Ferreira ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/ZQiPPaXaAuQ4VrVEYnnR7G.png ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Bruno Ferreira&#039;s journey kicked off with the venerable ZX Spectrum, a cassette player, and his hopes and dreams. He quickly realized he had more fun figuring out how computers work than he did actually using the things. Kicking off a developer career with C and Assembly before moving to scripting languages, he&#039;s worn many hats, including both database architect and systems administration. As a teen, Bruno co-founded a web development outfit where he was for 17 years before moving on to spend nearly a decade at The Tech Report as a writer, editor, and (of course) developer. In this decade, he&#039;s been at Asus, MLCommons, and HotHardware, among others. When not fiddling with computers and games, his love for music and production sends him off to live shows and festivals. Occasionally, he pretends he can play the guitar and bass.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/yjkWGMBe8PVNyrvwF2ffAa-1280-80.jpg">
                                                            <media:credit><![CDATA[Getty Images]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Processor]]></media:description>                                                            <media:text><![CDATA[Processor]]></media:text>
                                <media:title type="plain"><![CDATA[Processor]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/yjkWGMBe8PVNyrvwF2ffAa-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>AMD appears to be fundamentally <a href="https://www.tomshardware.com/pc-components/cpus/amd-pubs-first-zen-6-document-for-developers-a-brand-new-8-wide-cpu-core-with-strong-vector-capabilities">redesigning its CPU architecture</a> for the upcoming Zen 6 chips, rather than making it a subset of Zen 5. As a part of those improvements, thanks to <a href="https://x.com/InstLatX64/status/2017625427922022874">X user InstLatX64</a>, we now know that AMD has finally adopted <a href="https://www.intel.com/content/www/us/en/content-details/779982/flexible-return-and-event-delivery-fred-specification.html">Intel's FRED instructions</a> for its new silicon, along with fresh <a href="https://docs.amd.com/v/u/en-US/69192-PUB">matrix multiplication</a> and bit reversal instructions.</p><p>FRED is a wholesale replacement of the 80286-era Interrupt Descriptor Table (IDT) mechanism that's well over 40 years old by now. The IDT is currently the standard way to handle system events, like a network packet being delivered or mouse input, and passing its data to a driver or application.</p><p>AMD's adoption of FRED is the result of both companies creating the <a href="https://www.tomshardware.com/pc-components/cpus/intel-and-amd-forge-x86-ecosystem-advisory-group-that-aims-to-ensure-a-unified-isa-moving-forward">x86 Ecosystem Advisory Group</a> to coordinate work on the new instruction set. Last October, one year after the alliance's inception, AMD agreed to implement FRED on its upcoming chips. At this moment, no production chips from either company support FRED, though it's a reasonable expectation that Intel Nova and Panther Lake, and AMD Zen 6, will be the first lineups to do so.</p><p>Things looked a little shaky on the interoperability front for a little while, as AMD had its Supervisor Entry Extensions (SEE). While Intel's FRED is a full and complete replacement of IDT, AMD SEE can best be described as a viable workaround that requires as few changes as possible to legacy software.</p><p>Linus Torvalds himself <a href="https://www.realworldtech.com/forum/?threadid=200812&curpostid=200822">clearly outlined his opinion</a> in a forum post, hoping that both vendors would implement both ideas, but praising Intel's approach as a more complete clean-room solution that gets rid of legacy cruft entirely.</p><p>Regarding software support, the Linux kernel has had provisional support for FRED <a href="https://lwn.net/Articles/928639/">since version 6.9</a>. Once again, it's reasonable enough to expect that whichever version of desktop or server Windows comes next will also have the feature enabled. Note that only low-level software like operating systems and drivers can use the feature; it's not a concern for actual applications.</p><p>As to what FRED actually is, we can offer an oversimplification. A system event (say, getting an incoming network packet) is called an interrupt and the data and/or code transfer for handling involve <em>a ring transition</em>. This scenario happens constantly in any operating system, across every part, from storage I/O (a write being complete) to mouse input (say, a simple click).</p><p>Until now, programmers had to rely on IDT, for which the accurate technical adjectives are hacky and janky. IDT enabled only a half-assed transition from kernel code to application code, meaning programmers had to perform many other operations manually, be careful about edge cases, think about multiple ring levels, and work around potential race conditions (where two system events happen simultaneously and step over each other).</p><p>FRED improves on all fronts by providing one-shot instructions to guarantee a clean transition from kernel to application and back, with a consistent stack (the information about the event and where to continue execution). The main FRED instructions are atomic, meaning they execute all at once (or not at all), so programmers don't have to worry about an inconsistent state when they need to handle an interrupt. There's far less mental overhead, too, as there is much less to think about. Even the old ring levels are gone, being reduced to 0 (kernel) and 3 (user).</p><p>All told, this means that developers can just call on FRED and it'll do all the necessary work for them in one sitting, and no longer have to code their way around a lot of corner cases and theoretical issues. This should enable more stable kernels, system drivers, bootloaders, and other low-level software.</p><p>At least in theory, FRED is also bound to improve overall system performance, as it consumes fewer CPU cycles, resulting in lower event latency. These can add up under high load scenarios, like handling large network transfers, and perhaps even high-refresh-rate gaming and audio work — though potential uplifts will vary for each type of workload.</p><p>FRED will definitely be a performance boon for virtualization scenarios that have particularly involved event handling passing through multiple layers. The x86 architecture has long been criticized for holding on to legacy features for far too long, so it's good news that FRED is arriving soon. </p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Xbox app is now available on all Arm-based Windows 11 devices — Microsoft says ‘more than 85% of Game Pass catalog is compatible with these PCs’ ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/pc-components/cpus/xbox-app-is-now-available-on-all-arm-based-windows-11-devices-microsoft-says-more-than-85-percent-of-game-pass-catalog-is-compatible-with-these-pcs</link>
                                                                            <description>
                            <![CDATA[ Microsoft is making the Xbox app compatible with Arm-based processors, giving gamers more options when it comes to gaming laptops and practically opening the road for Arm-powered handheld gaming PC consoles. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">fAqo4wymQdb7caivrXKSLC</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/cA5eG9Q3gfyuwPwyRyWuQi-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Thu, 22 Jan 2026 15:03:58 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                <author><![CDATA[ editors@tomshardware.com (Jowi Morales) ]]></author>                    <dc:creator><![CDATA[ Jowi Morales ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/gM7E2WSDg2wgCFoaDPz9yK.jpg ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Jowi Morales is a writer and journalist covering the tech beat since 2021. However, he’s been interested in technology far earlier than that. He started discovering desktop computers when his father brought home a Windows 95 PC, but his first real experience working under the hood of the PC was when the old computer’s hard drive was filled to the brim in the year 2000. He deleted the Windows folder to attempt to rectify the situation, which led to his dad buying a new desktop PC. Since then, he learned a lot more about computers, and he’s always been the go-to tech expert for his family and friends.&lt;/p&gt;&lt;p&gt;Jowi primarily uses a Windows workstation and an Android phone, but he also bought into the Apple ecosystem with the 6th-gen iPad, iPhone 14 Pro Max, and the M1 MacBook Air. Today, Jowi covers hardware and software from Redmond and Cupertino, while also looking at the tech industry in general.&lt;/p&gt;&lt;p&gt;Aside from covering technology, Jowi is an avid photographer and writes about automobiles, aviation, and tanks. You can find his bylines at &lt;a href=&quot;https://www.makeuseof.com/author/jowi-morales/&quot;&gt;MakeUseOf&lt;/a&gt;, &lt;a href=&quot;https://www.slashgear.com/author/jowimorales/&quot;&gt;SlashGear&lt;/a&gt;, and, of course, &lt;a href=&quot;https://www.tomshardware.com/author/jowi-morales&quot;&gt;Tom’s Hardware&lt;/a&gt;.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/cA5eG9Q3gfyuwPwyRyWuQi-1280-80.jpg">
                                                            <media:credit><![CDATA[Qualcomm, collage by Tom&#039;s Hardware]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Qualcomm Snapdragon X Elite and Snapdragon X Plus badges.]]></media:description>                                                            <media:text><![CDATA[Qualcomm Snapdragon X Elite and Snapdragon X Plus badges.]]></media:text>
                                <media:title type="plain"><![CDATA[Qualcomm Snapdragon X Elite and Snapdragon X Plus badges.]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/cA5eG9Q3gfyuwPwyRyWuQi-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Microsoft just announced that you can now install the Xbox app on all Arm-based Windows 11 devices. The <a href="https://blogs.windows.com/windowsexperience/2026/01/21/play-more-xbox-app-is-now-available-on-arm-based-windows-11-pcs/" target="_blank">Windows Experience Blog</a> said that more than 85% of the Game Pass catalog is compatible with Windows 11 devices that run on Arm-based processors, and that it’s continuing to expand compatibility with the remaining titles. This news comes as <a href="https://www.tomshardware.com/pc-components/cpus/nvidias-arm-based-n1x-equipped-gaming-laptops-are-reportedly-set-to-debut-this-quarter-with-n2-series-chips-planned-for-2027-new-roadmap-leak-finally-hints-at-consumer-release-windows-on-arm-machines">Nvidia is reportedly debuting Arm-based N1X gaming laptops this quarter</a>, challenging the established x86 architecture that still dominates the gaming PC industry and offering an alternative to Qualcomm’s Snapdragon X SoCs.</p><p>“Players can now download and enjoy a wide range of titles from the Xbox PC app game catalog on Arm-based Windows 11 PCs,” the company said in its blog post. “Today, more than 85% of the Game Pass catalog is compatible with these PCs, and we’re actively working with partners to expand support even further. For titles not yet supported running locally, Xbox Cloud Gaming remains an easy way to jump in while we work with partners to broaden compatibility.” </p><p>The company achieved this with the continued development of Prism, an emulator designed to run x86/x64 apps on Arm hardware. The addition of AVX and AVX2 support has expanded its compatibility with several modern games, while Epic Anti-Cheat support means that you can continue playing popular multiplayer titles on Arm-based Windows 11 PCs.</p><p>This is going to be excellent news for gamers, as it will allow them to have more hardware options when it comes to gaming. Even though many feel that x86 processors still deliver more raw horsepower, the efficiency of Arm-based chips is certainly attractive to those who prefer gaming on the go. Handheld console maker Ayaneo has been making Arm-based devices for several years now with the <a href="https://www.tomshardware.com/news/qualcomm-g3x-gen2-g2-g1-gaming-chips">Snapdragon G3x Gen 2-powered Pocket S</a>, but the lack of PC titles for Arm SoCs meant that it’s designed for Android gaming. This announcement would likely push handheld gaming console manufacturers to develop Arm-powered options, giving us the option to play PC games on battery for much longer than what we usually get from x86-powered devices.</p><p>Arm’s threat to x86’s dominance has got long-time rivals Intel and AMD cooperating, with <a href="https://www.tomshardware.com/pc-components/cpus/intel-and-amd-forge-x86-ecosystem-advisory-group-that-aims-to-ensure-a-unified-isa-moving-forward">the two companies forming the x86 Ecosystem Advisory Group</a> in 2024. By the time of <a href="https://www.tomshardware.com/pc-components/cpus/amd-and-intel-celebrate-first-anniversary-of-x86-alliance-new-security-features-coming-to-x86-cpus">its first anniversary</a>, we’ve already seen AMD and Intel agreeing to support some technologies, like the Advanced Matrix Extension, AVX10, Flexible Return and Event Delivery, and x86 Memory Tagging, for upcoming and future processors.</p><p>The Xbox app’s support for gaming on Arm-based processors will pose a threat to x86, especially now that a lot of games are compatible with the system. Even <a href="https://www.tomshardware.com/video-games/pc-gaming/steam-likely-coming-to-arm-chips-with-support-for-hundreds-of-windows-games-valve-testing-arm64-proton-compatibility-layer">Steam is experimenting with Arm compatibility</a>, with <a href="https://www.tomshardware.com/video-games/pc-gaming/steam-beta-gets-native-apple-silicon-support-the-only-public-arm-version-of-steam">the client app adding native support for Apple silicon</a> in 2025. But while this might make Intel and AMD nervous about their duopoly, especially in the gaming PC space, this is just going to be good news for gamers and consumers, as it drives competition between different ISAs and could even be the engine that would lead to more innovations in processors.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ The Intel i386 turns 40 years old — 275,000 transistors running at 16MHz changed personal computing forever ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/tech-industry/semiconductors/intel-386-at-40</link>
                                                                            <description>
                            <![CDATA[ Introduced in October 1985, the third-generation x86 processor was the first 32-bit chip in Intel’s PC line, the origin point for the IA-32 instruction set, and the architectural turning point that transformed personal computing. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">drKKd8pWVQaqYV2QVCURNi</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/EPQwN5ZJQwLLDA4vXcHgiV-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Sun, 19 Oct 2025 13:10:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                                    <dc:creator><![CDATA[ Luke James ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/C4FAi2KzwaGLUrBqzX5aBM.png ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Luke is a freelance technology journalist who has been covering hardware and semiconductors since 2020. He began his career at All About Circuits and has since contributed to EE Power and Laptop Mag. Luke has a particular interest in semiconductors, microelectronics, and the industry shifts that shape the devices we use every day. Above all, he loves making complex technology accessible to experts and enthusiasts alike. Luke&#039;s interest in hardcore computing can be traced back to his university studies, when he responsibly spent his very first student loan payment on a custom-built gaming rig equipped with a GTX 780 Ti. &lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/EPQwN5ZJQwLLDA4vXcHgiV-1280-80.jpg">
                                                            <media:credit><![CDATA[Science &amp; Society Picture Library, Getty]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Intel 386 CPU]]></media:description>                                                            <media:text><![CDATA[Intel 386 CPU]]></media:text>
                                <media:title type="plain"><![CDATA[Intel 386 CPU]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/EPQwN5ZJQwLLDA4vXcHgiV-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Intel’s 80386 turned 40 this week. Introduced in October 1985, the third-generation x86 processor — better known as the i386 — was the first 32-bit chip in Intel’s PC line, the origin point for the IA-32 instruction set, and the architectural turning point that transformed personal computing.</p><p>The i386 shipped with 275,000 transistors and ran at up to 16 MHz at launch. Internally, it brought 32-bit general-purpose registers, a flat memory model, and support for up to 4GB of address space, but the bigger change was to the system architecture. Protected mode, virtual 8086 mode, and hardware paging laid the groundwork for real multitasking and virtual memory on x86. Microsoft’s early i386 development kits included demos showing multiple DOS sessions running in parallel, each in its own paged VM. That became a core feature of Windows 3.0 in 1990, under the name “386 Enhanced Mode.”</p><p>Compaq was the first company to ship a machine based on Intel’s new CPU, following a rejection by IBM. The Deskpro i386, launched in September 1986, beat IBM to market by nearly a year. This was by design; the company had worked directly with Intel on the chip and had early access to silicon. Prices started at $6,499, and the system became a turning point for the PC industry, whereby Intel made the chip, but Compaq dictated the pace.</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:604px;"><p class="vanilla-image-block" style="padding-top:99.34%;"><img id="FZDtRQbz8PNCL6P3RAZeUG" name="Intel i386 chip" alt="The Intel i386 chip" src="https://cdn.mos.cms.futurecdn.net/FZDtRQbz8PNCL6P3RAZeUG.png" mos="" align="middle" fullscreen="" width="604" height="600" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: WikiChip)</span></figcaption></figure><p><a href="https://www.tomshardware.com/software/operating-systems/ive-been-using-linux-for-a-quarter-of-a-century-so-why-do-i-keep-coming-back-to-ubuntu">Linux</a>, too, was built on an i386. Linus Torvalds’ first kernel release targeted 386-AT hardware explicitly, and his early development notes reference nothing older. The 386’s protected mode and paging features made it possible to build a real Unix-like system without writing elaborate workarounds. <a href="https://www.tomshardware.com/tech-industry/artificial-intelligence/linus-torvalds-reckons-ai-is-90-percent-marketing-and-10-percent-reality">Torvalds </a>dropped 386 support from the Linux kernel in 2012, more than 20 years after it launched.</p><p>Intel followed the i386 with the <a href="https://www.tomshardware.com/pc-components/cpus/linux-developers-want-to-remove-i486-and-i586-pentium-cpu-support-to-unburden-kernel-developers">i486</a> in 1989, but the architecture stuck around for decades in embedded systems. The company didn’t end production of the chip until 2007. IA-32 — the i386’s instruction set — remained the backbone of Windows and most Linux distributions well into the 2010s.</p><p>Ultimately, the i386 wasn’t just a faster 286. It made x86 viable as a protected, multitasking software platform, something it had never been before. 40 years later, its core design still shows up in emulators, VMs, and legacy boot environments. The original chip might now be long gone, but the <a href="https://www.tomshardware.com/features/intel-architecture-day-2021-intel-unveils-alder-lake-golden-cove-and-gracemont-cores">architecture</a> it defined isn’t going anywhere.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ AMD and Intel celebrate first anniversary of x86 alliance — new security features coming to x86 CPUs ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/pc-components/cpus/amd-and-intel-celebrate-first-anniversary-of-x86-alliance-new-security-features-coming-to-x86-cpus</link>
                                                                            <description>
                            <![CDATA[ AMD and Intel marked the first anniversary of their x86 Ecosystem Advisory Group by confirming four jointly standardized features — AVX10, ACE, FRED, and ChkTag — that will unify future x86 processors around shared hardware capabilities. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">nYuQuBf3BZUqqJCrBMxv5T</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/bL5iYiBUY2rLX6QTRp4iaU-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Tue, 14 Oct 2025 11:45:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                <author><![CDATA[ ashilov@gmail.com (Anton Shilov) ]]></author>                    <dc:creator><![CDATA[ Anton Shilov ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/uMZ5kNphxA2Ut6whdLaSQV.png ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Anton Shilov has been in the PC industry since 1990s playing games, building PCs, and writing stories about pretty much everything that relates to PCs, Macs, smartphones, tablets, and even fab equipment. Over his career, he has worked at a variety of high-ranking websites, including AnandTech, EE Times, TechRadar, X-bit labs, and now Tom&#039;s Hardware. When Anton is not reading or writing about something high-tech, he is probably watching a good movie, playing a video game, or spending time with his family.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/bL5iYiBUY2rLX6QTRp4iaU-1280-80.jpg">
                                                            <media:credit><![CDATA[Intel]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Core ultra 200S CPU]]></media:description>                                                            <media:text><![CDATA[Core ultra 200S CPU]]></media:text>
                                <media:title type="plain"><![CDATA[Core ultra 200S CPU]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/bL5iYiBUY2rLX6QTRp4iaU-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>AMD and Intel are celebrating one year since the formation of the x86 Ecosystem Advisory Group, an alliance designed to coordinate the evolution of the x86 instruction set architecture (ISA) and ensure that new features are supported by both leading CPU designers. In the first year, AMD and Intel have managed to ratify four new features that are set to be supported by the upcoming processors from these companies, including long-awaited memory tagging. </p><p>The new cross-vendor capabilities agreed upon by AMD and Intel are ACE (Advanced Matrix Extension) and AVX10 to enhance the performance of matrix multiplication and vector operations, as well as FRED (Flexible Return and Event Delivery) and ChkTag (x86 Memory Tagging) to reduce latency between software and hardware, as well as to detect errors like buffer overflows or use-after free bugs. </p><p>Intel's Granite Rapids processors already support AVX10.1 and AMX, whereas Sapphire Rapids were first to support AMX instructions. With the ratification by the x86 EDA, AVX10 and AMX will be supported by AMD's next-generation processors, though we can only wonder whether this will happen with Zen 6 or already with Zen 7. Other capabilities are less well-known.</p><p>Intel introduced <a href="https://www.intel.com/content/www/us/en/content-details/779982/flexible-return-and-event-delivery-fred-specification.html">FRED publicly in 2023,</a> and by now, the capability is well-documented in developer documentation. The technology is described as a replacement for traditional x86 interrupt and exception mechanisms, so ultimately it is designed to simplify context switches, reduce latency, improve performance, and security when working with operating systems that support it. </p><p>FRED speeds up how the CPU switches between user mode (ring 3) and kernel mode (ring 0) with a hardware-defined entry and exit path. While this does not sound too impressive, replacing the old x86 mechanism (which uses the Interrupt Descriptor Table and IRET) is a big deal. At present, every time an application interacts with the OS (which happens millions of times per second), the CPU must switch between user mode and kernel mode, which introduces fairly high latencies with today's machines. Since the traditional IDT and IRET mechanisms are software-managed, while FRED provides a hardware-defined and verified entry and return path, replacing the former with the latter also improves reliability and security, in addition to performance </p><p>Up until today, AMD's stance on FRED was unclear, but now that the feature is recognized by the x86 EAG as a cross-vendor capability, it will be added to AMD's platforms over time. </p><p>Perhaps the most interesting addition to the list of cross-vendor x86 EAG features is the ChkTag (x86 Memory Tagging) capability, which has not been widely discussed before. The feature is added to catch memory safety errors — problems like buffer overflows, use-after-free, and out-of-bounds memory access — directly in hardware. Memory tagging is rapidly becoming a standard feature in modern CPUs as it is valuable (can catch a variety of bugs in hardware) and easy to implement, which is why modern processors from <a href="https://security.apple.com/blog/memory-integrity-enforcement/">Apple</a> and <a href="https://amperecomputing.com/blogs/empowering-developers-and-fueling-ai-adoption-with-ampereone">Ampere</a> now support Arm's <a href="https://developer.arm.com/documentation/109697/0100/Feature-descriptions/The-Armv8-9-architecture-extension?lang=en#md454-the-armv89-architecture-extension__FEAT_MTE4">MTE</a> technology. </p><p>It is hard to say when AMD and Intel plan to implement ChkTag (x86 Memory Tagging) in their processors. The announcement by the x86 Ecosystem Advisory Group signals both are committed to supporting this feature, but there is no obligation to implement it within a certain timeframe. Meanwhile, hardware changes of this depth typically require building them into the CPU microarchitecture itself, so expect support of FRED and ChkTag to come several years down the road. </p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Developer recreates classic shoot 'em up Zaxxon as a UEFI firmware — isometric arcade game coded in x86 assembly for no-OS represents 'total freedom from big tech' ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/software/programming/developer-recreates-classic-shoot-em-up-zaxxon-as-a-uefi-firmware-isometric-arcade-game-coded-in-x86-assembly-for-no-os-represents-total-freedom-from-big-tech</link>
                                                                            <description>
                            <![CDATA[ A Zaxxon remake, coded in x86-64 Assembly language, is now available as a UEFI application. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">xTBycCPfSwAZQQbEg4sunA</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/ob5Ec5KRoiqc4BgGuttUpe-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Mon, 06 Oct 2025 12:58:50 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Programming]]></category>
                                                    <category><![CDATA[Software]]></category>
                                                                                                                    <dc:creator><![CDATA[ Mark Tyson ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/56vqMYLDaKRHPhHZgbADFR.jpg ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Mark&#039;s enthusiasm for computers dampened at an early age by the rubber-keyed Sinclair Spectrum 48K and feelings of Commodore 64 envy. However, in the mid-80s, hope in a digital future was rekindled by the purchase of an Atari 520 STe. Since that time Mark has used a multitude of computers for fun and professional endeavors. He often owned both Macs and PCs but went cold on the former after OS9 was killed off, and warmed to the latter with the introduction of Windows XP.&lt;br&gt;
&lt;br&gt;
Early work years were spent in artwork and reprographics but in the late noughties, Mark started to blog about computers, Taiwanese food culture, and guitar design. This activity led to a full-time position writing about breaking PC tech news for HEXUS, for the best part of a decade. When HEXUS was abruptly closed, Mark helped with the foundation of Club386, before finding a new home at Tom&#039;s Hardware.&lt;br&gt;
&lt;br&gt;
When not wearing through the keycap legends on his PC keyboards, Mark can be found wandering the computer malls of Taiwan&#039;s neon-lit conurbations and enjoying local and international cuisine.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/ob5Ec5KRoiqc4BgGuttUpe-1280-80.jpg">
                                                            <media:credit><![CDATA[Inkbox Software ]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Zaxxon remake in UEFI]]></media:description>                                                            <media:text><![CDATA[Zaxxon remake in UEFI]]></media:text>
                                <media:title type="plain"><![CDATA[Zaxxon remake in UEFI]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/ob5Ec5KRoiqc4BgGuttUpe-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Inkbox Software has <a href="https://github.com/InkboxSoftware/spacegamex64">released</a> a recreation of a beloved isometric arcade game that runs directly from a PC’s Unified Extensible Firmware Interface (UEFI). Moreover, they coded their version of Zaxxon (1982) in x86-64 Assembly language, and have generously released it as open source under the GPLv3 license. There have been prior <a href="https://www.tomshardware.com/news/doom-port-released-as-bios-payload">UEFI games</a> and <a href="https://www.tomshardware.com/software/someone-made-a-functioning-irc-client-that-runs-entirely-inside-the-motherboards-uefi">apps</a>, but they are often incomplete or limited demos, and run within the UEFI as payloads, rather than booting directly to the game.</p><div class="youtube-video" data-nosnippet ><div class="video-aspect-box"><iframe data-lazy-priority="high" data-lazy-src="https://www.youtube-nocookie.com/embed/ZFHnbozz7b4" allowfullscreen></iframe></div></div><p>In the above video, Inkbox explains the reason they decided to begin this classic arcade gaming UEFI coding quest. In brief, our assembly coding hero says that they were “so tired of operating systems holding me back,” and that they wanted their hardware to run a classic game as it was meant to be played. That means “Written in assembly, without an operating system,” asserts Inkbox. “This is total freedom from big tech. Reject OS, Return to metal.”</p><p>Of course, there are significant hurdles to creating a handsome and responsive Zaxxon port for a PC UEFI. You can learn how Inkbox navigated this difficult path in their extensive and in-depth, yet engrossing video.</p><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/TxBka8NrUDBfrxdfbHZJpe.jpg" alt="Zaxxon remake in UEFI" /><figcaption><small role="credit">Inkbox Software </small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/Sjws8vSj9FRV276Fs4pLpe.jpg" alt="Zaxxon remake in UEFI" /><figcaption><small role="credit">Inkbox Software </small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/ob5Ec5KRoiqc4BgGuttUpe.jpg" alt="Zaxxon remake in UEFI" /><figcaption><small role="credit">Inkbox Software </small></figcaption></figure></figure>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Parallels adds x86 OS support for Apple Silicon — you can now run x86 Windows and Linux distros ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/software/operating-systems/parallels-adds-x86-os-support-for-apple-silicon-you-can-now-run-x86-windows-and-linux-distros</link>
                                                                            <description>
                            <![CDATA[ Parallels Desktop introduces a new experimental feature that lets you install x86_64 operating systems on your Apple-silicon Mac. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">7LnB6H5d9mf2p6fNDELEdE</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/vMtnfFqJYpBZR7vAeP9gUS-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Thu, 16 Jan 2025 16:18:13 +0000</pubDate>                                                                                                                                <updated>Wed, 09 Apr 2025 13:18:07 +0000</updated>
                                                                                                                                            <category><![CDATA[Operating Systems]]></category>
                                                    <category><![CDATA[Software]]></category>
                                                                                                                    <dc:creator><![CDATA[ Jowi Morales ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/gM7E2WSDg2wgCFoaDPz9yK.jpg ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Jowi Morales is a writer and journalist covering the tech beat since 2021. However, he’s been interested in technology far earlier than that. He started discovering desktop computers when his father brought home a Windows 95 PC, but his first real experience working under the hood of the PC was when the old computer’s hard drive was filled to the brim in the year 2000. He deleted the Windows folder to attempt to rectify the situation, which led to his dad buying a new desktop PC. Since then, he learned a lot more about computers, and he’s always been the go-to tech expert for his family and friends.&lt;/p&gt;
&lt;p&gt;Jowi primarily uses a Windows workstation and an Android phone, but he also bought into the Apple ecosystem with the 6th-gen iPad, iPhone 14 Pro Max, and the M1 MacBook Air. Today, Jowi covers hardware and software from Redmond and Cupertino, while also looking at the tech industry in general.&lt;/p&gt;
&lt;p&gt;Aside from covering technology, Jowi is an avid photographer and writes about automobiles, aviation, and tanks. You can find his bylines at &lt;a href=&quot;https://www.makeuseof.com/author/jowi-morales/&quot;&gt;MakeUseOf&lt;/a&gt;, &lt;a href=&quot;https://www.slashgear.com/author/jowimorales/&quot;&gt;SlashGear&lt;/a&gt;, and, of course, &lt;a href=&quot;https://www.tomshardware.com/author/jowi-morales&quot;&gt;Tom’s Hardware&lt;/a&gt;.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/vMtnfFqJYpBZR7vAeP9gUS-1280-80.jpg">
                                                            <media:credit><![CDATA[Opollo Photography / Unsplash]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[x86 Windows 11 on Apple-silicon Mac]]></media:description>                                                            <media:text><![CDATA[x86 Windows 11 on Apple-silicon Mac]]></media:text>
                                <media:title type="plain"><![CDATA[x86 Windows 11 on Apple-silicon Mac]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/vMtnfFqJYpBZR7vAeP9gUS-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Parallels released Parallels Desktop 20.2.0, which lets you use x86 emulation on Apple Silicon Macs. The <a href="https://www.parallels.com/blogs/parallels-desktop-20-2-0/">Parallels Desktop Blog</a> says you can run x86_64 virtual machines on these devices. This allows you to install x86 versions of Windows 10, Windows 11, Windows Server 2019/2022, and some Linux distributions with UEFI BIOS on your Apple Silicon Mac laptop or desktop. You can also create new virtual machines with Windows 10 21H2 and Windows Server 2022.</p><p> Although Parallels <a href="https://www.tomshardware.com/news/parallels-announces-parallels-desktop-17-for-mac-with-windows-11-support">brought Windows 11 on Apple-silicon Macs</a> in 2021, you were limited to its Arm version because of Apple's processor architecture. This meant developers and users could not natively run Windows apps on their Apple-silicon Macs. This update finally answers that issue and allows for the installation of x86_64 Linux distros without resorting to Rosetta.</p><p>However, the company calls it a technology preview, not a full feature. That’s because x86 support on Parallels Desktop 20.2.0 for Apple-silicon Macs has a lot of limitations, the biggest one being its sluggish response. It says, “Performance is slow—really slow. Windows boot time is about 2-7 minutes, depending on your hardware. Windows operating system responsiveness is also low.” So, if you want to play with it right now, you must be patient.</p><p>While the feature supports installing 32-bit applications, it doesn’t support 32-bit operating systems, so you cannot install 32-bit Linux distros or the 32-bit version of Windows 10. <a href="https://kb.parallels.com/130217">Parallels</a> also list several limitations, such as not supporting USBs, not recognizing devices you plug into the computer, and not making a sound. Aside from that, the virtual machine must be booted using Apple hypervisor; you can’t use Parallels hypervisor to launch it.</p><p>Since x86_64 support on Apple Silicon Mac is still in its Beta phase, the feature is hidden from the user interface, preventing average users from using it. If you want to experiment with it, right-click on the target virtual machine (which says Not Compatible underneath it) and click on Start using Emulator. Alternatively, you can run it using Parallel’s Command-Line Interface utility.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Qualcomm is hiring a data center chip architect for Snapdragon-based reference server designs  ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/desktops/servers/qualcomm-is-hiring-a-data-center-chip-architect-for-snapdragon-based-reference-designs</link>
                                                                            <description>
                            <![CDATA[ Qualcomm is looking for a server SoC security architect, according to a job listing. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">B6yfCuxdRB3mkEtrGRTEDh</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/dDqY3KwgZ2UVZkvvuAQyQR-1280-80.png" type="image/png" length="0"></enclosure>
                                                                        <pubDate>Mon, 13 Jan 2025 12:37:36 +0000</pubDate>                                                                                                                                <updated>Mon, 13 Jan 2025 14:14:58 +0000</updated>
                                                                                                                                            <category><![CDATA[Servers]]></category>
                                                    <category><![CDATA[Desktops]]></category>
                                                                                                                    <dc:creator><![CDATA[ Anton Shilov ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/uMZ5kNphxA2Ut6whdLaSQV.png ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Anton Shilov has been in the PC industry since 1990s playing games, building PCs, and writing stories about pretty much everything that relates to PCs, Macs, smartphones, tablets, and even fab equipment. Over his career, he has worked at a variety of high-ranking websites, including AnandTech, EE Times, TechRadar, X-bit labs, and now Tom&#039;s Hardware. When Anton is not reading or writing about something high-tech, he is probably watching a good movie, playing a video game, or spending time with his family.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/png" url="https://cdn.mos.cms.futurecdn.net/dDqY3KwgZ2UVZkvvuAQyQR-1280-80.png">
                                                            <media:credit><![CDATA[Qualcomm]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Qualcomm logo]]></media:description>                                                            <media:text><![CDATA[Qualcomm logo]]></media:text>
                                <media:title type="plain"><![CDATA[Qualcomm logo]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/dDqY3KwgZ2UVZkvvuAQyQR-1280-80.png" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Qualcomm is assembling a team of developers to design server processors for the data center. Evidence of this comes via a vacancy posted on the company&apos;s own website (noticed by <a href="https://x.com/never_released/status/1878192275383038442">Longhorn</a>). The company is looking for a server system-on-chip (SoC) security architect, and the details of the listing outline that the company is "developing reference platforms based on Qualcomm&apos;s Snapdragon SoC, delivering a comprehensive solution that includes hardware, software, reference designs, user guides, SDKs, and more."</p><p>The <a href="https://careers.qualcomm.com/careers/job/446702912296" target="_blank">job listing</a> confirms the existence of a &apos;Qualcomm Data Center&apos; team that is designing a &apos;high-performance, energy-efficient server solution for data center applications.&apos; While we are, of course, speculating, Qualcomm may plan to use the high-performance energy-efficient cores designed by its <a href="https://www.tomshardware.com/tag/nuvia" target="_blank">Nuvia</a> team for data center applications. This same team developed the company&apos;s Snapdragon X processors for laptops, but it originally designed server processors before it was brought into the Qualcomm stable. </p><p>In fact, Qualcomm used to develop and sell Arm-based data center CPUs back in the day without much success, which is presumably why it stopped. However, Amazon’s Graviton processors have proven that Arm-based solutions can thrive in the data center, and the market is wide open for more innovative entrants. Apparently, Amazon&apos;s success made Qualcomm rethink and return to the drawing board with data center CPUs. </p><p>"We are seeking experienced SoC Security Architects to join our team," the job listing reads. "If you possess a deep understanding of hardware security architecture and are passionate about architecting and designing complex SoCs at advanced process nodes, we would be pleased to hear from you. This critical role involves architecting the next-generation security system and hardware infrastructure by collaborating with other platform architects to optimize overall Power, Performance, Area (PPA) efficiency and security assurance while ensuring compliance with industry standards."</p><p>Interestingly, when acquiring Nuvia, Qualcomm specifically noted that it planned to use Nuvia&apos;s Phoenix cores in its processors for client PC and not data centers, despite the fact that Nuvia originally designed its cores with the data center in mind. Nowadays, the cores dubbed &apos;Oryon&apos; power Qualcomm&apos;s Snapdragon X processors for client PCs.</p><p>But now that Qualcomm has apparently changed its mind about data center products and is assembling a team of SoC developers (the core team is already there), it is reasonable to expect the company to develop a data center solution within the next couple of years. While we do not know for sure, the first devices to use Qualcomm&apos;s CPUs would likely be the company&apos;s platforms for 5G and then eventually 6G base stations, a space where the company controls the hardware and software stack. As for Qualcomm&apos;s development of chips for data centers currently dominated by x86, only time will tell if that is the company&apos;s ultimate intention. </p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Broadcom has no Interest in buying Intel: CEO says no one asked ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/tech-industry/broadcom-has-no-interest-in-buying-intel-ceo-says-no-one-asked</link>
                                                                            <description>
                            <![CDATA[ Hock Tan dismisses an idea to acquire Intel, as Broadcom still has to devour VMware. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">99X6UsbyrsWHcQLBm4q5aY</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/qZWfhqwRr8gniE9uNmNFLf-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Tue, 24 Dec 2024 11:00:00 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 08:43:59 +0000</updated>
                                                                                                                                            <category><![CDATA[Tech Industry]]></category>
                                                                                                <author><![CDATA[ ashilov@gmail.com (Anton Shilov) ]]></author>                    <dc:creator><![CDATA[ Anton Shilov ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/uMZ5kNphxA2Ut6whdLaSQV.png ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Anton Shilov has been in the PC industry since 1990s playing games, building PCs, and writing stories about pretty much everything that relates to PCs, Macs, smartphones, tablets, and even fab equipment. Over his career, he has worked at a variety of high-ranking websites, including AnandTech, EE Times, TechRadar, X-bit labs, and now Tom&#039;s Hardware. When Anton is not reading or writing about something high-tech, he is probably watching a good movie, playing a video game, or spending time with his family.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/qZWfhqwRr8gniE9uNmNFLf-1280-80.jpg">
                                                            <media:credit><![CDATA[Shutterstock]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Broadcom]]></media:description>                                                            <media:text><![CDATA[Broadcom]]></media:text>
                                <media:title type="plain"><![CDATA[Broadcom]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/qZWfhqwRr8gniE9uNmNFLf-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Intel&apos;s market capitalization dropped from around $198 billion in early 2024 to around $87 billion today, which makes the company an interesting acquisition target. Broadcom is certainly one of the companies that is known for making large acquisitions, and given its current focus on custom datacenter processors for AI, it could potentially be interested in taking over. However, its chief executive played down such a possibility citing a lack of Interest from Intel. </p><p>"[Broadcom has] not been asked [to take over Intel]," said Hock Tan, chief executive of Broadcom, in an interview with the <a href="https://www.ft.com/content/5b4160b7-6920-4bf2-a1a8-f1404b513d8f">Financial Times</a>. "I can only make a deal if it is actionable. Actionability means someone comes and asks me. Ever since Qualcomm, I learned one thing: no hostile offers." </p><p>Back in 2018, Broadcom&apos;s $142 billion attempt to acquire rival chipmaker Qualcomm through a hostile takeover was <a href="https://www.tomshardware.com/news/trump-blocks-broadcom-qualcomm-takeover,36653.html">stopped by then-President Donald Trump</a> in a rare and extraordinary move. </p><p>Earlier this year, we reported that Qualcomm was potentially interested in acquiring Intel, although it ultimately turned out that other reports said the <a href="https://www.tomshardware.com/tech-industry/qualcomm-reportedly-loses-interest-in-intel-takeover">company lost interest in buying Intel</a> with all of its product divisions and manufacturing operations. </p><p>Just like a merger with Qualcomm, an Intel merger with Broadcom could align with industry megatrends. Broadcom enjoys growing demand for AI processors it designs for clients like Google as well as connectivity solutions in data centers. By contrast, Intel&apos;s processors power the vast majority of servers as well as client PCs. Broadcom lacks presence in PCs and does not supply server CPUs. </p><p>Intel&apos;s strength is, of course, its production scale and dominance in client computers. However, Intel is currently struggling to keep its process technologies competitive with TSMC and its processor products competitive with rival AMD. As a result, the appeal of the company is not particularly high at this point, especially because Broadcom has to integrate VMware, a company it acquired <a href="https://www.tomshardware.com/news/broadcom-acquiring-vmware">for $61 billion in 2022</a>. </p><p>Additionally, Broadcom is busy with its bespoke processor business for major high-tech companies, including ByteDance, Google, Meta, and reportedly Apple and OpenAI, which are seeking alternatives to Nvidia&apos;s processors. </p><p>Tan described the ongoing investment frenzy in Silicon Valley, where tech giants are rapidly planning AI infrastructure projects for the next three to five years. These firms are constructing massive data centers, such as xAI&apos;s Memphis facility with <a href="https://www.tomshardware.com/pc-components/gpus/elon-musk-took-19-days-to-set-up-100-000-nvidia-h200-gpus-process-normally-takes-4-years">100,000 Nvidia GPUs</a> and Colossus with up to one million Nvidia GPUs, to handle the computing needs of their ambitious AI programs. </p><p>Tan has predicted that AI projects for Broadcom&apos;s clients could require clusters with up to one million processors as demand for computing power to train and run advanced AI systems continues to grow. He emphasized that the scaling principle—more data and processing yielding smarter AI—is driving these investments, despite uncertainty about when or if artificial general intelligence (AGI) will be achieved.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Intel terminates x86S initiative — unilateral quest to de-bloat x86 instruction set comes to an end ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/pc-components/cpus/intel-terminates-x86s-initiative-unilateral-quest-to-de-bloat-x86-instruction-set-comes-to-an-end</link>
                                                                            <description>
                            <![CDATA[ Intel has confirmed to Tom's Hardware that it is no longer working on the x86S specification. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">QN2fGPtMyDhXK2g9rrV3aN</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/tFyzjsZUyihWE8a92DcfkX-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Thu, 19 Dec 2024 18:42:21 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 10:11:33 +0000</updated>
                                                                                                                                            <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                <author><![CDATA[ palcorn@outlook.com (Paul Alcorn) ]]></author>                    <dc:creator><![CDATA[ Paul Alcorn ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/RZRmFeQfPy3etHjBQitbGW.jpeg ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;As a teenager, Paul scraped up enough money to buy a 486-powered PC with a turbo button (yes, a turbo button). Back when floppies were still popular he was already chasing after the fastest spinners for his personal computer, which led him down the long and winding storage road, covering enterprise storage. His current focus is on consumer processors, though he still keeps a close eye on the latest storage news. In his spare time, you’ll find Paul hanging out with his kids or indulging his love of the Kansas City Chiefs and Royals.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/tFyzjsZUyihWE8a92DcfkX-1280-80.jpg">
                                                            <media:credit><![CDATA[Tom&#039;s Hardware]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Intel logo ]]></media:description>                                                            <media:text><![CDATA[Intel logo ]]></media:text>
                                <media:title type="plain"><![CDATA[Intel logo ]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/tFyzjsZUyihWE8a92DcfkX-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>In the first sign of changes to come after the formation of a new industry group, Intel has confirmed to<em> Tom&apos;s Hardware </em>that it is no longer working on the x86S specification. The decision comes after Intel announced the formation of the <a href="https://www.tomshardware.com/pc-components/cpus/intel-and-amd-forge-x86-ecosystem-advisory-group-that-aims-to-ensure-a-unified-isa-moving-forward" target="_blank">x86 Ecosystem Advisory Group</a>, which brings together Intel, AMD, Google, and numerous other industry stalwarts to define the future of the x86 instruction set.</p><p>Intel originally announced its intentions to de-bloat the x86 instruction set by developing a simplified 64-bit mode-only x86S version, publishing a draft specification in <a href="https://www.tomshardware.com/news/intel-ponders-transition-to-64-bit-only-x86s-architecture" target="_blank">May 2023</a>, and then updating it to a 1.2 revision in June of this year. Now, the company says it has officially ended that initiative.</p><p><em>"We remain deeply committed to the x86 architecture, as demonstrated by the creation of the x86 Ecosystem Advisory Group in collaboration with AMD and other industry leaders. This initiative reinforces our dedication to securing a strong future for x86, building on decades of software compatibility. While we have pivoted away from the x86S initiative, our focus remains on driving innovation and collaboration within the x86 ecosystem." - Intel spokesperson to Tom&apos;s Hardware.</em></p><p>Intel&apos;s decision to cease work on x86S makes sense. Any significant changes to the specification will require cooperation with AMD to ensure full interoperability and backward compatibility. Such is the nature of the 46-year-old x86—Intel and AMD are the only two primary x86 architecture licensees that build new processors in high volumes, creating a duopoly that requires standardization. </p><p>It&apos;s also best if large software vendors and other ecosystem players add their full support, which is the crux of why the companies created the x86 Ecosystem Advisory Group. It&apos;s certainly best to have a unified, holistic ecosystem as x86 faces new challenges from Arm in both the consumer and data center markets. </p><p>When Intel and AMD announced the group in an extremely rare joint announcement earlier this year, it was unclear how existing initiatives would be impacted. However, it certainly wouldn&apos;t make sense for Intel to forge ahead alone on x86S now that it can better ensure interoperability with any changes to the standard. Intel is also undertaking the <a href="https://www.tomshardware.com/pc-components/cpus/intel-to-layoff-more-than-15-of-workforce-almost-20000-employees-encountered-meteor-lake-yield-issues-suspends-dividend">largest layoff in the history of the company</a> and a restructuring, which might have also played a role. That&apos;s not to mention the company is on the <a href="https://www.tomshardware.com/pc-components/cpus/intel-ceo-pat-gelsinger-retires-effective-immediately-also-steps-down-from-bod-two-co-ceos-step-in">search for a new CEO</a>.  </p><p>For now, it&apos;s unclear if any of the modifications that Intel made with its x86S initiative will come to fruition through the new x86 group. If they do, it will not be a unilateral decision on Intel&apos;s part — there will surely be plenty of discussion among the interested parties before any far-ranging changes are made. Naturally, that can be an issue with standards bodies and other groups, as getting a large group of stakeholders to agree on the finer points can slow progress and limit agility (we&apos;ve seen that play out a thousand times).</p><p>Intel also has other future-looking x86 initiatives underway, such as its <a href="https://www.intel.com/content/www/us/en/content-details/779982/flexible-return-and-event-delivery-fred-specification.html" target="_blank">Flexible Return and Event Delivery (FRED)</a> and the new AVX10 spec. Intel has confirmed that those initiatives are still underway.</p><p><em><strong>Edit 12/20/2024 4:20am PT:</strong></em> Added Intel response that FRED and AVX10 initiatives are still underway.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Chinese x86 eight-core Zhaoxin KX-7000 CPU lags behind AMD and Intel ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/pc-components/cpus/chinese-x86-eight-core-zhaoxin-kx-7000-cpu-lags-behind-amd-and-intel</link>
                                                                            <description>
                            <![CDATA[ Zhaoxin's KaiXian KX-7000/8 processor tested in various applications: still cannot compete against modern x86 processors from AMD and Intel. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">qtavGuZeK5XjAzEp9YvZG9</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/9mFVfuFQQXuiAzuNttqth6-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Wed, 27 Nov 2024 12:01:07 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 10:11:54 +0000</updated>
                                                                                                                                            <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                <author><![CDATA[ ashilov@gmail.com (Anton Shilov) ]]></author>                    <dc:creator><![CDATA[ Anton Shilov ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/uMZ5kNphxA2Ut6whdLaSQV.png ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Anton Shilov has been in the PC industry since 1990s playing games, building PCs, and writing stories about pretty much everything that relates to PCs, Macs, smartphones, tablets, and even fab equipment. Over his career, he has worked at a variety of high-ranking websites, including AnandTech, EE Times, TechRadar, X-bit labs, and now Tom&#039;s Hardware. When Anton is not reading or writing about something high-tech, he is probably watching a good movie, playing a video game, or spending time with his family.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/9mFVfuFQQXuiAzuNttqth6-1280-80.jpg">
                                                            <media:credit><![CDATA[Zhaoxin]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Zhaoxin&#039;s KX-7000 CPU.]]></media:description>                                                            <media:text><![CDATA[Zhaoxin&#039;s KX-7000 CPU.]]></media:text>
                                <media:title type="plain"><![CDATA[Zhaoxin&#039;s KX-7000 CPU.]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/9mFVfuFQQXuiAzuNttqth6-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>When Zhaoxin, a joint venture between Via Technologies and Shanghai Municipal Government, introduced its KaiXian KX-7000 series of x86 processors in late 2023, it implied that the new CPUs will offer <a href="https://www.tomshardware.com/pc-components/cpus/chinas-zhaoxin-kx-7000-cpu-doubles-performance-of-prior-gen-chip-still-trails-6-year-old-amd-and-intel-processors">tangible performance improvements over its predecessors</a> as they were based on a brand-new microarchitecture. While the new chips are probably faster than their predecessors, they are still years behind AMD and Intel CPUs.</p><p><a href="https://pc.watch.impress.co.jp/docs/column/hothot/1626253.html">PC Watch</a> this week put Zhaoxin&apos;s eight-core KaiXian KX-7000/8 processor (Century Avenue, 8C/8T, 4MB L2, 32MB L3, two DDR4-3200/DDR5-4800 channels, 24 PCIe 4.0 lanes) into a test against AMD&apos;s six-core Ryzen 5 5600G (Zen 3, 6C/12T, 3.90 GHz – 4.40 GHz, 3 MB L2, 16 MB L3, two DDR4-3200 channels, 16 PCIe 3.0 lanes, 65W, released in 2021) and Intel&apos;s quad-core Core i3-8100 (Coffee Lake, 4C/4T, 3.60 GHz, 6 MB cache, two DDR4-2400 channels, 16 PCIe 3.0 lanes, 65W, released in Q4 2017). While these processors belong to different years and were even positioned differently when released, they operate at the same clock speed, which gives an idea about potential of the latest Zhaoxin microarchitecture (allegedly developed by Centaur Technology). </p><div ><table><tbody><tr><td class="firstcol " >Benchmark</td><td  >KiaXian KX-7000/8</td><td  >Core i3-8100</td><td  >Ryzen 5 5600G </td></tr><tr><td class="firstcol " >CPU-Z | ST</td><td  >335.9</td><td  >422.2</td><td  >615.3 </td></tr><tr><td class="firstcol " >CPU-Z | MT</td><td  >2517.2</td><td  >1618.4</td><td  >4790.5 </td></tr><tr><td class="firstcol " >Cinebench R23 | ST</td><td  >584</td><td  >953</td><td  >1435 </td></tr><tr><td class="firstcol " >Cinebench R23 | MT</td><td  >3595</td><td  >3585</td><td  >10387 </td></tr><tr><td class="firstcol " >3DMark | Time Spy</td><td  >42</td><td  >469</td><td  >1440 </td></tr><tr><td class="firstcol " >3DMark | Fire Strike</td><td  >86</td><td  >1150</td><td  >3662 </td></tr><tr><td class="firstcol " >3DMark | Night Raid</td><td  >936</td><td  >5771</td><td  >16147 </td></tr><tr><td class="firstcol " >3DMark | Time Spy | RX 6400</td><td  >3512</td><td  >3504</td><td  >3735 </td></tr><tr><td class="firstcol " >3DMark | Fire Strike | RX 6400</td><td  >8632</td><td  >9140</td><td  >10327 </td></tr><tr><td class="firstcol " >3DMark | Night Raid | RX 6400</td><td  >26506</td><td  >24076</td><td  >34204 </td></tr><tr><td class="firstcol " >Dragon Quest X | iGPU</td><td  >2518</td><td  >4704</td><td  >12137 </td></tr><tr><td class="firstcol " >Dragon Quest X | RX 6400</td><td  >4808</td><td  >7387</td><td  >9505 </td></tr><tr><td class="firstcol " >Final Fantasy XIV | RX 6400</td><td  >6578</td><td  >7186</td><td  >8521 </td></tr><tr><td class="firstcol " >Power Consumption | CB R23</td><td  >112W</td><td  >64W</td><td  >102W </td></tr><tr><td class="firstcol " >Power Consumption | CB R24</td><td  >38W</td><td  >23W</td><td  >24W</td></tr></tbody></table></div><p>PC Watch tested Zhaoxin&apos;s KaiXian KX-7000/8 in a variety of benchmarks, some artificial, others are more real-world applications.</p><p>When it comes to single-thread CPU performance via CPU-Z benchmark, the KX-7000/8 scored 335.9, significantly lower than the Intel Core i3-8100 (422.2) and AMD Ryzen 5 5600G (615.3). Since the KX-7000/8 has eight cores, it achieved a score of 2517.2 in multi-thread CPU-Z benchmark, outperforming the Core i3-8100 (1618.4) but falling short of the Ryzen 5 5600G (4790.5).  </p><p>To a large degree, such behavior defines the capabilities of the KX-7000/8: it can beat rivals in workloads that take advantage of eight cores, but it can never beat them in applications that require superior single-thread performance. </p><p>In Cinebench R23, the KX-7000/8 scored 584 points in single-thread benchmark, which is significantly lower than both the Intel Core i3-8100 (953) and AMD Ryzen 5 5600G (1,435). In the multi-core Cinebench R23 test, the KaiXian KX-7000/8 achieved 3,595, roughly on par with the Core i3-8100 (3,585) but far behind the Ryzen 5 5600G (10,387).  </p><p>When it comes to PCMark 10 Express, the Zhaoxin KX-7000/8 exhibits lower performance across all categories compared to the AMD Ryzen 5 5600G and Intel Core i3-8100. The Chinese CPU struggles particularly with productivity, spreadsheet, and app scores, which pretty much indicates limited multitasking capability in heavy workload scenarios. While it may be sufficient for very basic tasks, it is outclassed by both competitors in all aspects. </p><p>Just like its competitors, the KaiXian KX-7000/8 has a built-in graphics core, though its performance is so low that it does not really make sense to discuss it, but to focus on performance of the CPU in gaming applications when it is equipped with an external Radeon RX 6400 graphics card.<br><br>In 3DMark, the Zhaoxin KX-7000/8 demonstrates competitive performance with the Core i3-8100 in two scenarios (e.g., Time Spy and Night Raid) and outperforms it in one case (Night Raid), but generally falls behind of the Ryzen 5 5600G in all tests. But this is rather an exception than a rule. </p><p>The KX-7000/8 is significantly behind both of its rivals in the Dragon Quest X benchmark even when it is equipped with an external GPU, which highlights its low single-thread performance. The same applies to the Final Fantasy XIV benchmark: the new CPU is barely a good choice for gaming. </p><p>Where Zhaoxin&apos;s KaiXian KX-7000/8 can actually shine are sequential read and sequential write SSD speeds as unlike its rival, it has PCIe 4.0 lanes and therefore it can work with PCIe 4.0 x4 drives at full speed. </p><p>While it is hard to draw conclusions based on one review and a limited number of benchmarks, it looks like Zhaoxin&apos;s latest microarchitecture is still years behind those of AMD and Intel in terms of single-thread performance. It is also behind rivals in terms of power consumption and efficiency. Nonetheless, now that Chinese government agencies and state-controlled companies are told not to buy PCs with foreign processors inside, they will buy Zhaoxin-based machines with not so many questions asked. </p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ x86 reigns supreme as Snapdragon X Elite chips captured just 0.8% of the market with 720,000 units sold in Q3 2024 — Qualcomm misses out on rising AI PC sales with Intel and AMD taking charge ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/pc-components/cpus/x86-reigns-supreme-as-snapdragon-x-elite-chips-captured-just-0-8-percent-of-the-market-with-720-000-units-sold-in-q3-2024-qualcomm-misses-out-on-rising-ai-pc-sales-with-intel-and-amd-taking-charge</link>
                                                                            <description>
                            <![CDATA[ Qualcomm is facing a lot of challenges in solidifying its position in the PC market - powering just 0.8% of all PCs sold in Q3 this year. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">Ku9MuQMNfQzHzDwDk4PdyL</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/LVct5Kns8CeBmxkK7NyXSi-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Tue, 26 Nov 2024 18:46:03 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 09:53:25 +0000</updated>
                                                                                                                                            <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                <author><![CDATA[ editors@tomshardware.com (Hassam Nasir) ]]></author>                    <dc:creator><![CDATA[ Hassam Nasir ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/SxxNFHt95eGK37mKPhJpdZ.jpg ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Hassam is a lifelong PC gamer and tech enthusiast with over five years of experience in PC hardware journalism. His passion began in childhood when he rescued a discarded Pentium 4 processor, straightening its pins with a kitchen knife to revive a Dell Dimension 2400 at the age of seven. Since then, he has followed the advancements in technology, witnessing the evolution of hardware from the era of AMD&#039;s Opteron architecture to Intel&#039;s Smithfield (Pentium D), and the rise of Voodoo GPUs alongside Nvidia&#039;s FX GPUs taking the market by storm to the latest innovations today. As a seasoned writer, Hassam loves to get into the nitty-gritty details of hardware, providing insights on everything from CPUs, Motherboards and RAM to GPUs. When he’s not writing, you’ll find him building custom water-cooled PCs for himself and his friends, attending drag racing events, or collecting niche fragrances.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/LVct5Kns8CeBmxkK7NyXSi-1280-80.jpg">
                                                            <media:credit><![CDATA[Qualcomm]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Snapdragon X Elite]]></media:description>                                                            <media:text><![CDATA[Snapdragon X Elite]]></media:text>
                                <media:title type="plain"><![CDATA[Snapdragon X Elite]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/LVct5Kns8CeBmxkK7NyXSi-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Despite Qualcomm's ambitions and high hopes to control over <a href="https://www.tomshardware.com/pc-components/cpus/qualcomm-ceo-says-arm-taking-50-of-the-windows-pc-market-in-five-years-is-realistic-some-oems-already-expect-snapdragon-chips-to-be-60-of-their-sales-within-three-years">50%</a> of the Windows market in the next five years, recent statistics show that its first-gen X Elite offerings are failing to gain consumer traction. <a href="https://www.techradar.com/pro/Only-about-720000-Qualcomm-Snapdragon--laptops-sold-since-launch">TechRadar </a>reports that of all PCs sold in Q3 24, Qualcomm's chips powered 720,000 units - capturing just 0.8% of the entire market. In other words, one out of every 125 devices sold in the last quarter featured an X Elite processor, which pales in contrast to Intel, AMD, and even Apple on the Arm front. </p><p>Undoubtedly, AI PCs are on the rise, primarily because virtually every new processor comes equipped with a Copilot PC+ compliant NPU. Per the report, 13.3 million AI PCs were shipped in Q3 this year - a 20% increase compared to last quarter. For the uninitiated, this stat refers to PCs featuring an NPU-equipped processor, like Intel's Meteor Lake and Lunar Lake offerings, AMD's Phoenix, Hawk Point, and Strix Point series, and Qualcomm's X Elite SoCs. </p><p>Despite a 180% surge in X Elite sales from Q2 24 to Q3, Qualcomm's chips power less than 1.5% of Windows PCs. This lackluster reception is primarily due to unoptimized software or the lack thereof. For example, <a href="https://www.tomshardware.com/software/operating-systems/microsoft-releases-official-windows-11-iso-for-arm-devices-extending-support-for-qualcomms-snapdragon-x-elite-processors">Microsoft's</a> tardy release of an official Windows 11 ISO for Arm devices left early X Elite adopters in the cold for months. Additionally, Linux support isn't as robust as existing x86 alternatives; longer battery life isn't sufficient or incentivizing enough to drive adoption. </p><p>Qualcomm is preparing to launch <a href="https://www.tomshardware.com/pc-components/cpus/dollar700-snapdragon-x-pcs-will-be-available-starting-next-year-says-qualcomm-ceo">budget </a>X Elite laptops next year to somewhat alleviate this situation. On that note, the fruits of Qualcomm's acquisition of Nuvia are materializing—both in terms of <a href="https://www.tomshardware.com/pc-components/cpus/qualcomm-accuses-arm-of-anticompetitive-conduct-as-its-license-is-terminated-due-to-repeated-material-breaches-of-arms-license-agreement">high-stakes litigation</a> and powerful mobile SoCs, namely, the Snapdragon 8 Elite designed using the Oryon 2 architecture. <a href="https://www.tomshardware.com/tech-industry/qualcomms-snapdragon-x-pc-processor-to-skip-2nd-generation-qualcomm-previews-oryon-3-says-oryon-2-only-intended-for-mobile-chips">Rumors </a>suggest that the X Elite's successor will jump directly to Oryon 3, aiming for a 2025 reveal/launch. </p><p>In any case, compatibility will always be an issue with these Arm SoCs (in Windows) - be it any chip maker. Apple's sheer market share and dominance compelled developers to write and optimize software for its silicon. Collaborating with Microsoft is vital for Qualcomm in this regard, however, it'd still have to compete with other x86 players in the Windows space; Intel and AMD.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Softbank plans to build first Nvidia Blackwell-based AI supercomputer using x86 DGX B200 servers  ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/tech-industry/artificial-intelligence/softbank-plans-to-build-first-nvidia-blackwell-based-ai-supercomputer-using-x86-dgx-b200-servers</link>
                                                                            <description>
                            <![CDATA[ Softbank's telecom arm to build AI supercomputer based on Nvidia's DGX B200 servers. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">5YDhRNRqcgqnqfTEJDwPK8</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/JnFgj2Y4HeKmY254WXX9N7-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Wed, 13 Nov 2024 21:58:09 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 08:42:12 +0000</updated>
                                                                                                                                            <category><![CDATA[Artificial Intelligence]]></category>
                                                    <category><![CDATA[Tech Industry]]></category>
                                                                                                <author><![CDATA[ ashilov@gmail.com (Anton Shilov) ]]></author>                    <dc:creator><![CDATA[ Anton Shilov ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/uMZ5kNphxA2Ut6whdLaSQV.png ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Anton Shilov has been in the PC industry since 1990s playing games, building PCs, and writing stories about pretty much everything that relates to PCs, Macs, smartphones, tablets, and even fab equipment. Over his career, he has worked at a variety of high-ranking websites, including AnandTech, EE Times, TechRadar, X-bit labs, and now Tom&#039;s Hardware. When Anton is not reading or writing about something high-tech, he is probably watching a good movie, playing a video game, or spending time with his family.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/JnFgj2Y4HeKmY254WXX9N7-1280-80.jpg">
                                                            <media:credit><![CDATA[Nvidia]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Blackwell]]></media:description>                                                            <media:text><![CDATA[Blackwell]]></media:text>
                                <media:title type="plain"><![CDATA[Blackwell]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/JnFgj2Y4HeKmY254WXX9N7-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>SoftBank Group plans to build the industry&apos;s first Nvidia Blackwell-based AI supercomputer, according to an announcement at Nvidia&apos;s AI Summit in Tokyo this week. This announcement confirms SoftBank&apos;s AI ambitions, which <a href="https://www.tomshardware.com/tech-industry/artificial-intelligence/softbank-founder-reportedly-aims-to-raise-dollar100-billion-to-build-ai-chip-company-that-would-rival-nvidia">have been rumored for some time</a>. Interestingly, the supercomputer will use x86 CPU-based DGX B200 servers, not Arm-based processors. </p><p>SoftBank&apos;s s telecom arm will build an AI supercomputer based on Nvidia&apos;s DGX B200 servers, featuring x86 processors and eight B200 GPU modules per server. SoftBank plans to adopt the <a href="https://www.tomshardware.com/news/nvidia-unveils-dgx-gh200-supercomputer-and-mgx-systems-grace-hopper-superchips-in-productionhttps://www.tomshardware.com/pc-components/gpus/nvidias-next-gen-ai-gpu-revealed-blackwell-b200-gpu-delivers-up-to-20-petaflops-of-compute-and-massive-improvements-over-hopper-h100">Grace Blackwell platform</a>, which combines Arm-based Grace CPUs and Blackwell AI GPUs, eventually (it&apos;s unclear when).  </p><p>Neither Nvidia nor SoftBank disclosed how many B200 processors the Japanese company will purchase — merely that it will get "a lot of them." Elon Musk&apos;s companies Tesla and xAI are deploying tens of thousands of Nvidia processors to train their latest AI models, so SoftBank will need to be somewhere in that ballpark if it wants to compete. But getting enough Nvidia GPUs will be hard, as virtually all global high-tech companies currently need them. </p><p>Beyond supercomputers, SoftBank&apos;s telecom unit plans to integrate Nvidia&apos;s AI technology into Japan&apos;s mobile networks to create what Huang described as an &apos;AI grid&apos; across the nation. A significant feature of this rollout will be the deployment of AI radio access networks (AI-RANs), which will use less energy than traditional RAN hardware. Such RANs are said to be a better fit for innovative services, such as autonomous vehicles and remote robotics, and will repurpose the communications network as a nationwide AI infrastructure. </p><p>SoftBank&apos;s telecom division will be trialing the AI-enhanced network in collaboration with Fujitsu and IBM subsidiary Red Hat. </p><p>Nvidia and SoftBank claim the upcoming supercomputer will be the first Blackwell-based AI supercomputer, but this may not be technically true. <a href="https://www.tomshardware.com/tech-industry/artificial-intelligence/microsoft-azure-flaunts-worlds-first-custom-nvidia-blackwell-racks">Microsoft is already testing Blackwell-based machines</a>, and is expected to be the first company to deploy them. But perhaps SoftBank will be the first company to deploy <a href="https://www.tomshardware.com/tech-industry/artificial-intelligence/nvidia-publishes-first-blackwell-b200-mlperf-results-up-to-4x-faster-than-its-h100-predecessor-when-using-fp4">DGX B200-based servers</a>. </p><p>It will take some time before Microsoft optimizes its software for Nvidia Blackwell, so don&apos;t expect the company to roll out a wide range of services powered by Nvidia&apos;s latest GPUs overnight. </p><p>After a delay involving an <a href="https://www.tomshardware.com/pc-components/gpus/nvidia-blackwell-gpus-allegedly-delayed-due-to-design-flaws">Nvidia B100/B200 design flaw</a>, which was discovered and promptly fixed earlier this year, the final revision of B100/B200 entered mass production in late October. As a result, the first batch of these processors <a href="https://www.tomshardware.com/pc-components/gpus/nvidia-vows-to-ship-blackwell-gpus-this-year-but-meta-doubts-it-will-get-them-before-2025">isn&apos;t expected to arrive until late Jan. 2025</a>. Nvidia revealed that, in order to meet the high demand for Blackwell GPUs from leading cloud providers such as AWS, Google, and Microsoft, it will need to start shipping some of the early low-yield Blackwell processors in 2024; it&apos;s not clear how many of these GPUs will be delivered to datacenters throughout the year. </p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Former Intel CPU engineer details how internal x86-64 efforts were suppressed prior to AMD64's success ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/pc-components/cpus/former-intel-cpu-details-how-internal-x86-64-efforts-were-suppressed-prior-to-amd64s-success</link>
                                                                            <description>
                            <![CDATA[ Intel was hesitant to embrace x86-64 given the resources put into Itanium. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">KHp38iSTg6kmDBS6Y8cFjn</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/RYznRu3yVboSv9c5KNp7rD-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Fri, 18 Oct 2024 20:44:10 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 09:53:00 +0000</updated>
                                                                                                                                            <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                                    <dc:creator><![CDATA[ Christopher Harper ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/qS2hbWnXwNUSmgyAHBQqKB.jpg ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Christopher Harper has been a successful freelance tech writer specializing in PC hardware and gaming since 2015, and ghostwrote&amp;nbsp;for various B2B clients in High School before that. Outside of work, Christopher is best known to friends and rivals as an active competitive player in various eSports (particularly fighting games and arena shooters) and a purveyor of music ranging from Jimi Hendrix to Killer Mike to the&amp;nbsp;Sonic Adventure 2&amp;nbsp;soundtrack.&lt;br&gt;
&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/RYznRu3yVboSv9c5KNp7rD-1280-80.jpg">
                                                            <media:credit><![CDATA[Shutterstock]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Intel Pentium 4]]></media:description>                                                            <media:text><![CDATA[Intel Pentium 4]]></media:text>
                                <media:title type="plain"><![CDATA[Intel Pentium 4]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/RYznRu3yVboSv9c5KNp7rD-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Earlier today on Twitter, AMD engineer Phil Park identified a curious nugget of PC architectural history from, of all places, a year-old <a href="https://www.quora.com/How-was-AMD-able-to-beat-Intel-in-delivering-the-first-x86-64-instruction-set-Was-Intel-too-distracted-by-the-Itanium-project-If-so-why-Shouldn-t-Intel-with-its-vast-resources-have-been-able-to-develop-both" target="_blank">Quora</a> answer posted by former Intel engineer Robert Colwell. The nugget indicates that Intel could have beaten AMD to the x86-64 punch if the former wasn't dead-set on the x64-only Itanium line of CPUs. The historical context of this story and the comments within are fascinating, especially considering today's desktop CPU architectures, where "64-bit" is immediately understood to mean x86-64 — because who wants a computer that can't natively run most applications made for a PC?</p><div class="see-more see-more--clipped"><blockquote class="twitter-tweet hawk-ignore" data-lang="en"><p lang="en" dir="ltr">I was looking up some history behind the x86-64 transition, particularly around the Pentium 4 time frame, and I found out that Bob Colwell (Pentium Pro chief architect) has been posting on Quora.Pentium 4 had a version of x86-64 that was fused off. pic.twitter.com/eYWLpD0qoW<a href="https://twitter.com/cantworkitout/status/1847292719254630721">October 18, 2024</a></p></blockquote><div class="see-more__filter"></div></div><p>To Intel&apos;s credit, it isn&apos;t that Intel Itanium processors completely did away with x86 software and architecture. However, they were <em>intended</em> to in the long run, especially as a measure of definitively striking down AMD in the marketplace. Unfortunately, this meant that the pure 64-bit architecture of Intel Itanium did not allow 32-bit (x86) applications to run natively, and the emulation solutions performed poorly. As a result, Itanium landed with a thud in the market despite being among the first to the 64-bit punch. Backward compatibility matters a great deal for big software and hardware purchases of any kind, but especially in the PC market. This fact was especially true in the server and enterprise markets where Intel targeted the Itanium CPUs.</p><p>As Intel&apos;s former chief x86 architect, Colwell knew this to be true, and thus designed the earliest internal versions of Pentium 4 CPUs to be x86-64 instead of mere x86 chips. Unfortunately, this design path was axed by the higher-ups at Intel, who clearly feared it would eat into or harm Itanium (much in the same way that AMD&apos;s debut x86-64 chips would end up doing anyway). In the face of repeated firing threats, the knowledgeable Colwell left the gates for 64-bit in Pentium 4, but fused off the functionality to make the inevitable return to x86 easier for Intel when the time came.</p><p>However, the story of Intel Itanium doesn&apos;t quite end at the launch of AMD64/x86-64 in 2003 despite the obvious chilling effect. Itanium still kept support and was iterated on until February 2017, and shipments didn&apos;t completely halt until July 2021. For some fringe scenarios, Itanium was very performant and even ideal.</p><p>But as Colwell knew, even back then, backward compatibility is king, especially on the PC, and especially in the enterprise. And don&apos;t even get me started on what consumers are willing to do for some good backward compatibility.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Intel and AMD are unlikely allies in new x86 ecosystem advisory group – "we'll remain fierce competitors" ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/pc-components/cpus/intel-and-amd-forge-x86-ecosystem-advisory-group-that-aims-to-ensure-a-unified-isa-moving-forward</link>
                                                                            <description>
                            <![CDATA[ In a rare public-facing display of cooperation between two fierce rivals, Intel and AMD jointly announced the formation of a new x86 advisory group to ensure a unified x86 instruction set architecture (ISA) moving forward, an important consideration given both the potential addition of new features and the various x86 simplification efforts already underway. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">9suHTU8FeKVTQgGmq88GiT</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/wjYbPbiQ4nY9dFkm9WYvM9-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Tue, 15 Oct 2024 17:03:02 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 08:44:20 +0000</updated>
                                                                                                                                            <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                <author><![CDATA[ palcorn@outlook.com (Paul Alcorn) ]]></author>                    <dc:creator><![CDATA[ Paul Alcorn ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/RZRmFeQfPy3etHjBQitbGW.jpeg ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;As a teenager, Paul scraped up enough money to buy a 486-powered PC with a turbo button (yes, a turbo button). Back when floppies were still popular he was already chasing after the fastest spinners for his personal computer, which led him down the long and winding storage road, covering enterprise storage. His current focus is on consumer processors, though he still keeps a close eye on the latest storage news. In his spare time, you’ll find Paul hanging out with his kids or indulging his love of the Kansas City Chiefs and Royals.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/wjYbPbiQ4nY9dFkm9WYvM9-1280-80.jpg">
                                                            <media:credit><![CDATA[Getty Images, AMD, Intel]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[AMD and Intel]]></media:description>                                                            <media:text><![CDATA[AMD and Intel]]></media:text>
                                <media:title type="plain"><![CDATA[AMD and Intel]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/wjYbPbiQ4nY9dFkm9WYvM9-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>In a rare public-facing display of cooperation between two of the industry&apos;s fiercest rivals, Intel and AMD jointly announced the formation of a new x86 advisory group to ensure a unified x86 instruction set architecture (ISA) moving forward, an important consideration given both the potential addition of new features and the various x86 simplification efforts already underway.</p><p>The companies announced the new x86 ecosystem advisory group at the 2024 OCP Summit. It already has several notable industry software and hardware stalwarts as participants, including Google, Broadcom, Dell, HP, Lenovo, Microsoft, Meta, Oracle, and Red Hat, with more to come in the future.  </p><p>The 46-year-old x86 is the most prevalent ISA used for general computing for PCs and data centers, and Intel and AMD are the only two primary x86 architecture licensees that build new processors in high volumes, creating a duopoly. Cooperation between the two, with the input of a bevy of customers and end users, will help to build a more unified approach that reduces or even eliminates custom ISA implementations that can be problematic for the duopoly&apos;s hardware and software customers. That&apos;s becoming even more important as the x86 ecosystem faces intense pressure from Arm in both the consumer and data center markets, not to mention the continuing rise of RISC-V.</p><p>The new group intends to standardize at least some of the new additions and alterations to the x86 ISA, which includes several simplification efforts already underway. The alterations and areas of collaboration aren&apos;t yet defined, but there are plenty of clear candidates that could be up for discussion. </p><p>For instance, AMD has its Supervisor Entry Extensions, which are designed to clear up some of the older cruft in the ISA, while Intel has its <a href="https://www.intel.com/content/www/us/en/content-details/779982/flexible-return-and-event-delivery-fred-specification.html">Flexible Return and Event Delivery (FRED)</a> code, which has similar goals. Intel has even begun work on X86S, a <a href="https://www.tomshardware.com/news/intel-ponders-transition-to-64-bit-only-x86s-architecture">simplified 64-bit mode-only implementation</a> designed to strip out even more of the legacy cruft. </p><p>While cleaning up is an obvious area of potential collaboration, the x86 ISA is also constantly moving forward with new additions, and here, alignment between Intel and AMD could become even more important. For instance, Intel has recently introduced AMX, a matrix math extension that dramatically boosts performance in AI inference workloads, and <a href="https://www.tomshardware.com/news/intels-new-avx10-brings-avx-512-capabilities-to-e-cores">AVX10</a>. Both would benefit from more uniform implementations among the vendors. However, there will certainly be even newer and as-yet-unforeseen additions, particularly regarding various extensions that support AI operations. </p><div class="see-more see-more--clipped"><blockquote class="twitter-tweet hawk-ignore" data-lang="en"><p lang="en" dir="ltr">Big day! @Intel & @AMD launched an x86 advisory group to drive the customization, compatibility, and scalability customers need to evolve and keep pace with increasing compute workloads.We've always championed ecosystem engagement, and we’re proud to work with @LisaSu and AMD… pic.twitter.com/O1TSoxBddg<a href="https://twitter.com/PGelsinger/status/1846249205385625805">October 15, 2024</a></p></blockquote><div class="see-more__filter"></div></div><p>Before the announcement, we spoke with AMD&apos;s Forrest Norrod (EVP and GM of its Data Center Solutions BU), and Intel&apos;s Justin Hotard (EVP and GM of the Data Center and AI Group).</p><p>"AMD and Intel are excited to come together in this," said Norrod, "and we think it&apos;s one of the most significant shifts in the x86 architecture in decades. As Justin said, x86 is the de facto standard. It&apos;s a strong ecosystem, but it&apos;s one that Intel and AMD have co-developed in a way, but at arm&apos;s length. And that has caused some inefficiencies and some drift in portions of the ISA over time."</p><p>"When we step back and look at it, we see that it is a de facto open ecosystem. Open ecosystems benefit from having consortiums with stakeholders, all with a voice in driving the ecosystem forward," said Norrod. </p><p>However, we shouldn&apos;t expect AMD and Intel to back off their competitive instincts. "We&apos;re going to remain fierce competitors. You know, Justin and I are friends first, but when we show up to work each day, we are fiercely trying to compete on behalf of our companies and ensure that our customers have compelling choices from each one of our companies. But we can compete even while we&apos;re driving industry standards together, and there&apos;s a rich history of Intel and AMD doing that," said Norrod. </p><p>"I think the other question you might ask is, why now? It&apos;s because we&apos;re seeing a real shift in the demand for compute. We&apos;re at an inflection point. We think it&apos;s the right time to enable this new, consistent architecture as a source of innovation for our ecosystem," Hotard added. </p><p>"We&apos;re looking at new innovations in the architecture, and going forward, we implement them in standard ways, and we think that provides easier adoption for the entire ecosystem, whether they&apos;re hardware vendors or software developers," said Hotard. "There have been many different feature requests that we&apos;ve had for x86; some have been adopted by one of us, and some have been adopted by neither of us. I think the agreement that we will have a consistent approach is foundational, so we have good predictability."</p><p>Better collaboration and standardization will also benefit security-related features. Intel and AMD already collaborate on multiple axes behind the scenes, and standards such as PCIe, ACPI, and USB, among others, result from intense collaborative efforts across the industry. Naturally, coming to some collaborative decisions about the future of x86 could become contentious between the two rivals, but Norrod cites the presence of other companies and customers in the group as a guiding force that will help keep the companies headed in the right direction. </p><p>Via Technologies is also another x86 licensee, but the company&apos;s status in the group is unknown for now. Intel purchased much of the company&apos;s assets, though Via does retain the right to make x86 processors. I asked Intel and AMD about the matter. Representatives said Via is free to join the group, but they will also follow up with more details.</p><p>AMD and Intel intend to chart a new course<em> together</em> for x86 to ensure compatibility and consistency. However, given the long design cycles for modern processors, we shouldn&apos;t expect to see the impact of the new x86 advisory group for at least a year, if not longer. For now, neither company is willing to commit to specifics, but we&apos;re sure that will change in the coming months. </p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Intel outlines a plan to get back in the game: Pause fab projects in Europe, make the foundry unit an independent subsidiary, and streamline the x86 portfolio ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/pc-components/cpus/intel-outlines-a-plan-to-get-back-in-the-game-pause-fab-projects-in-europe-make-the-foundry-unit-an-independent-subsidiary-and-streamline-the-x86-portfolio</link>
                                                                            <description>
                            <![CDATA[ Intel reviews its projects and product plans as part of the turnaround plan introduced in August. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">2QbLHXPLHePd4zHKq4iznj</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/gJFmzScLXYYCeyCGZzuKZi-1280-80.png" type="image/png" length="0"></enclosure>
                                                                        <pubDate>Tue, 17 Sep 2024 18:17:58 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 08:40:22 +0000</updated>
                                                                                                                                            <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                <author><![CDATA[ ashilov@gmail.com (Anton Shilov) ]]></author>                    <dc:creator><![CDATA[ Anton Shilov ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/uMZ5kNphxA2Ut6whdLaSQV.png ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Anton Shilov has been in the PC industry since 1990s playing games, building PCs, and writing stories about pretty much everything that relates to PCs, Macs, smartphones, tablets, and even fab equipment. Over his career, he has worked at a variety of high-ranking websites, including AnandTech, EE Times, TechRadar, X-bit labs, and now Tom&#039;s Hardware. When Anton is not reading or writing about something high-tech, he is probably watching a good movie, playing a video game, or spending time with his family.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/png" url="https://cdn.mos.cms.futurecdn.net/gJFmzScLXYYCeyCGZzuKZi-1280-80.png">
                                                            <media:credit><![CDATA[Intel]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Intel]]></media:description>                                                            <media:text><![CDATA[Intel]]></media:text>
                                <media:title type="plain"><![CDATA[Intel]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/gJFmzScLXYYCeyCGZzuKZi-1280-80.png" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Intel chief executive <a href="https://www.intc.com/news-events/press-releases/detail/1710/a-message-from-intel-ceo-pat-gelsinger-to-employees" target="_blank">Pat Gelsinger</a> revealed the company’s next steps this week in the form of three main goals that might turn around the struggling technology company. But tech enthusiasts worry: Will it be enough?</p><p>In a recent meeting, Intel leadership discussed how to pursue their long-term strategy. The Board, comprised of independent directors, emphasized the importance of Intel’s efficiency, profitability, and market competitiveness. In the end, they agreed upon three core objectives: enhancing Intel’s foundry operations, optimizing costs to hit the $10 billion savings target, and refocusing on its core x86 technology while driving forward its AI initiatives. </p><p>Notable announcements include a multi-billion-dollar partnership with Amazon Web Services (AWS) and the decision to put fab and packaging facility projects in Germany and Poland on hold for the next two years while continuing to build capacity in the U.S.</p><h2 id="foundry-business-remains-key-to-intel-apos-s-future-success">Foundry business remains key to Intel&apos;s future success</h2><p>Intel&apos;s internal manufacturing remains crucial to the company&apos;s long-term success. However, the company plans to make Intel Foundry an independent subsidiary, completing the separation of profit and financial reporting from Intel Products started earlier this year.</p><p>This new structure will offer more apparent distinctions for customers and suppliers while allowing Intel to explore external funding and optimize capital strategy for the Foundry and Products units. The leadership team remains unchanged, reporting to the CEO, with an independent board providing oversight to ensure transparency and accountability.</p><p>A more focused Intel Foundry will enhance collaboration with Intel Products, while Intel&apos;s design and manufacturing capabilities will remain a competitive advantage.</p><p>Intel says that its Foundry unit has seen increased customer interest, with a significant uptick in demand for its advanced packaging technologies. Intel has tripled its deal pipeline since the start of the year, and the collaboration with AWS (more on this in a while) is a testament to this growth.</p><h2 id="germany-and-poland-facilities-are-on-hold-u-s-projects-to-continue">Germany and Poland facilities are on hold; U.S. projects to continue</h2><p>Intel is also enhancing its capital efficiency within the foundry business. After a period of significant investment in manufacturing, the company is shifting toward a more balanced development pace.</p><p>Intel remains committed to its manufacturing projects in the U.S., so the fabs and packaging facilities in Arizona, Oregon, New Mexico, and Ohio will be built according to Intel&apos;s plans. It may not be particularly surprising that Intel received billions of dollars from the U.S. government to expand its production capacity in America.</p><p>Given the current demand outlook, Intel will pause its fab and packaging facility projects in Germany and Poland for two years as part of the overall business optimization. Intel recently expanded the capacity of its fab near Leixlip in Ireland and expected this facility to remain its lead European hub. The company did not reveal whether demand expectations concern foundry or internal products, but it is obvious that Intel limits the growth of its production capacity in general.</p><p>Also, Intel will build the shell for its advanced packaging facility in Malaysia but will not equip it before demand picks up.</p><h2 id="amazon-web-services-to-use-custom-intel-xeon-processors">Amazon Web Services to use custom Intel Xeon processors</h2><p>One significant development is Intel&apos;s expanded partnership with Amazon Web Services (AWS). Under this multi-year agreement, Intel will produce custom AI fabric chips for AWS using its Intel 18A technology and a custom version of the Xeon 6 CPU based on Intel 3, as planned. In the future, Intel will produce AWS designs using Intel 18A, Intel 18AP, and Intel 14A process technologies. AWS has become Intel Foundry&apos;s long-term client, which is a big deal.</p><p>The manufacturing and packaging contribute to Intel&apos;s ongoing collaboration with AWS, which already uses Intel Xeon Scalable processors (many of which are the so-called off-roadmap semi-custom processors). Intel calls this collaboration a &apos;better together&apos; strategy, integrating foundry services, infrastructure, and x86 products.</p><h2 id="streamline-product-portfolio">Streamline product portfolio</h2><p>Intel’s x86 instruction set architecture (ISA) and expertise in its enhancement have been its core strengths for decades, so Intel is certainly not giving up on x86.</p><p>Instead, Intel is streamlining its portfolio, including developing competitive x86 offerings across its client, edge, and data center lineups. Intel’s collaboration with AWS exemplifies its commitment to providing customized x86 solutions for customers to better compete against Arm and RISC-V.</p><p>The company also sees opportunities to simplify its portfolio to increase efficiency and innovation. To that end, it integrates its Edge and Automotive businesses into its Client Computing Group (CCG), allowing it to expand its leadership in AI PCs and vertical edge solutions. Networking and telco will remain the focus of Intel’s Network and Edge (NEX) group, while its Integrated Photonics Solutions division will merge into the Data Center and AI (DCAI) group.</p><h2 id="building-a-leaner-intel">Building a leaner Intel</h2><p>These changes are vital to creating a leaner, more streamlined, and efficient Intel by making internal changes and reducing the company&apos;s workforce by 15,000.</p><p>With efforts underway to cut around 15,000 jobs by year-end, the company has already reached more than half of this target through voluntary retirements and separation packages. In addition, Intel plans to reduce or exit two-thirds of its global real estate by the end of the year as part of its cost-saving initiatives. To bolster its financial position, Intel is also preparing to sell part of its stake in Altera, generating funds ahead of Altera&apos;s anticipated IPO.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Intel vs AMD: Which CPUs Are Better in 2026? ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/features/amd-vs-intel-cpus</link>
                                                                            <description>
                            <![CDATA[ We wade into the endless debate: Who makes the best CPU, AMD or Intel? Here's the blow-by-blow in ten categories. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">WSVN7w3b5hcJks92sJbzPg</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/ZT89RwnfySndiR8Favks9k-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Sat, 03 Aug 2024 12:37:35 +0000</pubDate>                                                                                                                                <updated>Mon, 29 Jun 2026 14:26:48 +0000</updated>
                                                                                                                                            <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                                    <dc:creator><![CDATA[ Jake Roach ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/h6PRM8bTimCTnNfoAYfjAi.jpg ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Jake Roach has been bending pins and busting solder joints since the mid-2000s. From trying to run scratched CDs of &lt;em&gt;Delta Force &lt;/em&gt;and &lt;em&gt;Unreal Tournament &lt;/em&gt;to spitting out virtual machines on a Threadripper, Jake has been on the hunt for the latest hardware and highest performance for decades. That eventually spun up a career, with Jake serving as Lead Reporter at Digital Trends, as well as contributing to outlets like XDA, PC Invasion, Business Insider, and WIRED. At Tom’s Hardware, Jake is focused on consumer and workstation CPUs. Outside working hours, you’ll find him knee-deep in the latest roguelite taking over Steam, spending way too much money on &lt;em&gt;Magic: The Gathering, &lt;/em&gt;or forcing his lazy corgi onto walks.&lt;/p&gt; ]]></dc:description>
                                                                                                        <dc:contributor><![CDATA[ Paul Alcorn ]]></dc:contributor>
                                                                                                                                                                                    <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/ZT89RwnfySndiR8Favks9k-1280-80.jpg">
                                                            <media:credit><![CDATA[Tom&#039;s Hardware]]></media:credit>
                                                                                                                                                                        <media:description><![CDATA[Intel vs AMD]]></media:description>                                                            <media:text><![CDATA[Intel vs AMD]]></media:text>
                                <media:title type="plain"><![CDATA[Intel vs AMD]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/ZT89RwnfySndiR8Favks9k-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:959px;"><p class="vanilla-image-block" style="padding-top:49.64%;"><img id="" name="intelvsamd.JPG" alt="Intel vs AMD" src="https://cdn.mos.cms.futurecdn.net/ZT89RwnfySndiR8Favks9k.jpg" mos="" align="middle" fullscreen="1" width="959" height="476" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/ZT89RwnfySndiR8Favks9k.jpg' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Tom's Hardware)</span></figcaption></figure><p>If you're looking for the <a href="https://www.tomshardware.com/reviews/best-cpus,3986.html">best CPUs for gaming</a> or one of the <a href="https://www.tomshardware.com/reviews/best-cheap-cpus,5668.html">best budget CPUs</a>, there are only two choices: AMD and Intel. That fact has spawned an almost religious following for both camps, and the resulting AMD vs Intel flamewars make it tricky to get unbiased advice about the best choice for your next processor. But in many cases, the answer is actually very clear: AMD's X3D chips dominate gaming performance, from the Ryzen 5 7600X3D up to the <a href="https://www.tomshardware.com/pc-components/cpus/amd-ryzen-9-9950x3d2-review">Ryzen 9 9950X3D2</a>. For application performance, AMD still tops the charts with flagships, but Intel's recent Arrow Lake Refresh chips provide nearly the same level of performance under $300 based on the data in our <a href="https://www.tomshardware.com/reviews/cpu-hierarchy,4312.html">CPU benchmark hierarchy</a>. <br><br>This article covers the never-ending argument of AMD vs Intel desktop CPUs (we're not covering laptop or server chips). We judge the chips on nine criteria based on what you plan to do with your PC: pricing, specifications and features, gaming performance, productivity performance, driver support, power consumption, overclocking, chipset and socket support, and security, giving us a clear view of the state of the competition. Throughout each section, we'll also discuss the process nodes and architectures influencing the moving goalposts. However, each brand has its strengths and weaknesses, so which CPU brand you should buy depends mostly on what blend of features, price, and performance is important to you.</p><p>The latest <a href="https://www.tomshardware.com/pc-components/cpus/intel-core-ultra-9-285k-cpu-review" target="_blank">'Arrow Lake Core Ultra 200S series</a> builds on Intel's hybrid architecture formula but leverages a new design philosophy that constrains gaming performance. However, the chips do provide strong performance in single- and multi-thread productivity workloads, along with improved energy efficiency. New refreshed chips like the <a href="https://www.tomshardware.com/pc-components/cpus/intel-core-ultra-7-270k-plus-review">Core Ultra 7 270K Plus</a> shore up the gaming front and provide a big boost in productivity performance, as well. <br><br>AMD's answer is its Zen 5 Ryzen 9000 series. These chips debuted with a fizzle on the gaming front, but subsequent firmware and operating system updates have improved the overall performance significantly, making these chips the bang-for-the-buck leader for most users looking for a balanced system.<br><br>AMD's powerful gaming-optimized Ryzen 9000 "X3D" models utilize a breakthrough 3D chip-stacking tech to take the lead in gaming performance, as you can see in our <a href="https://www.tomshardware.com/pc-components/cpus/amd-ryzen-7-9850x3d-review">Ryzen 9 9850X3D review</a> that finds the 9850X3D to be the fastest gaming CPU on the planet, bar none. AMD has also leveraged this X3D tech with its older architectures to make incredibly value-centric gaming chips, like the <a href="https://www.tomshardware.com/reviews/amd-ryzen-5-5600x3d-cpu-review">Ryzen 5 5600X3D</a>. The gains in gaming performance are phenomenal, so much so that the competition against Intel chips isn't even close, giving AMD a walk-in touchdown for gaming PCs.</p><h3 class="article-body__section" id="section-amd-vs-intel-which-cpu-is-best"><span>AMD vs Intel: Which CPU is Best?</span></h3><div ><table><caption>AMD vs Intel CPUs 2025</caption><thead><tr><th class="firstcol empty" ></th><th  ><p>Intel</p></th><th  ><p>AMD</p></th></tr></thead><tbody><tr><td class="firstcol " ><p>Pricing and Value</p></td><td  ><p>X</p></td><td  ></td></tr><tr><td class="firstcol " ><p>Gaming Performance</p></td><td  ></td><td  ><p>X</p></td></tr><tr><td class="firstcol " ><p>Productivity and Content Creation Performance</p></td><td  ><p>X</p></td><td  ></td></tr><tr><td class="firstcol " ><p>Specifications and Features</p></td><td  ></td><td  ><p>X</p></td></tr><tr><td class="firstcol " ><p>CPU Power Consumption and Heat</p></td><td  ></td><td  ><p>X</p></td></tr><tr><td class="firstcol " ><p>Overclocking</p></td><td  ><p>X</p></td><td  ></td></tr><tr><td class="firstcol " ><p>CPU Drivers, Software, and Firmware</p></td><td  ><p>X</p></td><td  ><p>X</p></td></tr><tr><td class="firstcol " ><p>Chipset and Socket Support</p></td><td  ></td><td  ><p>X</p></td></tr><tr><td class="firstcol " ><p>Security</p></td><td  ><p>X</p></td><td  ><p>X</p></td></tr><tr><td class="firstcol " ><p>Total</p></td><td  ><p>5</p></td><td  ><p>6</p></td></tr></tbody></table></div><p>Comparing Intel vs AMD in 9 categories in 2026, AMD and Intel are in lockstep with a win in three categories each, with the brands coming in tied in two categories. Despite long-standing as the value alternative, AMD’s original Zen microarchitecture has kicked off a slow rise to the top. The <a href="https://store.steampowered.com/hwsurvey/Steam-Hardware-Software-Survey-Welcome-to-Steam">Steam hardware survey</a> now shows AMD only slightly behind Intel in market share, and from the <a href="https://www.cpubenchmark.net/market_share.html">Passmark database</a>, AMD outpaced Intel in desktop market share for the first time last year. </p><p>Although the earlier years of Zen were met with an audacious Intel, that story quickly changed as AMD started to gain ground, particularly around the release of Zen 3. Intel was finally able to move onto its 10nm node after years of manufacturing challenges, as well as introduce a hybrid architecture in a desktop x86 CPU. Alder Lake, Raptor Lake, and Raptor Lake Refresh all maintain competitive positions against their Zen 3, Zen 4, and even Zen 5 counterparts, but Intel’s market dominance – and the price it demanded from it – has disappeared in desktops. </p><p>Fierce competition is good for everyone, but Intel didn’t maintain its trajectory, instead opting for a radically different architecture with Arrow Lake that ditched Hyper-Threading. In AMD’s camp, it doubled-down on the wildly successful 3D V-Cache, introducing a second generation of the technology that places additional cache below the compute die for more thermal headroom, and as a result, higher clock speeds. </p><p>Although Arrow Lake brings much-needed efficiency improvements to Intel’s desktop line-up, as well as great overclocking headroom on CPU cores and the memory subsystem, AMD dominates gaming performance with its X3D lineup, sometimes by as much as 30%. At the same time, AMD is able to match or exceed Intel’s productivity performance, despite how impressive the Arrow Lake architecture is from a technical perspective. </p><p>Broadly, AMD earns our recommendation for most people. It clearly leads in gaming performance with X3D CPUs, and despite stagnant specifications, AMD has continued to show architectural advantage in comparative performance scenarios. Intel has gained by some ground with the 270K Plus and <a href="https://www.tomshardware.com/pc-components/cpus/intel-core-ultra-5-250k-plus-review/">Core Ultra 5 250K Plus</a>, which are both excellent processors are affordable prices. For now, however, AMD remains our go-to recommendation.</p><h3 class="article-body__section" id="section-amd-vs-intel-cpu-pricing-and-value-2025"><span>AMD vs Intel CPU Pricing and Value 2025</span></h3><p>AMD has long stood as the value king, and although you can get a lot for your money with chips like the Ryzen 7 9800X3D, Intel has slid into the value position as AMD continues to rise in market share. Looking at like-for-like CPUs in the AMD vs Intel battle, the two are in lockstep on pricing within a margin of $20 to $30 in most cases, outside of sales. </p><p>For the current generation lineup, Intel’s Arrow Lake chips are slightly cheaper at the Core Ultra 9 and Core Ultra 7 levels, though only by $20. Factoring in sales, Arrow Lake ends up much cheaper. At the time of writing, for instance, the <a href="https://www.tomshardware.com/pc-components/cpus/intel-core-ultra-9-285k-cpu-review">Core Ultra 9 285K</a> is available for $500 while the <a href="https://www.tomshardware.com/pc-components/cpus/amd-ryzen-9-9950x-cpu-review">Ryzen 9 9950X</a> will run you $570. </p><div ><table><caption>AMD Zen 5 'Granite Ridge' Ryzen 9000 vs Intel 'Arrow Lake' Core 200S Ultra series</caption><thead><tr><th class="firstcol " ><p>CPU</p></th><th  ><p>AMD</p></th><th  ><p>Intel</p></th></tr></thead><tbody><tr><td class="firstcol " ><p><a href="https://www.amazon.com/AMD-RyzenTM-9950X-32-Thread-Processor/dp/B0D6NNRBGP/">Ryzen 9 9950X</a> / <a href="https://www.newegg.com/intel-core-ultra-9-285k-arrow-lake-lga-1851-desktop-cpu-processor/p/N82E16819118505">Core Ultra 9 285K</a></p></td><td  ><p>~$600</p></td><td  ><p>~$580</p></td></tr><tr><td class="firstcol " ><p><a href="https://www.amazon.com/AMD-RyzenTM-9900X-24-Thread-Processor/dp/B0D6NN87T8/">Ryzen 9 9900X</a></p></td><td  ><p>~$450</p></td><td  ><p>N/A</p></td></tr><tr><td class="firstcol " ><p><a href="https://www.amazon.com/AMD-9700X-16-Thread-Unlocked-Processor/dp/B0D6NMDNNX/">Ryzen 7 9700X</a> / <a href="https://www.newegg.com/intel-core-ultra-7-265k-arrow-lake-lga-1851-desktop-cpu-processor/p/N82E16819118506">Core Ultra 7 265K   </a>(<a href="https://www.amazon.com/Intel%C2%AE-CoreTM-Processor-270K-P-cores/dp/B0GMLJCBBM/">Core Ultra 7 270K Plus</a>)</p></td><td  ><p>~$330</p></td><td  ><p>~$310 (~$350)</p></td></tr><tr><td class="firstcol " ><p><a href="https://www.amazon.com/AMD-RyzenTM-9600X-12-Thread-Processor/dp/B0D6NN6TM7/">Ryzen 5 9600X</a> / <a href="https://www.newegg.com/intel-core-ultra-5-245k-arrow-lake-lga-1851-desktop-cpu-processor/p/N82E16819118508">Core Ultra 5 245K </a>(<a href="https://www.amazon.com/Intel%C2%AE-CoreTM-Processor-P-cores-cores/dp/B0GMLFFHS1/">Core Ultra 5 250K Plus</a>)</p></td><td  ><p>~$210</p></td><td  ><p>~$230 (~$220)</p></td></tr></tbody></table></div><p>The prices above are based on the average selling price of the main lineups from AMD and Intel over the past 60 days. Notably, these aren’t list prices, which aren’t reflective of what you can expect to spend, especially this late into a generation. As an example, the Core Ultra 7 265K launched at $395 while the <a href="https://www.tomshardware.com/pc-components/cpus/amd-ryzen-5-9600x-cpu-review">Ryzen 7 9700X</a> launched for $359. Now, however, Intel comes out slightly cheaper.</p><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/S5p9FDhxSiTDiTr2A2NmeN.png" alt="270K Plus benchmarks" /><figcaption><small role="credit">Future</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/FXz2R8WVcaZE4MgC3n5TxH.png" alt="Intel Core Ultra 5 250K Plus" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure></figure><p>AMD leads in overall value for lower-end offerings like the Ryzen 5 9600X, but Intel isn't far behind with the recent Core Ultra 5 250K Plus. In gaming performance, you can see Intel is delivering better average frame rates, as well, though only with its newer Arrow Lake Refresh chips.  </p><div ><table><thead><tr><th class="firstcol " ><p>CPU</p></th><th  ><p>AMD</p></th><th  ><p>Intel</p></th></tr></thead><tbody><tr><td class="firstcol " ><p><a href="https://www.amazon.com/AMD-7950X-32-Thread-Unlocked-Processor/dp/B0BBHD5D8Y/">Ryzen 9 7950X</a> / <a href="https://www.amazon.com/Intel-i9-14900K-Raptor-LGA1700-Processor/dp/B0CHBJGFBC/">Core i9-14900K</a></p></td><td  ><p>~$510 (low stock)</p></td><td  ><p>~$470</p></td></tr><tr><td class="firstcol " ><p><a href="https://www.amazon.com/AMD-7900X-24-Thread-Unlocked-Processor/dp/B0BBJ59WJ4/">Ryzen 9 7900X</a></p></td><td  ><p>~$320</p></td><td  ><p>N/A</p></td></tr><tr><td class="firstcol " ><p><a href="https://www.amazon.com/AMD-7700X-16-Thread-Unlocked-Processor/dp/B0BBHHT8LY/">Ryzen 7 7700X</a> / <a href="https://www.newegg.com/intel-core-i7-14th-gen-core-i7-14700k-raptor-lake-lga-1700-desktop-cpu-processor/p/N82E16819118466">Core i7-14700K</a></p></td><td  ><p>~$280</p></td><td  ><p>~$320</p></td></tr><tr><td class="firstcol " ><p><a href="https://www.amazon.com/AMD-7600X-12-Thread-Unlocked-Processor/dp/B0BBJDS62N/">Ryzen 5 7600X</a> / Core i5-14600K</p></td><td  ><p>~$180</p></td><td  ><p>~$210 (low stock)</p></td></tr></tbody></table></div><p>AMD and Intel flip positions when looking at last-gen options, with only the Core i9-14900K coming in slightly less than the Ryzen 9 7950X. Intel has clearly recognized the value proposition of the Core i5-14600K and Core i7-14700K, with both now selling for around the same price as their Arrow Lake counterparts. </p><p><strong>Winner: Intel.</strong> Intel and AMD are more competitive on pricing than they’ve been in years. Intel comes out slightly ahead on value with lower-end SKUs, but value demands context. The Ryzen 7 9800X3D might be a worse value than the Core i5-14600K, but if you have $480 to spend on a CPU and want the best gaming performance, AMD’s X3D chip is right for you. </p><p>However, Intel shook things up massively with the 270K Plus and 250K Plus. Now, Intel is offering competitive gaming performance around $200 to $300 while pushing flagship-level application performance. For now, at least, Intel is in the driver's seat when it comes to overall value through Arrow Lake Refresh. </p><h3 class="article-body__section" id="section-amd-vs-intel-cpu-gaming-performance-2025"><span>AMD vs Intel CPU Gaming Performance 2025</span></h3><p>In the AMD vs Intel CPU gaming performance battle, AMD's X3D processors hold the lead in all critical price bands. Below, we have a wide selection of collective gaming performance measurements for the existing chips in the different price bands. You can see a much more holistic view in our <a href="https://www.tomshardware.com/reviews/cpu-hierarchy,4312.html">CPU Benchmarks</a> Hierarchy.</p><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/jBp8pv3MTsgV9U2yXWjp9f.png" alt="CPU Benchmark Rankings" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/inLKtbMy7MiHA6ZRPj8nAf.png" alt="CPU Benchmark Rankings" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/ck86DgAJZmSd2VC8TuvXJJ.png" alt="Best CPUs for Gaming" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/HzakxstHL5pFCDqjVnTs4W.png" alt="CPU benchmark hierarchy" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/X7m4xTnr8p4E2qf8xx5Y3V.png" alt="CPU Hierarchy" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/tsqVwJetsB7L9BazpFkheZ.png" alt="CPU Benchmarks" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/dXQmGZbdFLC5izEoqZVB8Z.png" alt="CPU Benchmarks" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure></figure><p>As you can see, AMD's standard 'Granite Ridge' Ryzen 9000 models take the lead over Intel's current-gen Core Ultra 200S 'Arrow Lake' processors, and the gaming optimized Ryzen 9000X3D chips, which cost more than the standard models, take an overwhelming lead, often by 30% or more. </p><p>Intel's current-gen <a href="https://www.tomshardware.com/pc-components/cpus/intel-core-ultra-9-285k-cpu-review">Core Ultra 9 285K</a> is the new flagship, but its unique tile-based (chiplet) design has a negative impact on gaming performance, so it isn't as fast as the prior-gen models in gaming. That leaves the <a href="https://www.tomshardware.com/news/intel-core-i9-14900k-cpu-review">Core i9-14900K</a> as the fastest Intel gaming chip, and it often sells at a steep discount. The recent Core Ultra 7 270K Plus, however, is just marginally behind the Core i9-14900K, and it's available for around $350. </p><p>AMD's standard Ryzen 9000 models, like the flagship <a href="https://www.tomshardware.com/pc-components/cpus/amd-ryzen-9-9950x-cpu-review">Ryzen 9 9950X</a>, are faster in gaming than Intel's Core Ultra 200S series, but Intel's previous-gen 14900K holds the edge. However, AMD's X3D models, like the <a href="https://www.tomshardware.com/pc-components/cpus/amd-ryzen-7-9800x3d-review-devastating-gaming-performance">Ryzen 7 9800X3D</a> and the <a href="https://www.tomshardware.com/pc-components/cpus/amd-ryzen-9-9950x3d-review">Ryzen 9 9950X3D</a>, are the fastest gaming chips on the planet, beating Intel's current-gen chips by 30+%. These chips also deliver the full performance of the standard models in productivity workloads, eliminating the tradeoffs associated with the X3D models that we've seen in the past. The X3D models do come at a premium, but they justify their price tag with the fastest gaming performance money can buy. </p><p>Older X3D chips leverage AMD’s first-gen 3D V-Cache, which stacks the cache on top of the compute die rather than below, which is the case with the latest Zen 5 X3D offerings. That design limits thermal headroom, and in turn, clock speeds, so expect a dip in productivity performance if you aren’t using one of AMD’s latest X3D offerings. </p><p>Kicking your resolution up to 1440p and beyond typically pushes the bottleneck back to the GPU, so you won't gain as much from your CPU's gaming prowess. However, a bit of extra CPU gaming performance could pay off if you plan on updating your graphics card (see our <a href="https://www.tomshardware.com/reviews/best-gpus,4380.html">best graphics cards</a>) with a newer generation while keeping the rest of your system intact. We expect most builds in the mid-range to come with lesser GPUs, which generally serve as an equalizer in terms of CPU performance.<br><br>In terms of integrated graphics performance, there's no beating AMD. The company's current-gen Phoenix Point APUs offer the best performance with the 8700G and 8600G. We’ve seen even more capable APUs out of AMD with its mobile Strix Point offerings like the Ryzen AI Max 395, but Strix Point hasn’t made its way to desktop yet.<br><br><strong>Winner: AMD</strong>. AMD's standard Ryzen 9000 models deliver solid performance in gaming, beating Intel's current-gen models, but they trail the previous-gen Intel chips. However, the Ryzen 9000X3D models take the unequivocal lead in gaming by massive margins, giving AMD an easy win in the gaming department. The previous-gen Raptor Lake Refresh models are a distant second in gaming performance, and they aren't as performant as the Ryzen 9000 models in productivity applications, making them a tough choice as an alternative.</p><h3 class="article-body__section" id="section-amd-vs-intel-productivity-and-content-creation-performance-2025"><span>AMD vs Intel Productivity and Content Creation Performance 2025</span></h3><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/DDw3RLrourqMvUZa2Ugp9f.png" alt="CPU Benchmark Rankings" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/SmDdzbKGWsiS2fFtifxNCf.png" alt="CPU Benchmark Rankings" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/VuBvEjzMNKLtxMNcgFhiKD.png" alt="Best CPU for Gaming" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/Ji7YTauVU7NRDubw38HbPD.png" alt="Best CPU for Gaming" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/NmQ9vd4L2xwGmbWp55UYiH.png" alt="CPU Benchmarks" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/K9qmnd9wJvvBVi53KQLLdH.png" alt="CPU Benchmarks" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/bMp3CkuZdToqCCuZEuaGSV.png" alt="CPU Hierarchy" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/tsqVwJetsB7L9BazpFkheZ.png" alt="CPU Benchmarks" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/dXQmGZbdFLC5izEoqZVB8Z.png" alt="CPU Benchmarks" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure></figure><p>In the non-gaming performance battle of AMD vs Intel CPUs, Intel's Arrow Lake chips have made great strides against AMD's finest, but they fail to deliver a tangible enough lead over AMD's core-heavy models to make productivity performance a make-or-break buying decision. AMD leads in overall multi-threaded performance with its Ryzen 9 9950X3D and 9950X by a slim margin, but Intel keeps a solid grip on the lead in single-threaded applications. The new Arrow Lake Refresh CPUs don't radically change the performance picture overall, but they come in much less than AMD's Zen 5 competition. </p><p>Arrow Lake marks Intel's continuation of using a mixture of two types of cores for the mainstream desktop PC. The big performance cores (P-cores) are best for latency-sensitive work, giving Intel the uncontested lead in single-threaded applications. The efficiency cores (E-cores) step in to add some additional heft in threaded and background applications, which pays big dividends in heavily-threaded content creation and productivity applications. </p><p>In contrast, AMD continues to leverage its tried-and-true P-core only design, which also supports AVX-512, a big consideration for those who leverage powerful productivity applications that employ the high-performance instructions. Zen 5 brought a 512-bit data path for AVX instructions – Zen 4 used two 256-bit paths – which provides a massive performance advantage in applications that leverage AVX-512, even compared to Zen 4. Intel’s latest CPUs don’t support AVX-512 instructions. <br><br>Solid performance in single-threaded work equates to faster performance in all manner of workloads, particularly day-to-day applications that rely on snappy responsiveness from the processor. The Core 7 270K Plus has taken the uncontested lead in single-threaded performance across the full suite of our benchmarks, and it comes in at a mid-range price point. And on the multithreaded front, Intel is able to match the Ryzen 9 9950X despite the Core Ultra 7 270K Plus coming in at half the price. </p><p><strong>Winner: Intel. </strong>Although AMD offers compelling productivity performance with its most expensive offerings, the Core Ultra 7 270K Plus and Core Ultra 5 250K Plus punch far above their weight class in productivity performance, easily delivering flagship performance at entry-level prices. </p><h3 class="article-body__section" id="section-amd-vs-intel-processor-specifications-and-features-2025"><span>AMD vs Intel Processor Specifications and Features 2025</span></h3><p>Modern Intel and AMD CPUs sport much different architectures, so comparing specifications directly is a fool’s errand in most cases. AMD has a traditional approach with a homogeneous core architecture that sports simultaneous multi-threading. Intel moved onto a heterogeneous architecture with Alder Lake, which it has maintained since, and it removed Hyper-Threading with Arrow Lake. </p><p>This departure in architecture means you can draw inaccurate conclusions from specs alone. For instance, Intel’s flagship Core Ultra 9 285K only has 24 threads compared to AMD’s 32 on the Ryzen 9 9950X. Despite that, the two chips offer competitive multi-threaded performance, as you can see in our performance results in the above section. </p><div ><table><caption>AMD vs Intel Pricing and Specifications 2025 </caption><thead><tr><th class="firstcol " ><p>CPU</p></th><th  ><p>Street (MSRP)</p></th><th  ><p>Arch</p></th><th  ><p>Cores / Threads (P+E)</p></th><th  ><p>P-Core Base / Boost Clock (GHz)</p></th><th  ><p>E-Core Base / Boost Clock (GHz)</p></th><th  ><p>Cache (L2/L3)</p></th><th  ><p>TDP / PBP or MTP</p></th><th  ><p>Memory</p></th></tr></thead><tbody><tr><td class="firstcol " ><p><a href="https://www.newegg.com/amd-ryzen-9-9000-series-ryzen-9-9950x3d-granite-ridge-socket-am5-desktop-cpu-processor/p/N82E16819113884">Ryzen 9 9950X3D</a></p></td><td  ><p>$699</p></td><td  ><p>Zen 5 X3D</p></td><td  ><p>16 / 32</p></td><td  ><p>4.3 / 5.7</p></td><td  ><p>—</p></td><td  ><p>144 MB (16+128)</p></td><td  ><p>170W / 230W</p></td><td  ><p>DDR5-5600</p></td></tr><tr><td class="firstcol " ><p><a href="https://www.amazon.com/s?k=Ryzen+9+7950X3D&rh=n%3A229189">Ryzen 9 7950X3D</a></p></td><td  ><p>$669 ($699)</p></td><td  ><p>Zen 4 X3D</p></td><td  ><p>16 / 32</p></td><td  ><p>4.2 / 5.7</p></td><td  ><p>—</p></td><td  ><p>144MB (16+128)</p></td><td  ><p>120W / 162W</p></td><td  ><p>DDR5-5200</p></td></tr><tr><td class="firstcol " ><p><a href="https://www.amazon.com/s?k=Ryzen+9+9950X&rh=n%3A229189">Ryzen 9 9950X</a></p></td><td  ><p>$599</p></td><td  ><p>Zen 5</p></td><td  ><p>16 / 32</p></td><td  ><p>4.3 / 5.7</p></td><td  ><p>—</p></td><td  ><p>80MB (16+64)</p></td><td  ><p>170W / 230W</p></td><td  ><p>DDR5-5600</p></td></tr><tr><td class="firstcol " ><p><a href="https://www.amazon.com/s?k=Core+Ultra+9+285K&rh=n%3A229189">Core Ultra 9 285K</a></p></td><td  ><p>$579 ($589)</p></td><td  ><p>Arrow Lake</p></td><td  ><p>24 / 24 (8+16)</p></td><td  ><p>3.7 / 5.7</p></td><td  ><p>3.2 / 4.6</p></td><td  ><p>76MB (40+36)</p></td><td  ><p>125W / 250W</p></td><td  ><p>CUDIMM DDR5-6400 / DDR5-5600</p></td></tr><tr><td class="firstcol " ><p><a href="https://www.amazon.com/AMD-Ryzen-9900X3D-12-Core-Processor/dp/B0DWGWN8GY/">Ryzen 9 9900X3D</a></p></td><td  ><p>$529 ($599)</p></td><td  ><p>Zen 5 X3D</p></td><td  ><p>12 / 24</p></td><td  ><p>4.4 / 5.5</p></td><td  ><p>—</p></td><td  ><p>140MB  (12+128)</p></td><td  ><p>120W / 162W</p></td><td  ><p>DDR5-5600</p></td></tr><tr><td class="firstcol " ><p>Ryzen 9 7900X3D</p></td><td  ><p>$599</p></td><td  ><p>Zen 4 X3D</p></td><td  ><p>12 / 24</p></td><td  ><p>4.4 / 5.6</p></td><td  ><p>—</p></td><td  ><p>140MB (12+128)</p></td><td  ><p>120W / 162W</p></td><td  ><p>DDR5-5200</p></td></tr><tr><td class="firstcol " ><p><a href="https://www.amazon.com/AMD-9800X3D-16-Thread-Desktop-Processor/dp/B0DKFMSMYK/">Ryzen 7 9800X3D</a></p></td><td  ><p>$480</p></td><td  ><p>Zen 5 X3D</p></td><td  ><p>8 / 16</p></td><td  ><p>4.7 / 5.2</p></td><td  ><p>—</p></td><td  ><p>104MB (8+96)</p></td><td  ><p>120W / 162W</p></td><td  ><p>DDR5-5600</p></td></tr><tr><td class="firstcol " ><p><a href="https://www.amazon.com/s?k=Ryzen+7+7800X3D&rh=n%3A229189">Ryzen 7 7800X3D</a></p></td><td  ><p>$365 ($449)</p></td><td  ><p>Zen 4 X3D</p></td><td  ><p>8 / 16</p></td><td  ><p>4.2 / 5.0</p></td><td  ><p>—</p></td><td  ><p>104MB (8+96)</p></td><td  ><p>120W / 162W</p></td><td  ><p>DDR5-5200</p></td></tr><tr><td class="firstcol " ><p><a href="https://www.amazon.com/s?k=Ryzen+9+9900X&rh=n%3A229189">Ryzen 9 9900X</a></p></td><td  ><p>$380 ($469)</p></td><td  ><p>Zen 5</p></td><td  ><p>12 / 24</p></td><td  ><p>4.4 / 5.6</p></td><td  ><p>—</p></td><td  ><p>76MB (12+64)</p></td><td  ><p>120W / 162W</p></td><td  ><p>DDR5-5600</p></td></tr><tr><td class="firstcol " ><p><a href="https://www.amazon.com/s?k=Core+Ultra+7+265K&rh=n%3A229189">Core Ultra 7 265K</a> / <a href="https://www.amazon.com/s?k=Core+Ultra+7+265KF&rh=n%3A229189">KF</a></p></td><td  ><p>$329 ($394) / $309 ($379)</p></td><td  ><p>Arrow Lake</p></td><td  ><p>20 / 20 (8+12</p></td><td  ><p>3.9 / 5.5</p></td><td  ><p>3.3 / 4.6</p></td><td  ><p>66MB (36+30)</p></td><td  ><p>125W / 250W</p></td><td  ><p>CUDIMM DDR5-6400 / DDR5-5600</p></td></tr><tr><td class="firstcol " ><p><a href="https://www.amazon.com/s?k=Ryzen+7+9700X&rh=n%3A229189">Ryzen 7 9700X</a></p></td><td  ><p>$298 ($349)</p></td><td  ><p>Zen 5</p></td><td  ><p>8 / 16</p></td><td  ><p>3.8 / 5.5</p></td><td  ><p>—</p></td><td  ><p>40MB (8+32)</p></td><td  ><p>65W / 88W / 105W</p></td><td  ><p>DDR5-5600</p></td></tr><tr><td class="firstcol " ><p><a href="https://www.newegg.com/amd-ryzen-5-9000-series-ryzen-5-9600x-granite-ridge-socket-am5-desktop-cpu-processor/p/N82E16819113844">AMD Ryzen 5 9600X</a></p></td><td  ><p>$210 ($279)</p></td><td  ><p>Zen 5</p></td><td  ><p>6 / 12</p></td><td  ><p>3.9 / 5.4</p></td><td  ><p>—</p></td><td  ><p>38MB (6+32)</p></td><td  ><p>65W / 88W</p></td><td  ><p>DDR5-5600</p></td></tr><tr><td class="firstcol " ><p>Core Ultra 5 245K / KF</p></td><td  ><p>$245 ($309) / $219 ($294)</p></td><td  ><p>Arrow Lake</p></td><td  ><p>14 / 14 (6+8)</p></td><td  ><p>4.2 / 5.2</p></td><td  ><p>3.6 / 4.6</p></td><td  ><p>50MB (26+24)</p></td><td  ><p>125W / 250W</p></td><td  ><p>CUDIMM DDR5-6400 / DDR5-5600</p></td></tr></tbody></table></div><p>The cores and clocks aren’t as important as they once were, at least when comparing a Ryzen 9 to a Core Ultra 9, or a Ryzen 5 to a Core Ultra 5. Instead, there’s been a stark shift in focus toward cache in the face of 3D V-Cache. That’s the marquee feature AMD has been running on for the past few years, offering chart-dominating performance in games that Intel has yet to answer. Previously, 3D V-Cache came with a slight compromise to productivity performance due to clock speeds on eight-core parts and CCX-to-CCX latency on 12- and 16-core parts. AMD has rectified that issue with second-gen 3D V-Cache, however. </p><p>Apples-to-apples, Intel and AMD offer similar cache amounts when excluding X3D parts, though Intel more evenly distributes the cache between L2 and L3, while AMD focuses the lion’s share of cache in the last level. Intel is rumored to <a href="https://www.tomshardware.com/pc-components/cpus/intels-next-gen-nova-lake-will-finally-tackle-amds-ryzen-x3d-but-only-with-pricey-k-models-144mb-big-last-level-cache-response-to-3d-v-cache-will-only-come-on-unlocked-desktop-parts">pack bLLC into its upcoming Nova Lake generation</a> to answer 3D V-Cache. Intel currently deploys this style of cache packaging in its Clearwater Forest server chips, but it has yet to show up in a consumer CPU. </p><p><strong>Winner: AMD.</strong> Intel has highlighted several features over the past several generations, from Thread Director to Intel APO and even <a href="https://www.tomshardware.com/pc-components/cpus/intels-binary-optimization-tool-tested-and-explained-how-the-ibot-translation-delivers-up-to-18-percent-faster-gaming-performance-8-percent-on-average">the new iBOT feature</a>, but these features have mainly served to bring Intel’s unique architectural design up to par. Meanwhile, AMD has pushed ahead with a big win in gaming due to 3D V-Cache, which only improved in its second generation. Add on top of that AVX-512 support, as well as a true 512-bit data path in Zen 5, and Team Red easily wins this category. </p><h3 class="article-body__section" id="section-amd-vs-intel-cpu-power-consumption-and-heat-2025"><span>AMD vs Intel CPU Power Consumption and Heat 2025</span></h3><p>When comparing AMD vs Intel CPU power and heat, the former's 4nm TSMC process node makes a big difference. Power consumption comes as a byproduct of design choices, like lithography and architecture. However, higher power consumption often correlates to more heat generation, so you'll need beefier coolers to offset the heat output of greedier chips.</p><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/8utqGSZ7TPWExrrw3rjwLg.png" alt="Ryzen 9 9900X3D Review" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/ajYwLcbEeTL6vVaGhMU5Rg.png" alt="Ryzen 9 9900X3D Review" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/BoFVmPSWz7C9WFi729AwUg.png" alt="Ryzen 9 9900X3D Review" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/erooN3b7seFMc2ok4YFeYg.png" alt="Ryzen 9 9900X3D Review" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/Lb5gz7AH2dUB5Mb6Thhfeg.png" alt="Ryzen 9 9900X3D Review" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/xZ94ZznD6ei7PodJzF2Mig.png" alt="Ryzen 9 9900X3D Review" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/kDjxfJfWuUNkTYMByAs3ng.png" alt="Ryzen 9 9900X3D Review" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/KWyUNu9zXnhCEcKkA4Mfqg.png" alt="Ryzen 9 9900X3D Review" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/tiLYraCWEYpPkBCgTEjJug.png" alt="Ryzen 9 9900X3D Review" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/uw74vWoNhnrcTmLWCSdQzg.png" alt="Ryzen 9 9900X3D Review" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/vsw9zxDKCpbXM5YKyJxz4h.png" alt="Ryzen 9 9900X3D Review" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/sCCnedr3Zvvugkbkw3Gi8h.png" alt="Ryzen 9 9900X3D Review" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/mAZAu2pgm8ubS9kaF22SDh.png" alt="Ryzen 9 9900X3D Review" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure></figure><p>Overall, Intel has reduced its power consumption from meme-worthy to an acceptable level, but it still consumes more power than Ryzen. Still, in aggregate, AMD's 4nm chips either consume less power or provide much better power-to-performance efficiency.</p><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/WnmenQLUwGLypUJGJFy6Q5.png" alt="asdf" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/BFGZhh7k8cDn8iN6cThVT5.png" alt="asdf" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/r4yKgNidSFqmq8zRUW9rZ5.png" alt="asdf" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/eoSJg2yTghESiUUpKx9s5H.png" alt="asdf" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/VTbLQDHYz5pBPknisJqyDf.png" alt="Ryzen 9 9900X3D Review" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/jZ5nsi7UsMGkXoMejZLmHf.png" alt="Ryzen 9 9900X3D Review" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/oJscwSHhNDcBunXxnyCeMf.png" alt="Ryzen 9 9900X3D Review" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure></figure><p>As you can see above, you'll get more work done per watt of energy consumed, which is a win-win, and AMD's cooling requirements aren't nearly as overbearing. Arrow Lake brings Intel more in-line with AMD, both when looking at peak power consumption and productivity efficiency. Even then, however, Intel’s latest offerings end up slightly ahead of AMD in overall power consumption, and slightly behind in over efficiency. </p><p><strong>Winner: AMD.</strong> In judging AMD vs Intel CPU performance per watt, it's impossible to overstate the importance of having the densest process node paired with an efficient microarchitecture, and TSMC's 4nm and AMD's Zen 5 are the winning combination. The latest Ryzen processors consume less power than Intel on a power-vs-performance basis, even in the face of Arrow Lake.</p><h3 class="article-body__section" id="section-intel-vs-amd-cpu-overclocking-2025"><span>Intel vs AMD CPU Overclocking 2025</span></h3><p>There's no debate when you compare Intel vs AMD CPU overclocking. Intel offers the most overclocking headroom, meaning you can gain more performance over the baseline speed with Intel chips than you can with AMD's Ryzen processors. To learn more about overclocking, head to our <a href="https://www.tomshardware.com/how-to/how-to-overclock-a-cpu">How to Overclock a CPU</a> guide.</p><p>Dynamic boosting algorithms and increasingly multi-threaded applications have offset some of the previous benefits of overclocking, at least for core clock speeds. With AMD’s current CPUs, and up to Raptor Lake Refresh for Intel, a modest all-core overclock generally won’t provide a performance benefit, and it could even reduce your performance, though only in lightly-threaded applications. The boosting algorithms can usually achieve higher speeds for these applications, with all-core overclocks running into a thermal wall before providing much of a boost. </p><p>However, for Intel, that changed with Arrow Lake. It ships with much higher thermal headroom than the last several Intel generations, shortening the gap between single-core boosts and all-core speeds. Intel now also provides more fine-grain control over clock speeds, with increments as low as 16MHz. Arrow Lake scales particularly well with high DDR5 speeds, offering a small performance edge if you’re able to secure a fast kit of memory. </p><p>AMD has taken a different approach. Rather than offering more granular control over overclocking, it has continued to invest in Precision Boost Overdrive (PBO) as a one-click overclocking solution. In addition, AMD offers Curve Optimizer and Shaper, which allow you to easily undervolt your chip with a voltage offset across the frequency range. </p><p>Intel has an edge in overclocking, but it comes with a caveat. In order to overclock an Intel chip, you need to purchase an unlocked K-series processor as well as a Z-series motherboard. H- and B-series motherboards only support memory overclocking. Meanwhile, AMD supports overclocking on all of its modern CPUs, short of the <a href="https://www.tomshardware.com/reviews/amd-ryzen-7-5800x3d-review">Ryzen 7 5800X3D</a> and other Zen 3 chips sporting 3D V-Cache. AMD also supports CPU overclocking on B- and X-series chipsets, saving you some money. </p><p><strong>Winner: Intel.</strong> Although CPU overclocking isn’t as prominent as it used to be, Team Blue holds the edge in this AMD vs Intel battle. You have more granular control over core overclocking, as well as additional fabric and memory overclocking features that can net higher performance on Arrow Lake. AMD has focused on making overclocking more accessible, but that also leaves enthusiasts with less room to play. </p><h3 class="article-body__section" id="section-amd-vs-intel-cpu-drivers-software-and-firmware-2025"><span>AMD vs Intel CPU Drivers, Software, and Firmware 2025</span></h3><p>Over the past couple of years, both AMD and Intel have seen catastrophic firmware issues, which caused CPUs to fail, or in the worst cases, literally burn themselves up. In the most recent generation, we also saw hamstrung performance due to software issues from both AMD and Intel, though both have also released a string of microcode and driver updates to address these problems. </p><p>On the driver front, Intel and AMD are both stable. In the early days of Zen, we saw lopsided support for Intel’s latest architecture, and AMD’s smaller position in the market meant issues were more common and fixes took longer to arrive. That isn’t the case today. Broadly, Intel and AMD’s chipset drivers are stable, and issues that do arise are usually resolved through an update within a few days. </p><p>Firmware is a different story, and that’s been an unfortunate area of focus for AMD and Intel over the last couple of years. Intel was at the center of a years-long issue with instability on Raptor Lake and Raptor Lake Refresh chips, and in particular, the Core i9-13900K and Core i9-14900K. Reports of instability in games on these CPUs date back at least as far as early 2023, but <a href="https://www.tomshardware.com/pc-components/cpus/intel-finds-root-cause-of-cpu-crashing-and-instability-errors-prepares-new-and-final-microcode-update">Intel didn’t acknowledge them until mid-2024</a>. </p><p>Intel released a microcode update in late 2024 that solved most instability problems, but as recently as September 2025, it’s continued to work on the issue. </p><p>In AMD’s camp, high-end Ryzen CPUs have burned themselves up in the socket, ruining both the chip and motherboard – twice, though for different reasons. In the first go, the<a href="https://www.tomshardware.com/news/amd-ryzen-7000x3d-burnout-reports"> Ryzen 7 7800X3D was operating at elevated voltages</a>. An AGESA update shortly after reports started circulating capped the voltage at 1.3V, and there haven’t been any reports since. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:7111px;"><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="eR85J43828g2yayrR3nfSi" name="mmc8y44fbjie1" alt="Ryzen 7 9800X3D" src="https://cdn.mos.cms.futurecdn.net/eR85J43828g2yayrR3nfSi.jpg" mos="" align="middle" fullscreen="" width="7111" height="4000" attribution="" endorsement="" class="inline"></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Reddit/t0pli)</span></figcaption></figure><p>With the release of the Ryzen 7 9800X3D, a far larger number of <a href="https://www.tomshardware.com/pc-components/cpus/third-ryzen-7-9800x3d-burnout-case-appears-kills-the-cpu-and-damages-the-motherboard-socket">reports started circulating</a>, once again showing the burning on the CPU’s contact pads and in the motherboard socket. This issue was much messier than the original Ryzen 7 7800X3D, though the vast majority of reports came from the Ryzen 7 9800X3D paired with an ASRock motherboard. In this case, AMD shifted blame to ASRock. ASRock has <a href="https://www.tomshardware.com/pc-components/motherboards/asrock-releases-new-firmware-for-amd-800-series-motherboards-to-enhance-cpu-operating-stability-update-may-address-the-am5-burning-socket-crisis">reportedly solved the problem</a> through BIOS updates, but new reports are still trickling out at a reduced cadence.  </p><p><strong>Winner: Tie.</strong> It’s hard to declare a winner in this category given the two major controversies Intel and AMD have faced over the past few years, both of which resulted in CPUs being ruined while supposedly operating within warrantied specifications. </p><p>Although it’s important to highlight these problems and the responses to them from AMD and Intel, they aren’t widespread issues. Neither triggered a proper recall. </p><h3 class="article-body__section" id="section-amd-vs-intel-chipset-and-socket-support-2025"><span>AMD vs Intel Chipset and Socket Support 2025</span></h3><p>An increasingly important aspect of choosing between Intel and AMD is the longevity of the chipset and socket of your motherboard. Although new generations bring new chipsets, AMD has set a new standard for socket support with AM4, which it appears to be carrying forward with AM5. Intel has responded in kind, supporting 12th-, 13th-, and 14th-gen chips on the same LGA1700 socket. However, it moved to the LGA1851 socket with the release of Arrow Lake, and it will <a href="https://www.tomshardware.com/pc-components/cpus/intels-next-gen-nova-lake-cpus-may-be-backwards-compatible-with-arrow-lake-coolers-lga1954-and-lga1851-sockets-share-the-same-dimensions">move to the LGA1954 socket</a> with the release of Nova Lake CPUs in late 2026. </p><p>AMD’s current commitment is to support the AM5 socket through 2027, but that timeframe could extend. With the release of Zen 4 and introduction of AM5, AMD originally only committed to support through 2025 before extending the timeframe with the release of Zen 5. With AMD’s current release cadence, that means we should see at least three generations, and possibly four, on the AM5 socket. If AMD once again extends the window, we’re likely looking at five generations of support. </p><p>It’s certainly possible that AMD will extend the timeframe. The AM4 socket set a precedent of longevity. It was originally introduced in 2016, and AMD has released new AM4 chips as recently as 2025; though, these chips are mostly rebranded versions of old silicon, or specific variants for different international markets. </p><p>For chipsets, AMD currently supports Zen 4 and Zen 5 CPUs across all chipsets with the AM5 socket. With AM4, AMD eventually brought support for Zen, Zen+, Zen 2, and Zen 3, though support varies based on manufacturer for older chipsets.</p><p>Intel has a more confusing lineup of chipsets and support, which alone spoils the reasoning for AMD winning this section. After three generations on the same socket, Intel moved to a new socket with the release of Arrow Lake. That socket (LGA1851) has seen Arrow Lake Refresh chips, and we don't expect it to see any more releases. </p><p>Intel also forces customers to its flagship Z-series chipset for CPU overclocking support; a line in the sand that it’s continued to maintain despite the fact that AMD supports CPU and memory overclocking on both B-series and X-series chipsets. Thankfully, the last several generations of Intel chipsets have opened up memory overclocking on B-series chipsets. </p><p><strong>Winner: AMD.</strong> The AM4 socket brought about a new standard for drop-in CPU replacements, which AMD is bringing forward with AM5. Intel has made strides to support multiple generations on the same socket, but it has yet to demonstrate the ability to deliver support over several years like AMD has. Additionally, Intel continues to charge a premium for CPU overclocking by restricting the feature to flagship Z-series chipsets. </p><h3 class="article-body__section" id="section-amd-vs-intel-cpu-security-2025"><span>AMD vs Intel CPU Security 2025</span></h3><p>The last few years have found security researchers poking and prodding at the speculative execution engine that's one of the key performance-boosting features behind all modern chips. The resulting research has spawned an almost never-ending onslaught of new vulnerabilities that threaten the safety of your system and private data. Unfortunately, these types of vulnerabilities are incredibly dangerous because they are undetectable—these tactics steal data by using the processor exactly as it was designed; thus, they are undetectable by any known anti-virus program.</p><p>The rash of fixes required to plug these holes also continues to grow, and many of them resulted in reduced performance initially. AMD and Intel have recognized the cost of such updates during the Spectre and Meltdown era, and more recent patches come with little to no impact on performance. It’s possible that could change with a future vulnerability, but we haven’t seen chart-breaking changes in performance from security updates in the past couple of generations. </p><p>Intel still has more known vulnerabilities, but in the years following Spectre, it’s become clear that both AMD and Intel are vulnerable to this family of attacks. At the time of writing, <a href="https://www.tomshardware.com/software/intel-software-fixes-stamp-down-privilege-escalation-vulnerabilities-while-microcode-updates-clean-up-cpu-messes-chipmaker-has-its-own-patch-tuesday-as-it-stomps-down-30-bugs"><u>Intel recently patched</u></a> over 30 security bugs, and <a href="https://www.tomshardware.com/pc-components/cpus/amd-confirms-security-vulnerability-on-zen-5-based-cpus-that-generates-potentially-predictable-keys-rdseed-fix-coming-through-an-agesa-firmware-update-for-desktop-chips"><u>AMD confirmed a critical security vulnerability</u></a> in its random number generator on Zen 5 CPUs, which it plans to address with an AGESA update. </p><p><strong>Winner: Tie.</strong> Similar to firmware, it’s hard to say anyone is a winner here. Intel claims it surfaces and addresses vulnerabilities more proactively than AMD does, but both brands chase the constantly evolving world of threats and offer driver and/or firmware updates in response. In addition, both maintain a bug bounty program to incentivize security researchers to find and surface exploits. </p><h3 class="article-body__section" id="section-faq-frequently-asked-questions"><span>FAQ: Frequently Asked Questions</span></h3><section class="article__schema-question"><h3>◼ Is AMD or Intel better for gaming?</h3><article class="article__schema-answer"><p>As we outlined in our AMD vs Intel gaming section above, AMD's Ryzen 9000 X3D processors, namely the Ryzen 7 9800X3D, Ryzen 9 9900X3D, and the Ryzen 9 9950X3D, are currently the fastest gaming chips on the market.</p></article></section><section class="article__schema-question"><h3>◼ What is the latest Intel processor?</h3><article class="article__schema-answer"><p>The latest Intel processors for desktop PCs are named the Core Ultra 200 series. The newer Arrow Lake Refresh chips are noted as the Core Ultra 200S Plus series. </p></article></section><section class="article__schema-question"><h3>◼ What is the latest AMD processor?</h3><article class="article__schema-answer"><p>The latest AMD processors for desktop PCs are named the Ryzen 9000 series.</p></article></section><ul><li><strong>MORE: </strong><a href="https://www.tomshardware.com/reviews/best-cpus,3986.html"><strong>Best CPUs for Gaming</strong></a></li><li><strong>MORE: </strong><a href="https://www.tomshardware.com/reviews/cpu-hierarchy,4312.html"><strong>CPU Benchmark</strong></a><strong> Hierarchy</strong></li><li><strong>MORE: </strong><a href="https://www.tomshardware.com/news/amd-zen-4-ryzen-7000-release-date-specifications-pricing-benchmarks-all-we-know-specs"><strong>Zen 4 Ryzen 7000</strong></a><strong> All We Know</strong></li><li><strong>MORE: </strong><a href="https://www.tomshardware.com/how-to/how-to-overclock-a-cpu"><strong>How to Overclock a CPU</strong></a></li><li><strong>MORE: </strong><a href="https://www.tomshardware.com/how-to/how-to-check-cpu-temp-temperature"><strong>How to check CPU Temperature</strong></a></li><li><strong>MORE: </strong><a href="https://www.tomshardware.com/topics/cpus"><strong>All CPUs Content</strong></a></li></ul><iframe src="https://content.jwplatform.com/players/zYBgfFoA.html" id="zYBgfFoA" title="Buy the Right CPU" width="1920" height="1080" frameborder="0" scrolling="auto" allowfullscreen></iframe>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ How to run x86 Windows games on your Mac ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/video-games/pc-gaming/how-to-run-x86-windows-games-on-your-mac</link>
                                                                            <description>
                            <![CDATA[ Using emulation tools or Apple's Game Porting Toolkit, you can use your Mac to play Windows games designed for AMD or Intel processors, though they may be buggy. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">gsH79Fhc9xXDBmuXLZkPcT</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/KBBqoJGpZgmu7j3cwKGt9G-1280-80.png" type="image/png" length="0"></enclosure>
                                                                        <pubDate>Tue, 23 Jul 2024 12:00:03 +0000</pubDate>                                                                                                                                <updated>Wed, 09 Apr 2025 13:18:04 +0000</updated>
                                                                                                                                            <category><![CDATA[PC Gaming]]></category>
                                                    <category><![CDATA[Video Games]]></category>
                                                                                                                    <dc:creator><![CDATA[ Andrew E. Freedman ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/MTveuGNKPqpzrLttEA9ebb.jpg ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Andrew oversees laptop and desktop coverage and keeps up with the latest news in tech and gaming. His work has been published in Kotaku, PCMag, Complex, Tom’s Guide and Laptop Mag, among others. He fondly remembers his first computer: a Gateway that still lives in a spare room in his parents&#039; home, albeit without an internet connection. When he’s not writing about tech, you can find him playing video games, checking social media and waiting for the next Marvel movie. Follow him on Threads &lt;a href=&quot;https://www.threads.net/@freedmanae&quot;&gt;@FreedmanAE&lt;/a&gt; and BlueSky &lt;a href=&quot;https://bsky.app/profile/andrewfreedman.net&quot;&gt;@andrewfreedman.net&lt;/a&gt;.&lt;a href=&quot;https://bsky.app/profile/andrewfreedman.net&quot;&gt; &lt;/a&gt;You can send him tips on Signal: andrewfreedman.01&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/png" url="https://cdn.mos.cms.futurecdn.net/KBBqoJGpZgmu7j3cwKGt9G-1280-80.png">
                                                            <media:credit><![CDATA[Tom&#039;s Hardware]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[How to run x86 Windows games on your Mac]]></media:description>                                                            <media:text><![CDATA[How to run x86 Windows games on your Mac]]></media:text>
                                <media:title type="plain"><![CDATA[How to run x86 Windows games on your Mac]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/KBBqoJGpZgmu7j3cwKGt9G-1280-80.png" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>While Apple has slowly but surely been pushing to bring more games to Macs running Apple Silicon, it&apos;s still a long way off from the massive library of games you can play on a Windows PC.</p><p>If you don&apos;t mind using a bit of elbow grease and dealing with some potential technical hiccups, you can get plenty of PC games running on your Mac through emulation. Apple has a translation layer designed to test Windows games on Macs to port them to native Mac versions. While this is really meant for Apple&apos;s Game Porting Toolkit  with a developer account, there are both open source projects and commercial products that let you play around with it. </p><p>You could pay for Parallels to run Windows, or a paid app like Crossover that translates Windows application commands to macOS and back. There are also open source projects like Whisky, which don&apos;t have a full developer team behind it and might not get as much support, but hey, it&apos;s free.<br><br>Here&apos;s, we&apos;re going to show you how to set up Whisky to play Windows games on an Apple Silicon Mac. But before we do: one note. While some games will work great under emulation, others won&apos;t. Some won&apos;t work at all (for example, when I tried <em>Sonic Frontiers</em>, which requires AVX instructions, it wouldn&apos;t launch. That should be fixed to some degree with macOS Sequoia). If you only own a Mac, you&apos;re best off looking for Mac-native games for the best experience. If you also own a PC or a console, playing games there will be smoother.<br><br>But hey, if you own games on Steam or Epic Games and really want to play them on your Mac despite that they might not be flawless, here&apos;s how to do it:<br><br>1. <strong>Grab Whisky from </strong><a href="https://getwhisky.app/"><u><strong>getwhisky.app</strong></u></a>. Click "download latest." </p><p>2. <strong>Install Whisky and place it in your applications folder</strong>. (Whisky is open source, and you can <a href="https://github.com/Whisky-App/Whisky"><u>see the code on GitHub</u></a>, if you wish.)</p><p>3. <strong>Open Whisky. </strong>Upon the first run, it will make sure you have both Rosetta and WhiskyWine — the necessary translation layer installed.</p><p><br></p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1936px;"><p class="vanilla-image-block" style="padding-top:53.51%;"><img id="NBiaMBAFuZFhVhKvcARdhC" name="image9.png" alt="How to run x86 Windows games on your Mac" src="https://cdn.mos.cms.futurecdn.net/NBiaMBAFuZFhVhKvcARdhC.png" mos="" align="middle" fullscreen="1" width="1936" height="1036" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/NBiaMBAFuZFhVhKvcARdhC.png' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Tom's Hardware)</span></figcaption></figure><p>4. <strong>Click Next </strong>to install any dependencies you may be missing.</p><p><br></p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1999px;"><p class="vanilla-image-block" style="padding-top:55.58%;"><img id="boaQWGs2uaWXLjQgSyVjEB" name="image1.png" alt="How to run x86 Windows games on your Mac" src="https://cdn.mos.cms.futurecdn.net/boaQWGs2uaWXLjQgSyVjEB.png" mos="" align="middle" fullscreen="1" width="1999" height="1111" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/boaQWGs2uaWXLjQgSyVjEB.png' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Tom's Hardware)</span></figcaption></figure><p>5. <strong>Click "Create Bottle." </strong>A bottle is effectively a Windows file system, which will be a folder on your Mac. It will appear in the left rail.</p><p><br></p><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/MukNtKKTWDiZCZYNsHKFKC.png" alt="How to run x86 Windows games on your Mac" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/6x4oPHX5nV3y364AmcAq7C.png" alt="How to run x86 Windows games on your Mac" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure></figure><p>6. <strong>Name your bottle </strong>and <strong>choose your Windows version</strong>, then <strong>click "Create." </strong>I&apos;ll be using this bottle for a Steam library. Whisky recommends a single bottle per game, though I&apos;ve been using one for my Steam account.</p><p><br></p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1999px;"><p class="vanilla-image-block" style="padding-top:52.83%;"><img id="8b8mFh2ULqqCHFWbcveBsB" name="image3.png" alt="How to run x86 Windows games on your Mac" src="https://cdn.mos.cms.futurecdn.net/8b8mFh2ULqqCHFWbcveBsB.png" mos="" align="middle" fullscreen="1" width="1999" height="1056" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/8b8mFh2ULqqCHFWbcveBsB.png' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Tom's Hardware)</span></figcaption></figure><p>7. <strong>Grab the </strong><a href="https://store.steampowered.com/about/?curator_clanid=4"><u><strong>Steam executable for Windows</strong></u></a> if you plan to run Steam games. You could also do this with Epic Games or other launchers.</p><p><br></p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1999px;"><p class="vanilla-image-block" style="padding-top:55.58%;"><img id="qwB2K9hqKHKJtrN4cqrMUB" name="image2.png" alt="How to run x86 Windows games on your Mac" src="https://cdn.mos.cms.futurecdn.net/qwB2K9hqKHKJtrN4cqrMUB.png" mos="" align="middle" fullscreen="1" width="1999" height="1111" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/qwB2K9hqKHKJtrN4cqrMUB.png' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Tom's Hardware)</span></figcaption></figure><p>8. <strong>Press "Run…" to pick SteamSetup.exe </strong>from your downloads folder (or wherever else you put it) in the Finder. Pick the file and click "Open".</p><p><br></p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1218px;"><p class="vanilla-image-block" style="padding-top:82.27%;"><img id="qben5x5CNYP8TBgAD2U6vC" name="image10.png" alt="How to run x86 Windows games on your Mac" src="https://cdn.mos.cms.futurecdn.net/qben5x5CNYP8TBgAD2U6vC.png" mos="" align="middle" fullscreen="1" width="1218" height="1002" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/qben5x5CNYP8TBgAD2U6vC.png' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Tom's Hardware)</span></figcaption></figure><p>Whisky runs the software — in this case, the Steam installer. Run it as normal to install Steam in your bottle. Sometimes, it takes a minute for these windows to pop up. </p><p>9. From here, <strong>log in to Steam</strong>, and go to your library to <strong>pick a game to install</strong>. Here, I&apos;m using <em>SoulCalibur VI</em>.</p><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/RVPMMzCHzcngsTo6zq2zXC.png" alt="How to run x86 Windows games on your Mac" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/uFSwbXzf7aSMXdZs8atDLE.png" alt="How to run x86 Windows games on your Mac" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure></figure><p>From there, I can launch the game from my Steam library. Alternatively, I can go through "Run…" in Whisky to choose the game, or pin the game to the bottle menu.</p><p>It&apos;s possible that some games won&apos;t work well. Others may not work at all (especially games with anti-cheat).</p><h2 id="bottle-configuration">Bottle Configuration</h2><p>From your bottle, the <strong>Bottle Configuration </strong>menu has a few handy features, including allowing you to switch between different versions of Windows, different options for scaling, and the ability to turn on Apple&apos;s Metal HUD, which will show your frame rates, RAM usage, and more. The latter is great to see how well a game is performing in emulation.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Despite being deployed on Copilot+ PCs — Windows 11 24H2 won't be hitting x86 PCs until 'later this year' ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/software/windows/despite-being-deployed-on-copilot-pcs-windows-11-24h2-wont-be-hitting-x86-pcs-until-later-this-year</link>
                                                                            <description>
                            <![CDATA[ Windows 11 24H2 won't be making its way to x86 PCs in the immediate future. A new Microsoft update suggests the update won't come for the next several months, possibly not until Q4 of this year. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">yMqpa7RH95Xg8cjigEg36o</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/QqtVjF69XzGbBhC8DMXjkf-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Wed, 17 Jul 2024 11:00:29 +0000</pubDate>                                                                                                                                <updated>Wed, 09 Apr 2025 13:17:58 +0000</updated>
                                                                                                                                            <category><![CDATA[Windows]]></category>
                                                    <category><![CDATA[Software]]></category>
                                                    <category><![CDATA[Operating Systems]]></category>
                                                                                                <author><![CDATA[ editors@tomshardware.com (Aaron Klotz) ]]></author>                    <dc:creator><![CDATA[ Aaron Klotz ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/aAk2saHqkgFuTCanz8LnmD.jpg ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Aaron began building computers back when he was 8 years old in the mid-2000s, and it’s been a hobby of his ever since then. With a focus on computer hardware, he became an avid member of the Tom’s Hardware forums several years later, helping people solve issues with their PCs. He is now a freelance writer for Tom’s Hardware, writing about computer hardware news and more. When not busy playing or writing about computer hardware, he spends his free time playing video games like Star Citizen or Apex Legends.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/QqtVjF69XzGbBhC8DMXjkf-1280-80.jpg">
                                                            <media:credit><![CDATA[Shutterstock]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Microsoft 365 Copilot]]></media:description>                                                            <media:text><![CDATA[Microsoft 365 Copilot]]></media:text>
                                <media:title type="plain"><![CDATA[Microsoft 365 Copilot]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/QqtVjF69XzGbBhC8DMXjkf-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>If you didn&apos;t know it by now, Windows 11 24H2 has already been deployed to the public. The only caveat is that it has only been deployed to <a href="https://www.tomshardware.com/software/windows/microsoft-copilot-pcs-all-we-know">Copilot+ PCs</a> (namely Snapdragon X Elite laptops and 2-in-1s). Microsoft has confirmed that update 24H2 will not be making its way to x86 PCs anytime in the immediate future, with the trillion-dollar company confirming it will be arriving "<a href="https://techcommunity.microsoft.com/t5/windows-it-pro-blog/introducing-windows-11-checkpoint-cumulative-updates/ba-p/4182552">later this year</a>."</p><p>Later in the year could mean anything, but Microsoft&apos;s wording suggests we won&apos;t see Windows 11 24H2 anytime soon (as in weeks). Realistically, we are probably looking at an August 2024 release date at the soonest — realistically, it might not even launch until later in the Q4 timeframe.</p><p>This all but confirms that Microsoft put most of its 24H2 development resources into the Windows 11 on ARM variant of 24H2, to meet the deadline of its Copilot+ PC debut. Windows 11 24H2 is the only version of Windows that supports this new category of PC right now, along with the bevy of AI-assisted features 24H2 also comes with locked exclusively to these systems. Such as the ill-fated <a href="https://www.tomshardware.com/software/windows/microsoft-recalls-recall-controversial-ai-feature-wont-be-in-copilot-windows-build-at-launch">Recall</a> feature.</p><p>If you really want to get your hands on the x86 flavor of 24H2, Microsoft has switched the Canary and Dev insider preview channels to the new version. But be warned, these two channels are the most experimental tiers in Microsoft&apos;s line-up, so expect bugs and crashes. The beta and release preview channels are still based on the outgoing version of Windows 11, 23H2.</p><p>The good news is that — besides any of the "killer" AI features implemented or being implemented into 24H2, there aren&apos;t any game-changing additions outside of AI making it into 24H2. The vast majority of these changes are quality of life improvements, such as <a href="https://www.tomshardware.com/networking/wi-fi-7-standard-is-finalized-wi-fi-alliance-starts-certifying-wi-fi-7-routers-and-other-devices">Wi-Fi 7</a> support, 7-zip and TAR support in File Explorer, support for the "sudo" command in the command line, and a re-designed Copilot experience that puts the AI assistant into a regular app that can be pinned to the taskbar. Microsoft is also adding checkpoint cumulative updates that will improve the download speed and install duration of Windows updates.</p><p>Phone Link is also getting a major update that sees it live as part of the start menu, but we aren&apos;t sure if that will be coming in the 24H2 update specifically.</p><p>Regardless, the good news is that most people won&apos;t be dying to try out Microsoft&apos;s latest patch, so it&apos;s not really going to impact the Windows 11 user base much (if at all) if Windows 11 24H2 is delayed by several extra months for x86 users. Remember that many of the AI-focused features 24H2 comes with are locked to the Copilot+ PC ecosystem.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Linus Torvalds says RISC-V will make the same mistakes as Arm and x86 ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/tech-industry/linus-torvalds-says-risc-v-will-make-the-same-mistakes-as-arm-and-x86</link>
                                                                            <description>
                            <![CDATA[ Linus says RISC-V development will likely make the same mistakes that the x86 and Arm chips made during their development cycles. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">MUPyQ2cpqgvqtk7jR7AocC</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/ThdPnLoPrvqSih4toRqqN3-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Fri, 12 Jul 2024 16:16:17 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 10:05:36 +0000</updated>
                                                                                                                                            <category><![CDATA[Tech Industry]]></category>
                                                                                                <author><![CDATA[ editors@tomshardware.com (Jowi Morales) ]]></author>                    <dc:creator><![CDATA[ Jowi Morales ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/gM7E2WSDg2wgCFoaDPz9yK.jpg ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Jowi Morales is a writer and journalist covering the tech beat since 2021. However, he’s been interested in technology far earlier than that. He started discovering desktop computers when his father brought home a Windows 95 PC, but his first real experience working under the hood of the PC was when the old computer’s hard drive was filled to the brim in the year 2000. He deleted the Windows folder to attempt to rectify the situation, which led to his dad buying a new desktop PC. Since then, he learned a lot more about computers, and he’s always been the go-to tech expert for his family and friends.&lt;/p&gt;&lt;p&gt;Jowi primarily uses a Windows workstation and an Android phone, but he also bought into the Apple ecosystem with the 6th-gen iPad, iPhone 14 Pro Max, and the M1 MacBook Air. Today, Jowi covers hardware and software from Redmond and Cupertino, while also looking at the tech industry in general.&lt;/p&gt;&lt;p&gt;Aside from covering technology, Jowi is an avid photographer and writes about automobiles, aviation, and tanks. You can find his bylines at &lt;a href=&quot;https://www.makeuseof.com/author/jowi-morales/&quot;&gt;MakeUseOf&lt;/a&gt;, &lt;a href=&quot;https://www.slashgear.com/author/jowimorales/&quot;&gt;SlashGear&lt;/a&gt;, and, of course, &lt;a href=&quot;https://www.tomshardware.com/author/jowi-morales&quot;&gt;Tom’s Hardware&lt;/a&gt;.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/ThdPnLoPrvqSih4toRqqN3-1280-80.jpg">
                                                            <media:credit><![CDATA[Mastery Learning / YouTube]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Linus Torvalds interview]]></media:description>                                                            <media:text><![CDATA[Linus Torvalds interview]]></media:text>
                                <media:title type="plain"><![CDATA[Linus Torvalds interview]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/ThdPnLoPrvqSih4toRqqN3-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>There&apos;s a vast difference between hardware and software developers, which opens up pitfalls for those trying to coordinate the two teams. Arm and x86 researchers encountered it years ago -- and Linus Torvalds, the creator of Linux, fears RISC-V development may fall into the same chasm again.</p><p>“Even when you do hardware design in a more open manner, hardware people are different enough from software people [that] there’s a fairly big gulf between the Verilog and even the kernel, much less higher up the stack where you are working in what [is] so far away from the hardware that you really have no idea how the hardware works,” he said (video embedded below).<br><br>“So, it’s really hard to kind of work across this very wide gulf of things and I suspect the hardware designers, some of them have some overlap, but they will learn by doing mistakes — all the same mistakes that have been done before.”</p><div class="youtube-video" data-nosnippet ><div class="video-aspect-box"><iframe data-lazy-priority="low" data-lazy-src="https://www.youtube-nocookie.com/embed/1Y82U450zcI" allowfullscreen></iframe></div></div><p>RISC-V is an open-standard ISA for processors that is slowly gaining traction, especially in China, where some tech companies are using it to bypass America’s sanctions on the country. Companies like DeepComputing and Framework have started developing, building, and selling consumer laptops powered by these new processors.</p><p>But even though RISC-V is slowly being built up, it’s still not at the performance level that it could compete against current generation x86 and Arm processors. It would still take several years or decades of development to play AAA games on a RISC-V chip. But even though Arm, which also uses a reduced instruction set computer (RISC) architecture, has already undergone intensive development, Linus fears RISC-V will still make the same mistakes.</p><p>“They’ll have all the same issues we have on the Arm side and that x86 had before them,” he says. “It will take a few generations for them to say, ‘Oh, we didn’t think about that,’ because they have new people involved.”</p><p>But even if RISC-V development is still expected to make many mistakes, he also said it will be much easier to develop the hardware now. Linus says, “It took a few decades to really get to the point where Arm and x86 are competing on fairly equal ground because there was al this software that was fairly PC-centric and that has passed. That will make it easier for new architectures like RISC-V to then come in.”</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Ray Tracer ported to an x86 boot sector in only 483 bytes, run on Pentium Pro and faster CPUs ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/software/operating-systems/ray-tracer-ported-to-an-x86-boot-sector-in-only-483-bytes-run-on-pentium-pro-and-faster-cpus</link>
                                                                            <description>
                            <![CDATA[ An x86 boot sector Ray Tracer, inspired by Ray Tracer for Atari 8-bit Basic, brings some real-time RT rendering to 90s-era hardware. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">XLkwASwWXqL5BM3gxj5FmT</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/KszGev8SzQbanZEcBd5y66-1280-80.png" type="image/png" length="0"></enclosure>
                                                                        <pubDate>Mon, 15 Apr 2024 10:43:32 +0000</pubDate>                                                                                                                                <updated>Wed, 09 Apr 2025 13:18:04 +0000</updated>
                                                                                                                                            <category><![CDATA[Operating Systems]]></category>
                                                    <category><![CDATA[Software]]></category>
                                                                                                                    <dc:creator><![CDATA[ Christopher Harper ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/qS2hbWnXwNUSmgyAHBQqKB.jpg ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Christopher Harper has been a successful freelance tech writer specializing in PC hardware and gaming since 2015, and ghostwrote&amp;nbsp;for various B2B clients in High School before that. Outside of work, Christopher is best known to friends and rivals as an active competitive player in various eSports (particularly fighting games and arena shooters) and a purveyor of music ranging from Jimi Hendrix to Killer Mike to the&amp;nbsp;Sonic Adventure 2&amp;nbsp;soundtrack.&lt;br&gt;
&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/png" url="https://cdn.mos.cms.futurecdn.net/KszGev8SzQbanZEcBd5y66-1280-80.png">
                                                            <media:credit><![CDATA[nanochess on YouTube]]></media:credit>
                                                                                                                                                                        <media:description><![CDATA[nanochess&#039; Boot Sector Ray Tracer Demo]]></media:description>                                                            <media:text><![CDATA[nanochess&#039; Boot Sector Ray Tracer Demo]]></media:text>
                                <media:title type="plain"><![CDATA[nanochess&#039; Boot Sector Ray Tracer Demo]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/KszGev8SzQbanZEcBd5y66-1280-80.png" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Do you think real-time ray tracing requires a modern GPU? It still does for practical applications, but YouTuber nanochess has a functioning ray tracing demo with ray-traced reflections working on machines as old as an original Intel Pentium Pro (1995), and in only  *483 bytes at that. Below, we&apos;ve embedded the original video of this demo, titled<em> Boot Sector Ray Tracer</em>.</p><p>*Previously 506. Changed during the writing of this article!</p><div class="youtube-video" data-nosnippet ><div class="video-aspect-box"><iframe data-lazy-priority="low" data-lazy-src="https://www.youtube-nocookie.com/embed/AZdzECF2Huw" allowfullscreen></iframe></div></div><p><em>Boot Sector Ray Tracer</em> is a simple demo showcasing a camera coming across two reflective orbs floating in the air in the middle of a large, empty space surrounded by a colorful sky. The colors of the sky reflect off of both orbs realistically, as do the reflections of the orbs themselves, resulting in a hall-of-mirrors effect if one looks into the correct part of the reflection during the animation. It&apos;s also real-time animation, so the final speed will depend on your hardware.</p><p>The main ray tracing effect being shown is ray traced reflections. Non-ray traced graphics, or rasterized graphics usually, can only display reflections based on information already available onscreen. These limitations have workarounds like rendering additional character models in video games, but there&apos;s no room for "workarounds" in 483 bytes!</p><p>The full demo is available for free on <a href="https://github.com/nanochess/RayTracer">GitHub</a> and is recommended to those who have the old hardware lying around or don&apos;t mind setting up a virtual machine for something like this. The YouTube animation runs on a Macbook Air through a VirtualBox&apos;d Windows XP, and seems to run perfectly smoothly despite the virtual machine ahead.</p><p>Other projects by <a href="https://nanochess.org/">Nanochess</a> include an Intel 8080 emulator, various Chess programs, and even various homebrew games for retro consoles and PCs (<a href="https://nanochess.org/retro.html">Intellivision, MSX, Atari</a>, etc).</p><p>Additionally, Boot Sector Ray Tracer is inspired by a similar 8-bit "<a href="https://www.youtube.com/watch?v=tflOM3pUHG0">RayTrace Movie</a>" demo released for Atari, though that runs at frames-per-hour. The visual touching up that this (relatively) more modern Boot Sector RT demo makes it look more akin to something like the classic <a href="https://www.youtube.com/watch?v=YlAhRJjOhDg">Amiga ball demo</a> instead of the pure-pixel vaporwave aesthetic of the original Atari demo.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Google unveils Axion CPU for datacenters: claims up to 50% better performance than x86 processors ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/pc-components/cpus/google-unveils-axion-cpu-for-datacenters-claims-up-to-50-better-performance-than-x86-processors</link>
                                                                            <description>
                            <![CDATA[ Google says its own Axion processor is 30% faster than competitors. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">qwREDWDF3iptVWyVoS9ynM</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/WAtABzrbC9v9vXrF7j95ML-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Wed, 10 Apr 2024 12:29:24 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 10:12:13 +0000</updated>
                                                                                                                                            <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                <author><![CDATA[ ashilov@gmail.com (Anton Shilov) ]]></author>                    <dc:creator><![CDATA[ Anton Shilov ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/uMZ5kNphxA2Ut6whdLaSQV.png ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Anton Shilov has been in the PC industry since 1990s playing games, building PCs, and writing stories about pretty much everything that relates to PCs, Macs, smartphones, tablets, and even fab equipment. Over his career, he has worked at a variety of high-ranking websites, including AnandTech, EE Times, TechRadar, X-bit labs, and now Tom&#039;s Hardware. When Anton is not reading or writing about something high-tech, he is probably watching a good movie, playing a video game, or spending time with his family.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/WAtABzrbC9v9vXrF7j95ML-1280-80.jpg">
                                                            <media:credit><![CDATA[Google]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Google]]></media:description>                                                            <media:text><![CDATA[Google]]></media:text>
                                <media:title type="plain"><![CDATA[Google]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/WAtABzrbC9v9vXrF7j95ML-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Google this week became yet another major hyperscaler that has developed its own Arm-based processor for datacenters. The company claims its <a href="https://cloud.google.com/blog/products/compute/introducing-googles-new-arm-based-cpu">Axion CPU</a> is faster than competing x86 and Arm-based offerings and plans to use it to run workloads that rely on general-purpose computing at its datacenters. Some of Google&apos;s services already run on Axion and the company intends to increase usage of its custom silicon to take advantage of additional performance at lower power. </p><p>Google asserts that its Axion processors deliver up to 50% greater performance and up to 60% higher energy efficiency compared to contemporary x86-based processors, though it does not disclose with which CPUs it compares its devices. Additionally, the company claims that Axion offers a 30% performance advantage over rival Arm-based CPUs designed for datacenters, but again it does not disclose the exact rival.</p><p>Google&apos;s Axion processor is based on the Neoverse V2 cores (featuring the Arm v9 instruction set architecture), but Google does not disclose how many general-purpose cores the CPU integrates, though a picture of the processor indicates that the unit uses standard dual-rank DDR5 modules. </p><p>One of the advantages that Google Axion-based servers have is that they come outfitted with the company&apos;s custom Titanium-badged controllers that offload networking, security, and I/O storage processing from the host CPU, which has a positive effect on the performance available to applications. Using purpose-built accelerators to offload certain workloads from the host CPU is one of the ways to increase server performance without significantly increasing its power budget and Google certainly takes advantage of its Titanium platform.</p><p> "Google&apos;s announcement of the new Axion CPU marks a significant milestone in delivering custom silicon that is optimized for Google&apos;s infrastructure, and built on our high-performance Arm Neoverse V2 platform," said Rene Haas, CEO of Arm. "Decades of ecosystem investment, combined with Google&apos;s ongoing innovation and open-source software contributions ensure the best experience for the workloads that matter most to customers running on Arm everywhere." </p><p>Google has already initiated deployment of Google services, including BigTable, Spanner, BigQuery, Blobstore, Pub/Sub, Google Earth Engine, and the YouTube Ads platform, on existing Arm-based servers and plans to expand and scale these services on Axion processors in the near future. </p><p>Google was among the first hyperscalers to develop its own custom silicon for its datacenters. The company has deployed several generations of its tensor processing units (TPUs) for its AI services and has special <a href="https://www.tomshardware.com/news/intel-replaces-xeons-with-custom-vcus">video transcoding units (VCUs)</a> for transcoding YouTube videos. With its own custom CPU, Google makes another step away from x86 processors from AMD and Intel and while we do not expect x86 to get eliminated from datacenters any time soon, it is evident that Arm is slowly eating AMD&apos;s and Intel&apos;s pie.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ New Emulator Lets Some x86-64 Games Run on RISC-V Dev Board ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/news/new-emulator-lets-some-x86-64-games-run-on-risc-v-dev-board</link>
                                                                            <description>
                            <![CDATA[ StarFive's VisionFive 2 board can now run select x86-64 games with Box64 0.2.4 emulator. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">m2L8j4SZb6RMGUGrveGNSG</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/qjAnvijopjrQDRmo2rpALS-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Sun, 20 Aug 2023 13:25:22 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 10:04:13 +0000</updated>
                                                                                                                                            <category><![CDATA[Motherboards]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                <author><![CDATA[ ashilov@gmail.com (Anton Shilov) ]]></author>                    <dc:creator><![CDATA[ Anton Shilov ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/uMZ5kNphxA2Ut6whdLaSQV.png ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Anton Shilov has been in the PC industry since 1990s playing games, building PCs, and writing stories about pretty much everything that relates to PCs, Macs, smartphones, tablets, and even fab equipment. Over his career, he has worked at a variety of high-ranking websites, including AnandTech, EE Times, TechRadar, X-bit labs, and now Tom&#039;s Hardware. When Anton is not reading or writing about something high-tech, he is probably watching a good movie, playing a video game, or spending time with his family.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/qjAnvijopjrQDRmo2rpALS-1280-80.jpg">
                                                            <media:credit><![CDATA[ConcernedApe/Steam]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[ConcernedApe]]></media:description>                                                            <media:text><![CDATA[ConcernedApe]]></media:text>
                                <media:title type="plain"><![CDATA[ConcernedApe]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/qjAnvijopjrQDRmo2rpALS-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>The latest version of Box64, a popular x86_64 emulator for Linux running on architectures like ARM/AArch64 and RISC-V, introduces significant performance improvements, making possible gaming on RISC-V-based platforms such as the <a href="https://www.starfivetech.com/en/site/boards">Vision Five 2</a> board, reports <a href="https://www.phoronix.com/news/Box64-0.2.4">Phoronix</a>. </p><p>The most important addition to the Box64 version 0.2.4 is that Dynarec now works on RISC-V. This facilitates faster operations of x86_64 Linux software on RISC-V 64-bit system and makes simplistic games, such as <a href="https://store.steampowered.com/app/413150/Stardew_Valley/">Stardew Valley</a>, playable on Vision Five 2-based devices. Additionally, the new version introduces several fixes for Steam, enhanced multi-threading capabilities, and broader improvements for emulation across various CPU architectures.</p><p>While titles like Stardew Valley can hardly attract avid gamers, the Vision Five 2 is not exactly designed to run games (even though it has an OpenGL ES 3.2, Vulkan 1.2-capable integrated GPU), so running a game is already a kind of a breakthrough for this product. The motherboard is aimed at software developers and is based in the <a href="https://www.cnx-software.com/2022/08/29/starfive-jh7110-risc-v-processor-specifications/">quad-core StarFive JH7110</a> SoC with SiFive U74 RV64GC cores running at 1.50 GHz and Imagination&apos;s  BXE-4-32 GPU.</p><p>The Box64 version 0.2.4 has refined its compatibility with several modifications, which includes better handling of ELF files, added wrapped libraries and functions, expanded opcode functionalities, and preliminary WoW64 support for 32-bit operations in Wine. </p><p>In conjunction with Box64&apos;s release, Box86, focused on x86 32-bit emulation, launched its 0.3.2 version. This version sees improvements in system call processes, an optimized ELF loader, a decrease in memory usage, and stability improvements.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Amazon, Apple, Intel, Nvidia, and Samsung to Back Arm's IPO ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/news/amazon-apple-intel-nvidia-and-samsung-to-back-arms-ipo</link>
                                                                            <description>
                            <![CDATA[ High-tech giants in talks to become anchor investors in Arm's upcoming IPO. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">KWp2ryUHZgynQAyxGJaLNA</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/CpBAJsLmPLaYfQUJATbWt3-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Wed, 09 Aug 2023 15:31:52 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 09:53:31 +0000</updated>
                                                                                                                                            <category><![CDATA[Big Tech]]></category>
                                                    <category><![CDATA[Tech Industry]]></category>
                                                                                                <author><![CDATA[ ashilov@gmail.com (Anton Shilov) ]]></author>                    <dc:creator><![CDATA[ Anton Shilov ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/uMZ5kNphxA2Ut6whdLaSQV.png ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Anton Shilov has been in the PC industry since 1990s playing games, building PCs, and writing stories about pretty much everything that relates to PCs, Macs, smartphones, tablets, and even fab equipment. Over his career, he has worked at a variety of high-ranking websites, including AnandTech, EE Times, TechRadar, X-bit labs, and now Tom&#039;s Hardware. When Anton is not reading or writing about something high-tech, he is probably watching a good movie, playing a video game, or spending time with his family.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/CpBAJsLmPLaYfQUJATbWt3-1280-80.jpg">
                                                            <media:credit><![CDATA[Shutterstock]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[arm]]></media:description>                                                            <media:text><![CDATA[arm]]></media:text>
                                <media:title type="plain"><![CDATA[arm]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/CpBAJsLmPLaYfQUJATbWt3-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>High-tech giants Amazon, Apple, Intel, Nvidia, and Samsung are looking forward to becoming anchor investors in Arm&apos;s upcoming initial public offering, according to reports from <a href="https://www.bloomberg.com/news/articles/2023-08-08/amazon-in-talks-to-be-anchor-investor-in-arm-ipo-reuters-says?srnd=technology-vp#xj4y7vzkg">Bloomberg</a> and <a href="https://asia.nikkei.com/Business/Tech/Semiconductors/Apple-Samsung-to-invest-in-Arm-as-it-eyes-September-IPO">Nikkei</a>, citing sources with knowledge of the matter. This IPO might amass up to $10 billion and elevate Arm&apos;s valuation to a staggering $60 to $70 billion, according to Bloomberg&apos;s estimates.</p><p>Arm, which is owned by SoftBank Group, is preparing for what will potentially be the year&apos;s largest tech IPO, and has engaged with major customers for months regarding their participation. The company has held talks with key global chip designers about becoming anchor investors, and companies like Amazon, Apple, Intel, Samsung, and Nvidia are expected to invest in Arm upon its market listing (note that none of these companies have formally confirmed intention to buy an Arm stake, however). Arm&apos;s strategy involves offering these processor developers medium- to long-term shareholding with the intention of ensuring stock price stability during the listing.</p><p>Arm&apos;s global impact on <a href="https://www.tomshardware.com/news/lisa-su-ai-will-dominate-chip-design">chip designs</a> is undeniable. In the smartphone sector, <a href="https://www.tomshardware.com/reviews/chinese-arm-soc-mediatek-allwinner-rockchip,3912.html">Arm-based SoCs</a> command close to a 100% market share. They also command a sizeable share in the consumer electronics industry, and, thanks to the efforts of Apple and Qualcomm, Arm&apos;s technology is gaining traction in PCs as well. Throughout the history of Arm, over 250 billion chips based on its architectures have been produced.</p><p>Apple, Samsung, Nvidia, and Qualcomm produce some of the world&apos;s best known Arm-based SoCs, which is why Apple (who already has a stake in Arm), Samsung, and Nvidia have reason to invest in the chip IP designer. But Amazon seems to have a particularly good reason to invest in Arm: apparently, Amazon Web Services dominates the Arm server market, with over half of all Arm-based server CPUs globally deployed in AWS datacenters, according to a Bernstein Research report cited by <a href="https://www.theregister.com/2023/08/08/amazon_arm_servers/">The Register</a>.</p><p>The <a href="https://www.tomshardware.com/news/amazon-alexa-facial-recognition-aws-ditching-nvidia-for-custom-chip">Graviton system-on-chip family</a>, introduced in 2018 and optimized for AWS powered around 20% of AWS CPU instances by mid-2022 — which is a significant portion. These SoCs, optimized for AWS&apos;s requirements, have more cores per socket than competing x86 offerings, reduced power consumption, and significant cost benefits — partly because Amazon does not have to pay premium to AMD or Intel and to a large degree because of lower total cost of ownership and power consumption. The report asserts that in some cases AWS can achieve 20% to 70% lower costs at the same performance compared to competing x86 CPUs, though the details are unclear. </p><p>Given the tangible advantages that AWS has with its Arm-based SoCs, it is evident that the company has invested massively in datacenter software ecosystem for Arm processors. Therefore, the company is likely more than interested in further development of the Arm instruction set architecture (ISA) in general and datacenter-oriented Neoverse CPU cores in particular. </p><p>SoftBank, which acquired Arm in 2016 for $32 billion, tried to sell the company to Nvidia for about $40 billion in 2020 – 2022, but regulatory issues prevented the sale. In the aftermath, SoftBank chose to steer Arm towards an IPO. If the IPO reaches its peak valuation, it would rival the <a href="https://www.tomshardware.com/news/globalfoundries-owner-eyes-dollar20-billion-valuation-for-ipo">tech sector&apos;s largest IPOs</a> — such as Alibaba in 2014 and Meta Platforms (formerly Facebook) in 2012.</p><iframe src="https://content.jwplatform.com/players/zYBgfFoA.html" id="zYBgfFoA" title="Buy the Right CPU" width="1920" height="1080" frameborder="0" scrolling="auto" allowfullscreen></iframe>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Modder Boosts Steam Deck to a Bountiful 32GB RAM ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/news/modder-boosts-steam-deck-to-a-bountiful-32gb-ram</link>
                                                                            <description>
                            <![CDATA[ A modder has successfully doubled their Steam Deck RAM to 32GB, but the upgrade required good soldering skills and a firmware patch. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">XKWr6KCfb2grTER3TheeR7</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/Yzr2Rsrk6bGcitBnqDs4rh-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Tue, 08 Aug 2023 12:52:57 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 12:54:23 +0000</updated>
                                                                                                                                            <category><![CDATA[Cloud Gaming]]></category>
                                                    <category><![CDATA[Video Games]]></category>
                                                                                                                    <dc:creator><![CDATA[ Mark Tyson ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/56vqMYLDaKRHPhHZgbADFR.jpg ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Mark&#039;s enthusiasm for computers dampened at an early age by the rubber-keyed Sinclair Spectrum 48K and feelings of Commodore 64 envy. However, in the mid-80s, hope in a digital future was rekindled by the purchase of an Atari 520 STe. Since that time Mark has used a multitude of computers for fun and professional endeavors. He often owned both Macs and PCs but went cold on the former after OS9 was killed off, and warmed to the latter with the introduction of Windows XP.&lt;br&gt;
&lt;br&gt;
Early work years were spent in artwork and reprographics but in the late noughties, Mark started to blog about computers, Taiwanese food culture, and guitar design. This activity led to a full-time position writing about breaking PC tech news for HEXUS, for the best part of a decade. When HEXUS was abruptly closed, Mark helped with the foundation of Club386, before finding a new home at Tom&#039;s Hardware.&lt;br&gt;
&lt;br&gt;
When not wearing through the keycap legends on his PC keyboards, Mark can be found wandering the computer malls of Taiwan&#039;s neon-lit conurbations and enjoying local and international cuisine.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/Yzr2Rsrk6bGcitBnqDs4rh-1280-80.jpg">
                                                            <media:credit><![CDATA[Balázs Triszka ]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Steam Deck RAM upgrade to 32GB]]></media:description>                                                            <media:text><![CDATA[Steam Deck RAM upgrade to 32GB]]></media:text>
                                <media:title type="plain"><![CDATA[Steam Deck RAM upgrade to 32GB]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/Yzr2Rsrk6bGcitBnqDs4rh-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Intrepid <a href="https://www.tomshardware.com/reviews/steam-deck-valve-gaming-handheld">Steam Deck</a> modder Balázs Triszka has shared news of an impressive feat of handheld device enhancement. In a recent <a href="https://twitter.com/balika011/status/1687222047259144192">Tweet/X</a> by Triszka (h/t <a href="https://www.overclock3d.net/news/systems/steam_deck_modder_gives_valve_s_handheld_a_crazy_ram_upgrade/1">Overclock3D</a>), we see that they managed to boost the Valve-made x86 PC gaming portable to 32 GB of RAM. That’s double the RAM quota this SteamOS handheld is factory configured with.</p><p><br></p><div class="see-more see-more--clipped"><blockquote class="twitter-tweet hawk-ignore" data-lang="en"><p lang="en" dir="ltr">Today I did another #SteamDeck mod. Upgraded the memory to 32GB! Let's bring the upgrades to the next level! (Yes, I cleaned the flux off later.) pic.twitter.com/mHFMPLVqUI<a href="https://twitter.com/balika011/status/1687222047259144192">August 3, 2023</a></p></blockquote><div class="see-more__filter"></div></div><p>Upgrading the RAM on a Steam Deck is definitely not for everyone. Unlike your desktop, and many laptops, the RAM in these devices is <a href="https://www.tomshardware.com/best-picks/best-soldering-irons">soldered</a> directly to the system PCB, like on a graphics card. These RAM chips will be attached with a plethora of tiny solder balls (ball grid array, BGA) to the mainboard of the Steam Deck. You&apos;ll need a one of the <a href="https://www.tomshardware.com/best-picks/best-soldering-irons">best hot air rework stations</a> to make this possible.</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1280px;"><p class="vanilla-image-block" style="padding-top:67.19%;"><img id="GMww5h4EoLDK7Zwtadnajh" name="fluxy-chips.jpg" alt="Steam Deck RAM upgrade to 32GB" src="https://cdn.mos.cms.futurecdn.net/GMww5h4EoLDK7Zwtadnajh.jpg" mos="" align="middle" fullscreen="1" width="1280" height="860" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/GMww5h4EoLDK7Zwtadnajh.jpg' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Balázs Triszka )</span></figcaption></figure><p>Sometimes memory module replacement, for repair or expansion, is hindered by glue under the BGA chip. However, Triszka confirmed that Valve hasn’t done this. To double the memory quota of the Steam Deck, the modder simply switched the existing RAM chips for similar ones with double the capacity / density.</p><p>Triszka shows the flux-strewn aftermath of his de/soldering of the system’s RAM chips. A bath of isopropyl alcohol will soon have this mod looking factory fresh. This high-temperature molten metal surgery was just the beginning of the demonstrably effective mod. Very often hardware needs a firmware modification to enable this kind of upgrade, and this is true of the Steam Deck memory doubling mod. However, the satisfying conclusion is that this mod works, and you can see evidence of the system reporting an available 32 GB of RAM, below.</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1280px;"><p class="vanilla-image-block" style="padding-top:63.20%;"><img id="rRshe4ZauhbtHWQNk8frYh" name="32gb-shown.jpg" alt="Steam Deck RAM upgrade to 32GB" src="https://cdn.mos.cms.futurecdn.net/rRshe4ZauhbtHWQNk8frYh.jpg" mos="" align="middle" fullscreen="1" width="1280" height="809" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/rRshe4ZauhbtHWQNk8frYh.jpg' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Balázs Triszka )</span></figcaption></figure><p>The <a href="https://www.tomshardware.com/reviews/steam-deck-valve-gaming-handheld">Steam Deck</a> is one of the most popular of the new wave of PC gaming handhelds, which is understandable given that it invigorated the segment with a uniquely compelling software / hardware combo in 2022. One of the good things about a leading and popular device is that it attracts the most developer attention.</p><p>We have already documented the arrival of a multitude of upgrades and mods like: an <a href="https://www.tomshardware.com/news/dollar99-steam-deck-screen-jumps-to-1200p">enhanced screen</a> replacement, <a href="https://www.tomshardware.com/news/tiktok-steam-deck-aio-mod">liquid cooling</a>, a <a href="https://www.tomshardware.com/news/transparent-steam-deck-case-mods-are-coming">transparent shell</a>, and we have <a href="https://www.tomshardware.com/news/upgrading-and-testing-the-steam-decks-ssd">tested lots of SSD upgrades</a>. But be warned, RAM upgrades like Triszka are far from trivial, with <a href="https://www.tomshardware.com/best-picks/best-soldering-irons">soldering equipment</a> and skills required in abundance. Modders also need a strong disposition and steady hands.</p><iframe src="https://content.jwplatform.com/players/XDf5PcNM.html" id="XDf5PcNM" title="How To Choose A Graphics Card" width="960" height="540" frameborder="0" scrolling="auto" allowfullscreen></iframe>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ China is Now Home to 40% of All Arm Servers: Report ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/news/china-arm-servers</link>
                                                                            <description>
                            <![CDATA[ China uses more Arm-based servers than any other country, according to Bernstein. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">YjM8UB8JWq65PNhtpD87RW</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/AdGF8mqfmrfKzZXh2t7FTB-1280-80.png" type="image/png" length="0"></enclosure>
                                                                        <pubDate>Mon, 31 Jul 2023 18:52:03 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 12:55:35 +0000</updated>
                                                                                                                                            <category><![CDATA[Manufacturing]]></category>
                                                    <category><![CDATA[Tech Industry]]></category>
                                                                                                <author><![CDATA[ ashilov@gmail.com (Anton Shilov) ]]></author>                    <dc:creator><![CDATA[ Anton Shilov ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/uMZ5kNphxA2Ut6whdLaSQV.png ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Anton Shilov has been in the PC industry since 1990s playing games, building PCs, and writing stories about pretty much everything that relates to PCs, Macs, smartphones, tablets, and even fab equipment. Over his career, he has worked at a variety of high-ranking websites, including AnandTech, EE Times, TechRadar, X-bit labs, and now Tom&#039;s Hardware. When Anton is not reading or writing about something high-tech, he is probably watching a good movie, playing a video game, or spending time with his family.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/png" url="https://cdn.mos.cms.futurecdn.net/AdGF8mqfmrfKzZXh2t7FTB-1280-80.png">
                                                            <media:credit><![CDATA[Inspur]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Inspur]]></media:description>                                                            <media:text><![CDATA[Inspur]]></media:text>
                                <media:title type="plain"><![CDATA[Inspur]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/AdGF8mqfmrfKzZXh2t7FTB-1280-80.png" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Due to increasing difficulty in obtaining high-performance x86 servers, Chinese datacenter companies are ramping up the adoption of Arm-based system-on-chips. Currently, 40% of Arm-powered servers are used in China, according to investment banking firm Bernstein, as reported by <a href="https://twitter.com/EricJhonsa/status/1685729956150878208">@EricJhonsa</a>.</p><p>The vast majority of servers are running on x86 processors from AMD and Intel. Still, Arm-based SoCs are gaining market share now that multiple companies, including AWS, Ampere, Google, Fujitsu, Microsoft, and Nvidia have developed and/or adopted Arm-powered SoCs. But while U.S.-based hyperscalers are slowly adopting Arm-based processors in their datacenters, Chinese companies are more inclined to use them because they may not always be able to procure Intel&apos;s Xeon or AMD&apos;s EPYC.</p><p>Multiple companies in China develop Arm-based SoCs for client and datacenter processors, including Alibaba, Huawei, and Phytium. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1191px;"><p class="vanilla-image-block" style="padding-top:57.35%;"><img id="3ZYiU9n54ZFY7Xc36kohwT" name="F2Th6oybEAEwNSp.png" alt="Arm" src="https://cdn.mos.cms.futurecdn.net/3ZYiU9n54ZFY7Xc36kohwT.png" mos="" align="middle" fullscreen="1" width="1191" height="683" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/3ZYiU9n54ZFY7Xc36kohwT.png' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Bernstein/@EricJhonsa)</span></figcaption></figure><p>Both Huawei and Phytium are blacklisted by the U.S. government and cannot have access to leading-edge process technologies used by TSMC. As a result, they cannot offer processors that challenge market leaders in terms of performance. While Alibaba&apos;s T-Head can use the latest TSMC innovations, just like other Chinese companies, it <a href="https://www.tomshardware.com/news/china-access-to-arm-advanced-chip-designes-limited-by-export-controls">cannot license Arm&apos;s Neoverse V-series CPU cores</a> for high-performance computing due to export control rules of the U.S. and U.K. as well as the Wassenaar arrangement on export controls for dual-use goods and technologies and conventional arms.</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1144px;"><p class="vanilla-image-block" style="padding-top:32.52%;"><img id="sBgJMXuvuHLVCeaBKzSXmT" name="F2Th1YUasAA0GbQ.jpeg" alt="Arm" src="https://cdn.mos.cms.futurecdn.net/sBgJMXuvuHLVCeaBKzSXmT.jpeg" mos="" align="middle" fullscreen="1" width="1144" height="372" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/sBgJMXuvuHLVCeaBKzSXmT.jpeg' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Bernstein/@EricJhonsa)</span></figcaption></figure><p>While Arm&apos;s cores make a lot of sense for Chinese companies, many chip designers, including Huawei, are looking towards RISC-V. RISC-V is a rapidly developing open-source instruction set architecture (ISA) that is not restricted and can enable highly-custom general-purpose cores designed for very specific workloads. </p><p>But for now, the Armv8 and the Armv9 instruction set architectures have several advantages over RISC-V. The Arm ISA is supported by a vast number of influential companies like AWS, Google, Nvidia, Microsoft, Qualcomm, and Samsung, and these companies know how to ensure that the software ecosystem supports their CPUs, so adoption of Arm will continue to expand in the datacenter space for years to come.</p><iframe src="https://content.jwplatform.com/players/zYBgfFoA.html" id="zYBgfFoA" title="Buy the Right CPU" width="1920" height="1080" frameborder="0" scrolling="auto" allowfullscreen></iframe>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ UP 7000 Packs Intel Alder Lake-N CPUs Into Raspberry Pi Form Factor ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/news/up-7000-alder-lake-raspberry-pi-form-factor</link>
                                                                            <description>
                            <![CDATA[ UP 7000 is the latest Intel based SBC from AAEON. It packs a range of Intel N-series (Alder Lake-N) CPUs and LPDDR5 RAM into the Raspberry Pi form factor. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">344QxKsVJWDYsFtA9Bobkj</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/3xJFYkuaMXyKpZgqGwexS9-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Tue, 25 Jul 2023 14:36:05 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 08:40:34 +0000</updated>
                                                                                                                                            <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                                    <dc:creator><![CDATA[ Les Pounder ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/mZ2MebAz6hhKR6vLUDUbsc.jpg ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Les Pounder is a creative technologist and for seven years has created projects to educate and inspire minds both young and old. He has worked with the Raspberry Pi Foundation to write and deliver their teacher training programme &quot;Picademy&quot;.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/3xJFYkuaMXyKpZgqGwexS9-1280-80.jpg">
                                                            <media:credit><![CDATA[AAEON UP]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[AAEON UP 7000]]></media:description>                                                            <media:text><![CDATA[AAEON UP 7000]]></media:text>
                                <media:title type="plain"><![CDATA[AAEON UP 7000]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/3xJFYkuaMXyKpZgqGwexS9-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>The world of single board computers (SBCs) is dominated by Arm processors, but there are some x86 based boards to be found. AAEON&apos;s series of UP boards look very much like a Raspberry Pi, <a href="https://www.aaeon.com/en/p/up-7000-boards">but its latest range</a>, sport Intel N-series (Alder Lake-N) CPUs.</p><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/ZkMoyRDg74VSsHRa5e5yF9.jpg" alt="AAEON UP 7000" /><figcaption><small role="credit">AAEON UP</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/5mLKekJ4b6bPyhhtQzcR79.jpg" alt="AAEON UP 7000" /><figcaption><small role="credit">AAEON UP</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/UKh5icgKBTqdpgq3HBqdz8.jpg" alt="AAEON UP 7000" /><figcaption><small role="credit">AAEON UP</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/h68pp9N7nKVrBwm4WZzyM9.jpg" alt="AAEON UP 7000" /><figcaption><small role="credit">AAEON UP</small></figcaption></figure></figure><p>Claiming to be "The world’s smallest developer board featuring the Intel Processor N-series platform (formerly Alder Lake-N)" the UP 7000 is indeed a small SBC. measuring just 85 x 56mm, the exact same size as the <a href="https://www.tomshardware.com/reviews/raspberry-pi-4">Raspberry Pi 4</a>. While they may share a similar size, their port locations means that you won&apos;t be dropping the UP 7000 in any of the <a href="https://www.tomshardware.com/best-picks/best-raspberry-pi-cases">best Raspberry Pi cases</a>. The HDMI port placement means we sacrifice a USB port. We can see the logic here, these boards are most likely destined for behind the scenes roles, not the desktop.</p><p>The Intel CPUs at the heart of the board range from an Intel N50 (dual-core, 3.4GHz, 6W TDP) to an Intel N97 (quad-core, 3.6GHz, 12W TDP) which on paper are quite competitive to the Arm chip found on the Raspberry Pi. The bonus here is that being an x86 CPU, we are free to install whatever operating system we see fit.</p><p>CPUs generate heat, and being a past owner of a first generation UP board we know that they can run hot. But the UP 7000 comes with a passive cooler and a 12V fan header means we can add our own active cooling.</p><div ><table><tbody><tr><td class="firstcol " >CPU</td><td  >Intel Processor N97 (Quad-core, 3.6GHz, 12W TDP)</td></tr><tr><td class="firstcol empty" ></td><td  >Intel Processor N100 (Quad-core, 3.4GHz, 6W TDP)</td></tr><tr><td class="firstcol empty" ></td><td  >Intel Processor N50 (Dual-core, 3.4GHz, 6W TDP)</td></tr><tr><td class="firstcol " >GPU</td><td  >Intel UHD Graphics</td></tr><tr><td class="firstcol " >RAM</td><td  >N100 and N50 4GB, N97 8GB LPDDR5</td></tr><tr><td class="firstcol " >Display Interface</td><td  >1 x HDMI 1.4b</td></tr><tr><td class="firstcol " >Storage</td><td  >N100 and N50 32GB, N97 64GB eMMC</td></tr><tr><td class="firstcol " >Ports</td><td  >3 x USB 3, USB 2 Header</td></tr><tr><td class="firstcol " >GPIO</td><td  >40 Pin GPIO</td></tr><tr><td class="firstcol " >Networking</td><td  >Gigabit Ethernet</td></tr><tr><td class="firstcol " >Security</td><td  >TPM 2.0</td></tr><tr><td class="firstcol " >OS</td><td  >Windows 10, Ubuntu 22.04, Yocto Linux</td></tr><tr><td class="firstcol " >Power</td><td  >12V DC, 30-36W typical consumption</td></tr></tbody></table></div><p>Storage options are limited to 32GB eMMC for the N50 and N100 and 64GB eMMC for the N97. We can&apos;t spot a micro SD card slot, so if you want a little more storage then you will need to grab an <a href="https://www.tomshardware.com/reviews/best-external-hard-drive-ssd,5987.html">external USB 3 drive.</a></p><p>Connectivity is limited to just Ethernet. No Wi-Fi or Bluetooth for the UP 7000. The older UP 4000 did have a range of carrier boards which provided extra features (Wi-Fi, Bluetooth and M.2 storage), but the UP 7000 product page is devoid of these accessories. For now?</p><p>The 40 pin GPIO is a mystery. Is it compatible with the <a href="https://www.tomshardware.com/best-picks/best-raspberry-pi-hats">best Raspberry Pi HATs</a>? Electrically it is possible, but we cannot confirm that. More boards are providing electrical compatibility, but often fall short with software support. If you need GPIO more than raw processing power, then a Raspberry Pi is the safer bet. If you need raw power and GPIO then UP 7000 could offer a solution, but tread carefully.</p><p>So where are these boards destined for? The official blurb states "applications such as digital signage, medical imaging" and sure these boards would do a great job. The Raspberry Pi may struggle with medical imaging, but it has proven to be a great base for digital signage and AI based projects. As this is an x86 board, could we use it as a desktop? Short answer is yes. We could even play some older games on the UP 7000, but we would have to manage our expectations.</p><p>Prices and general availability are currently unknown. If you need something similar then right now the Intel Celeron N5105 powered <a href="https://www.tomshardware.com/reviews/lattepanda-3-delta">LattePanda 3 Delta</a> is a low-cost SBC with built-in Arduino compatible board. If you need a little more power, then the <a href="https://www.tomshardware.com/reviews/lattepanda-sigma-review">LattePanda Sigma</a> provides an Intel Core-i5 1340P and 16GB of LPDDR5.</p><iframe src="https://content.jwplatform.com/players/YdWWS5dA.html" id="YdWWS5dA" title="Raspberry Pi 4 Review: The New Gold Standard for Single-Board Computing" width="1920" height="1080" frameborder="0" scrolling="auto" allowfullscreen></iframe>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Intel's New AVX10 Brings AVX-512 Capabilities to E-Cores ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/news/intels-new-avx10-brings-avx-512-capabilities-to-e-cores</link>
                                                                            <description>
                            <![CDATA[ Intel announced its new AVX10 ISA that will bring support for AVX-512 capabilities to both p-cores and e-cores on its future processors. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">R5J5icTGEVTGqYJ49ehaEn</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/9zUBUjPa3KNSVYQ48YkkmK-1280-80.png" type="image/png" length="0"></enclosure>
                                                                        <pubDate>Mon, 24 Jul 2023 23:22:08 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 12:41:49 +0000</updated>
                                                                                                                                            <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                <author><![CDATA[ palcorn@outlook.com (Paul Alcorn) ]]></author>                    <dc:creator><![CDATA[ Paul Alcorn ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/RZRmFeQfPy3etHjBQitbGW.jpeg ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;As a teenager, Paul scraped up enough money to buy a 486-powered PC with a turbo button (yes, a turbo button). Back when floppies were still popular he was already chasing after the fastest spinners for his personal computer, which led him down the long and winding storage road, covering enterprise storage. His current focus is on consumer processors, though he still keeps a close eye on the latest storage news. In his spare time, you’ll find Paul hanging out with his kids or indulging his love of the Kansas City Chiefs and Royals.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/png" url="https://cdn.mos.cms.futurecdn.net/9zUBUjPa3KNSVYQ48YkkmK-1280-80.png">
                                                            <media:credit><![CDATA[Intel]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[AVX10]]></media:description>                                                            <media:text><![CDATA[AVX10]]></media:text>
                                <media:title type="plain"><![CDATA[AVX10]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/9zUBUjPa3KNSVYQ48YkkmK-1280-80.png" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Intel posted its new APX (<a href="https://www.intel.com/content/www/us/en/developer/articles/technical/advanced-performance-extensions-apx.html">Advanced Performance Extensions</a>) today and also disclosed the new AVX10 [<a href="https://www.intel.com/content/www/us/en/developer/articles/technical/advanced-performance-extensions-apx.html">at the bottom of this page</a>] that will bring unified support for AVX-512 capabilities to both P-Cores and E-Cores for the first time. This evolution of the AVX instruction set will help Intel <a href="https://www.tomshardware.com/news/intel-nukes-alder-lake-avx-512-now-fuses-it-off-in-silicon">sidestep the severe issues</a> it encountered with its new x86 hybrid architecture found in the Alder and Raptor Lake processors.<br><br>However, the new AVX10 ISA won&apos;t be supported with Intel&apos;s current-gen CPUs — it&apos;s slated to arrive in future chips. Intel says that AVX10 will be its vector ISA of choice moving into the future for both consumer and server processors.</p><h2 id="intel-avx10-advanced-instruction-extensions-10">Intel AVX10 (Advanced Instruction Extensions 10)</h2><p>At its most basic level, AVX10 will allow Intel&apos;s chips that have both E-cores and P-cores to still support AVX-512, though 512-bit instructions can only run on P-cores. Meanwhile, converged 256-bit AVX10 instructions can run on either the p-cores or e-cores, thus allowing the full chip to still have support for AVX-512 capabilities. <br><br>As such, Intel won&apos;t have to disable support for 512-bit vectors as it did when it disabled AVX-512 for both Alder Lake and Raptor Lake. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1601px;"><p class="vanilla-image-block" style="padding-top:41.35%;"><img id="9zUBUjPa3KNSVYQ48YkkmK" name="Screenshot 2023-07-24 173755.png" alt="AVX10" src="https://cdn.mos.cms.futurecdn.net/9zUBUjPa3KNSVYQ48YkkmK.png" mos="" align="middle" fullscreen="" width="1601" height="662" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Intel)</span></figcaption></figure><p>Diving deeper, the AVX10 (Advanced Instruction Extensions 10) ISA is a superset of AVX-512 and comes with all of the features of the AVX-512 ISA for processors with both 256-bit and 512-bit vector register sizes.<br><br>The converged AVX10 ISA will include "AVX-512 vector instructions with an AVX512VL feature flag, a maximum vector register length of 256 bits, as well as eight 32-bit mask registers and new versions of 256-bit instructions supporting embedded rounding," and this version will run on both p-cores and e-cores.<br><br>However, the e-cores will be limited to the converged AVX10&apos;s maximum 256-bit vector length, while P-cores can use 512-bit vectors. This feels akin to Arm&apos;s support for variable vector widths with SVE. </p><p>Intel says that existing applications will provide the same level of performance with AVX10 as they did with AVX-512, at least at the same vector lengths. Intel also claims:</p><ul><li>Intel AVX2-compiled applications, re-compiled to Intel AVX10, should realize performance gains without the need for additional software tuning. </li><li>Intel AVX2 applications sensitive to vector register pressure will gain the most performance due to the 16 additional vector registers and new instructions. </li><li>Highly-threaded vectorizable applications are likely to achieve higher aggregate throughput when running on E-core-based Intel Xeon processors or on Intel products with performance hybrid architecture.</li></ul><p>Intel will support AVX10 version 1 (AVX10.1) beginning with its sixth-gen Xeon "Granite Rapids" chips, but that generation will only support 512-bit vector instructions, and not the new converged 256-bit vector instructions. Instead, this first gen will serve as the transition chip from AVX-512 to AVX10.<br><br>Chips arriving after Granite Rapids will support AVX10.2, which adds support for the converged 256-bit vector lengths and other new features, like new AI data types and conversions, data movement optimizations, and standards support. All future Xeon processors will continue fully supporting all AVX-512 instructions to ensure that legacy apps function normally.</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1597px;"><p class="vanilla-image-block" style="padding-top:37.19%;"><img id="VWhEbEDsjToucpmTdEhZcF" name="Screenshot 2023-07-24 173703.png" alt="AVX10" src="https://cdn.mos.cms.futurecdn.net/VWhEbEDsjToucpmTdEhZcF.png" mos="" align="middle" fullscreen="" width="1597" height="594" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Intel)</span></figcaption></figure><p>To address developer feedback (obviously negative), Intel also plans to significantly simplify its AVX10 enumeration methods compared to AVX-512. Intel also plans to ensure that each move to a new AVX10 revision has enough new instructions and capabilities to merit a change, thus reducing version and enumeration bloat. </p><p>Intel will freeze the AVX-512 ISA when AVX10 debuts, and all future use of AVX-512 instructions will occur through the AVX10 ISA. Meanwhile, the new AMX will be unimpacted. </p><h2 id="intel-apx-advanced-performance-extensions">Intel APX (Advanced Performance Extensions)</h2><p>Intel also announced the new APX (Advanced Performance Extensions) today (not to be confused with the old-school iAPX 432).</p><p> Intel claims APX-compiled code contains 10% fewer loads and 20% fewer stores than the same code compiled for an Intel 64 baseline. Intel also says that register accesses are both faster and consume significantly less dynamic power than complex load and store operations. Interestingly, the new APX finds a new use for the 128B area that was left unused when Intel abandoned MPX back in 2019, and repurposes it for XSAVE.<br><br>Here are APX&apos;s top-level features:</p><ul><li>16 additional general-purpose registers (GPRs) R16–R31, also referred to as Extended GPRs (EGPRs) in this document</li><li>Three-operand instruction formats with a new data destination (NDD) register for many integer instructions</li><li>Conditional ISA improvements: New conditional load, store and compare instructions, combined with an option for the compiler to suppress the status flags writes of common instructions </li><li>Optimized register state save/restore operations </li><li>A new 64-bit absolute direct jump instruction</li></ul><p>Intel claims it has implemented APX in such a way that it will not impact the silicon area or power consumption of the CPU core. You can <a href="https://www.intel.com/content/www/us/en/developer/articles/technical/advanced-performance-extensions-apx.html">read much more about APX here</a>, and Intel has a list of resources for both APX and AVX10 at the bottom of the linked page. <br><br>APX and AVX10 come on the heels of Intel&apos;s recent announcement that it is <a href="https://www.intel.com/content/www/us/en/developer/articles/technical/envisioning-future-simplified-architecture.html">investigating slimming down the Intel 64 architecture</a> to a simplified version of x86 named x86S.</p><iframe src="https://content.jwplatform.com/players/dBMx1ASv.html" id="dBMx1ASv" title="How to Choose a CPU" width="960" height="540" frameborder="0" scrolling="auto" allowfullscreen></iframe>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Intel's First x86 CPU Had Secret Instructions Meant to Catch IP Thievery ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/news/intels-first-x86-cpu-had-secret-instructions-meant-to-catch-ip-thievery</link>
                                                                            <description>
                            <![CDATA[ Intel's 8086 processor featured a number of dead ends within its microcode and architecture design for elements that were massacred in the feature-set cutting room before the CPU's release. One such functionality was actually a hidden watermark Intel used to learn whether its rivals were copying its microcode instead of writing their own. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">73xoLPtb9PHm5b65htPWGC</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/VJH6Mq85kZsjyesUWAsDLn-1280-80.png" type="image/png" length="0"></enclosure>
                                                                        <pubDate>Tue, 18 Jul 2023 11:00:35 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 08:42:47 +0000</updated>
                                                                                                                                            <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                <author><![CDATA[ francisco.alexandre.pires@proton.me (Francisco Pires) ]]></author>                    <dc:creator><![CDATA[ Francisco Pires ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/vVpPSVV4UyiTaveBZujqif.png ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Francisco&#039;s first interaction with a computer saw him diligently copying children&#039;s books into Word on a Windows 95-based PC. He built his first tower PC following magazine assembly guides, and the upgrade bug stuck - leading him to cover the latest in tech industry news since 2016. He believes curiosity is one of humanity&#039;s greatest drivers; when he isn&#039;t devoting himself to the written word, he&#039;s either photographing, gaming, or attempting to make sense of the world - something he still often fails at.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/png" url="https://cdn.mos.cms.futurecdn.net/VJH6Mq85kZsjyesUWAsDLn-1280-80.png">
                                                            <media:credit><![CDATA[Ken Shirriff via righto.com]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[The 8086 code blocks]]></media:description>                                                            <media:text><![CDATA[The 8086 code blocks]]></media:text>
                                <media:title type="plain"><![CDATA[The 8086 code blocks]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/VJH6Mq85kZsjyesUWAsDLn-1280-80.png" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p><a href="http://www.righto.com/2023/07/undocumented-8086-instructions.html">Hardware sleuth Ken Shirriff took to his blog</a> to explore the feature set and possible operations one could bring out of the world&apos;s oldest x86 CPU - the Intel 8086. By following the 8086&apos;s microcode operations, Shirriff found some unexpected design "choices": from proprietary microcode meant to trap IP thieves through questionable (but necessary) design decisions that allowed 8086 processors to run unknown instructions (with equally little-known results), the detective work shines some light on what is likely the most important CPU release in the last fifty or so years.</p><p>The world&apos;s first implementation of the x86 instruction set on Intel&apos;s 8086 was about as you&apos;d expect from a CPU released back in the late seventies. While today&apos;s leading-edge chips can carry hundreds of billions of transistors (the basic building blocks for more complex circuits), Intel&apos;s first commercial x86 CPU, the 5-10 MHz Intel 8086, had to make do with a mere 29 thousand of them.</p><div class="see-more see-more--clipped"><blockquote class="twitter-tweet hawk-ignore" data-lang="en"><p lang="en" dir="ltr">Modern processors block you from executing nonexistent instructions. But early microprocessors like the Intel 8086 (1978) didn't check for illegal instructions. Running one could provide hidden functionality or even give access to hidden registers you couldn't otherwise access.🧵 pic.twitter.com/BCdp7ZBY6V<a href="https://twitter.com/kenshirriff/status/1680628561332273153">July 16, 2023</a></p></blockquote><div class="see-more__filter"></div></div><p>More transistors generally equal more performance and especially more functionality (increased support for more varied and complex instructions and hardware-based acceleration are the poster child here). Then, like now, a balance between performance, power efficiency, and transistor counts/die area enforced hard limitations on how transistor allocations were handled - and ultimately, what features were deemed "necessary" and "disposable."</p><p>According to Shirriff&apos;s finding, one particular quirk of Intel&apos;s 8086 is that the CPU didn&apos;t possess any checks and balances for running microcode - the closest-to-the-metal layer between software and hardware that&apos;s responsible for dividing complex instructions into a series of simpler, step-by-step ones that the CPU can execute. But with transistors being limited to 29,000, Intel opted not to include a hardware-level lock on what instructions could and couldn&apos;t be run. Usually, instructions work on a whitelist basis - the CPU allows for the execution of microcodes that it already knows can be processed within its hardware design.</p><p>But since Intel&apos;s 8086 was so tight for transistor space, the company actually didn&apos;t bake in the microcode operation whitelist that the CPU could process, meaning that in the presence of "illegal" (read: non-supported) microcode ops, Intel&apos;s 8086 tried its best to resolve the microcode operation anyway - without specifying the result of the "illegally requested" operation.</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1360px;"><p class="vanilla-image-block" style="padding-top:100.74%;"><img id="QrmFpEg9iRGQx93PAhxTNV" name="opcodes (1).png" alt="The 8086 code blocks" src="https://cdn.mos.cms.futurecdn.net/QrmFpEg9iRGQx93PAhxTNV.png" mos="" align="middle" fullscreen="" width="1360" height="1370" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="caption-text">The first 256 opcode entries out of the total 512 in Intel's 8086 weren't all populated, meaning that there was functionality that wasn't finished... or information kept secret. </span><span class="credit" itemprop="copyrightHolder">(Image credit: Ken Shirriff via righto.com)</span></figcaption></figure><p>All in all, the Intel 8086 supported 521 instructions, held in its Microcode ROM chip (Read-Only Memory). Some of those 512 instructions were duplicates (as fall-back mechanisms and other reasons), but others were never made public: certain microcode operations were left undocumented - whether for planned functionality that was never implemented or for other reasons.</p><p>Yet one interesting microcode, as verified by Shirriff, aided Intel in defending its IP from would-be IP thieves. Populating an instruction list from the available 512 in the 8086&apos;s ROM, Shirring was able to discern the opcodes with known functions (in white); the ones in orange, yellow, and green were left blank for the 8086, but were populated on Intel&apos;s next processors, the 80186, 80286, and 80386 respectively; and finally, the purple outlier: an opcode that was implemented in Intel&apos;s 8086 and subsequent processors, but that was never openly documented.</p><p>Shirriff&apos;s take on the undocumented purple flag - which was only brought to light in Intel&apos;s documents as late as 2017, despite living within the company&apos;s x86 design since the 8086 - is that it served as a honeypot of sorts for anyone looking to copy Intel&apos;s technology. If a company had cut corners in developing their own CPU solutions and had instead pilfered Intel&apos;s microcode IP, then their CPUs would carry the same SALC (Set AL to Carry) operation when fed the relevant bits of machine code - it&apos;s equivalent to a barcode identification that&apos;d allow Intel to more effectively prosecute any IP stealers.</p><p>Unfortunately, the "copyright trap" microcode didn&apos;t serve Intel very much, not even in the early days of the 8086 when the competition was more varied: Intel hoped that its SALC instruction had been implemented in NEC&apos;s own (and better) take on Intel&apos;s x86 processors in the form of the NEC V20 and NEC V30 processors. But it wasn&apos;t: a federal ruling from 1989 asserted that NEC hadn&apos;t infringed Intel&apos;s copyright (and the SALC instruction, therefore, wasn&apos;t there). But other things happen when a copyright infringement suit is launched, things that have little to do with the merits of the copyright itself. Intel&apos;s decision to sue and block NEC and the sale of its V20 and V30 processors is part of the reason why there aren&apos;t more players in the cut-throat-competitive scene of x86 chip design.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Huawei and China-Backed PC Builder to Unify Ecosystem with Blacklisted Phytium CPUs ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/news/huawei-and-cec-working-on-penteng</link>
                                                                            <description>
                            <![CDATA[ Huawei and CEC to create Penteng software and hardware ecosystem. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">ZUZ65uZrFQJZyB9sGhMj53</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/uvKWsyosjdvMnPA8CiKDwB-1280-80.png" type="image/png" length="0"></enclosure>
                                                                        <pubDate>Mon, 17 Jul 2023 14:36:01 +0000</pubDate>                                                                                                                                <updated>Wed, 05 Feb 2025 14:50:37 +0000</updated>
                                                                                                                                            <category><![CDATA[Manufacturing]]></category>
                                                    <category><![CDATA[Tech Industry]]></category>
                                                                                                                    <dc:creator><![CDATA[ Anton Shilov ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/uMZ5kNphxA2Ut6whdLaSQV.png ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Anton Shilov has been in the PC industry since 1990s playing games, building PCs, and writing stories about pretty much everything that relates to PCs, Macs, smartphones, tablets, and even fab equipment. Over his career, he has worked at a variety of high-ranking websites, including AnandTech, EE Times, TechRadar, X-bit labs, and now Tom&#039;s Hardware. When Anton is not reading or writing about something high-tech, he is probably watching a good movie, playing a video game, or spending time with his family.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/png" url="https://cdn.mos.cms.futurecdn.net/uvKWsyosjdvMnPA8CiKDwB-1280-80.png">
                                                            <media:credit><![CDATA[Huawei]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Huawei]]></media:description>                                                            <media:text><![CDATA[Huawei]]></media:text>
                                <media:title type="plain"><![CDATA[Huawei]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/uvKWsyosjdvMnPA8CiKDwB-1280-80.png" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>The US has blacklisted both Huawei and Phytium, a China-based CPU maker, but business still continues apace. Huawei last week said that it had teamed up with the state-owned <a href="https://www.tomshardware.com/news/arm-phytium-ft-2000-cpu-chinese-gaming-pc">China Electronics Corporation (CEC)</a> to build a unified hardware-software ecosystem over its own Kunpeng processors and the US-sanctioned Tianjin Phytium Technology&apos;s Phytium CPUs, reports <a href="https://www.huaweicentral.com/china-electronics-and-huawei-will-build-pengteng-ecosystem/">HuaweiCentral</a>. The joint ecosystem will be called Penteng and will enable CEC to use both Kunpeng and Phytium chips in its devices without making major changes. In addition, the companies plan to invite new partners to the project.</p><p>Contemporary Kunpeng and Phytium processors use an Armv8 instruction set architecture and are compatible with Chinese cryptography algorithms, so it should not be too tricky to ensure that both CPUs run the same programs just fine. On the hardware side of matters, things will get more challenging since modern chips use different process technologies and different packaging. Therefore, it remains to be seen how these differences will be addressed by engineers working on the Penteng project. </p><p>Both Huawei&apos;s chip design arm HiSilicon and Tianjin Phytium Technology are blacklisted by the U.S. government and cannot access leading-edge production capacities. As a result, both companies have to find a way to make competitive chips domestically. Therefore, it is probable that the companies will unify the form factors and packages of their next-generation CPUs. While the partnership includes a focus on Phytium, purportedly a subsidiary of CEC, Phytium has not yet formally announced its participation in the Penteng project.</p><p>This collaboration not only incorporates the refinement of software as well as the unification of some hardware parts but also plans to enlarge the ecosystem by inviting more partners through a certification program. This joint work provides the opportunity to engineer a wide array of products that can accommodate all modern workloads, including cloud data centers, edge computing, and client PCs. Moreover, Huawei and CEC have committed to address emerging business opportunities with Penteng.</p><p>Building up an ecosystem encompassing hardware and software developed in China seems like quite a significant move as it will make the Chinese IT industry generally more competitive. Programs for x86 platforms running Windows or Linux work on appropriate PCs from all vendors. By contrast, this is not always the case with Chinese programs and PCs from different suppliers.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Oracle Ports Database to Arm-Based Ampere CPUs: Might Ditch Intel and AMD ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/news/oracle-ports-database-to-arm-based-ampere-cpus</link>
                                                                            <description>
                            <![CDATA[ Oracle may be looking forward ditching at least some of its AMD and Intel-based machines from own datacenters. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">WrsagHbNfQNsjRcNPGUNon</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/fzvFCZYTiVaG5J7R29nETd-1280-80.png" type="image/png" length="0"></enclosure>
                                                                        <pubDate>Thu, 29 Jun 2023 16:49:05 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 12:53:29 +0000</updated>
                                                                                                                                            <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                <author><![CDATA[ ashilov@gmail.com (Anton Shilov) ]]></author>                    <dc:creator><![CDATA[ Anton Shilov ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/uMZ5kNphxA2Ut6whdLaSQV.png ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Anton Shilov has been in the PC industry since 1990s playing games, building PCs, and writing stories about pretty much everything that relates to PCs, Macs, smartphones, tablets, and even fab equipment. Over his career, he has worked at a variety of high-ranking websites, including AnandTech, EE Times, TechRadar, X-bit labs, and now Tom&#039;s Hardware. When Anton is not reading or writing about something high-tech, he is probably watching a good movie, playing a video game, or spending time with his family.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/png" url="https://cdn.mos.cms.futurecdn.net/fzvFCZYTiVaG5J7R29nETd-1280-80.png">
                                                            <media:credit><![CDATA[Ampere Computing]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Render]]></media:description>                                                            <media:text><![CDATA[Render]]></media:text>
                                <media:title type="plain"><![CDATA[Render]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/fzvFCZYTiVaG5J7R29nETd-1280-80.png" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Oracle this week <a href="https://blogs.oracle.com/database/post/announcing-oracle-database-19c-support-for-arm">said</a> that it had ported its Oracle Database 19c Enterprise Edition, the current long-term support release of Oracle Database, to Ampere&apos;s Altra processors that use the Arm instruction set architecture (ISA). The move marks a milestone both for Ampere and Arm ISA as Oracle is one of the most widely used enterprise software suites.</p><p>Separately, the company said that eventually it might ditch x86-based instances running Database on processors from AMD and Intel from its data centers in favor of instances enabled by Ampere CPUs. Oracle hopes that by tailoring its Database software for Ampere&apos;s single-thread CPUs, it will tangibly increase performance efficiency of its data centers. Furthermore, Ampere, in which Oracle is a lead investor, could also implement tweaks into CPUs to better run Oracle&apos;s Database.</p><p>"It is a major commitment to move to a new supplier. We&apos;ve moved to a new architecture and we&apos;ve moved to new supplier," Larry Ellison, Oracle&apos;s founder, said at an event hosted by Ampere, reports <a href="https://www.reuters.com/technology/oracle-extends-its-flagship-database-amperes-computing-chips-2023-06-28/">Reuters</a>. "We think that this is the future. The old Intel x86 architecture, after many decades in the market, is reaching its limit."</p><p>Oracle Database 19c Enterprise Edition is now certified for work on Ampere Altra-based servers for both on-premises deployments and in the cloud by subscribing to Oracle Database Service using OCI Ampere A1 compute instances enabled by Ampere Altra on Oracle Cloud Infrastructure (OCI). It will continue to be offered on AMD and Intel-powered instances probably for years to come. But with Arm-based Ampere servers, Oracle hopes to offer "highly economical price points."</p><p>Oracle&apos;s OCI Ampere A1 can be used in a flexible VM format ranging from 1 to 57 CPU cores, each with 8GB of memory (maxing out at 456GB), 1 Gbps of network bandwidth for each CPU core (up to a total of 40 Gbps per VM).</p><p>Oracle&apos;s Database enterprise database management software is used by large businesses, banks, government agencies, retailers, and manufacturers for running online transaction processing (OLTP), data warehousing (DW) and mixed (OLTP & DW) workloads. The software has been in development since 1979 and supports a wide variety of hardware and software platforms, including IBM&apos;s Mainframe and Power-bases systems, x86 CPUs from AMD and Intel, Sun&apos;s SPARC processors, Intel&apos;s IA64 (Itanium) chips, and now Arm-based Ampere Altra SoCs.</p><p>"Today&apos;s announcement highlights the broad architectural shift across the market to Ampere processors that meet the demands of both modern cloud and on-premises environments," said Jeff Wittich, Chief Product Officer of Ampere. "With the Ampere Altra family of processors, customers of the world&apos;s most popular database — Oracle Database — now have a high-performance, energy efficient architecture built with sustainability in mind for organizations of all sizes."</p><p>While running Database on energy-efficient cloud-native Ampere&apos;s Altra CPUs promises to make a lot of economic sense for Oracle, OCI still needs to offer high-performance computing (HPC), and Dense-IO instances for those who need maximum performance and ultra-fast local storage. So, this week the company <a href="https://www.oracle.com/news/announcement/oci-compute-instances-with-amd-processors-2023-06-13/">announced</a> OCI Compute E5 HPC and OCI Compute E5 Dense-IO instanced based on AMD&apos;s 4th Generation EPYC processors with their vast core counts and rich I/O capabilities.</p><iframe src="https://content.jwplatform.com/players/XDf5PcNM.html" id="XDf5PcNM" title="How To Choose A Graphics Card" width="960" height="540" frameborder="0" scrolling="auto" allowfullscreen></iframe>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Intel to Operate Foundry and Manufacturing More Like a Separate Business ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/news/intel-to-operate-its-foundry-and-manufacturing-like-a-separate-business</link>
                                                                            <description>
                            <![CDATA[ Intel's Internal Foundry Services and manufacturing business will report its own P&L, which will sell to both internal and external customers. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">RXAmKw6eJfP9hpH5CVhRr3</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/RxNQ3Us2NLUTa5ARpZfwxd-1280-80.png" type="image/png" length="0"></enclosure>
                                                                        <pubDate>Wed, 21 Jun 2023 16:45:52 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 12:42:43 +0000</updated>
                                                                                                                                            <category><![CDATA[Tech Industry]]></category>
                                                                                                                    <dc:creator><![CDATA[ Andrew E. Freedman ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/MTveuGNKPqpzrLttEA9ebb.jpg ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Andrew oversees laptop and desktop coverage and keeps up with the latest news in tech and gaming. His work has been published in Kotaku, PCMag, Complex, Tom’s Guide and Laptop Mag, among others. He fondly remembers his first computer: a Gateway that still lives in a spare room in his parents&#039; home, albeit without an internet connection. When he’s not writing about tech, you can find him playing video games, checking social media and waiting for the next Marvel movie. Follow him on Threads &lt;a href=&quot;https://www.threads.net/@freedmanae&quot;&gt;@FreedmanAE&lt;/a&gt; and BlueSky &lt;a href=&quot;https://bsky.app/profile/andrewfreedman.net&quot;&gt;@andrewfreedman.net&lt;/a&gt;.&lt;a href=&quot;https://bsky.app/profile/andrewfreedman.net&quot;&gt; &lt;/a&gt;You can send him tips on Signal: andrewfreedman.01&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/png" url="https://cdn.mos.cms.futurecdn.net/RxNQ3Us2NLUTa5ARpZfwxd-1280-80.png">
                                                            <media:credit><![CDATA[Intel]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Intel investor webinar logo]]></media:description>                                                            <media:text><![CDATA[Intel investor webinar logo]]></media:text>
                                <media:title type="plain"><![CDATA[Intel investor webinar logo]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/RxNQ3Us2NLUTa5ARpZfwxd-1280-80.png" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Intel is kicking its internal foundry model into high gear. Today, on a call with investors, David Zinsner, executive vice president and chief financial officer, and Jason Grebe, corporate vice president and general manager of corporate planning, detailed how Intel&apos;s manufacturing group, including Internal Foundry Services, will be broken out into its own profit and loss (P&L) statement.</p><p>Zisner and Grebe suggested this new IDM 2.0 model will put Internal Foundry Services along with manufacturing and technology development into a reportable unit, who will sell to both external fabless customers and internal business units that will choose to use either Intel&apos;s foundries or external competitors. (Intel already has some x86 chips being made at TSMC like the upcoming <a href="https://www.tomshardware.com/news/intels-meteor-lake-begins-production-launches-this-year-on-intel-4-process">Meteor Lake</a> processors.)</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2142px;"><p class="vanilla-image-block" style="padding-top:55.18%;"><img id="4Uww3U5mpGqxZtUtZjvzxR" name="Screenshot 2023-06-21 at 11.37.09 AM.png" alt="IFS" src="https://cdn.mos.cms.futurecdn.net/4Uww3U5mpGqxZtUtZjvzxR.png" mos="" align="middle" fullscreen="1" width="2142" height="1182" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/4Uww3U5mpGqxZtUtZjvzxR.png' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Intel)</span></figcaption></figure><p>Intel stated that its IDM 1.0 strategy worked for a long time, but the capital required to create new leading edge nodes has increased, and there has been a lag behind rivals in a competitive business environment. Intel does claim, however, that its Intel 18A will come in 2025 and regain process leadership.<br><br></p><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/348Bixw9mZW9QQqz2n8JjN.png" alt="IFS" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/ojRsKTqWonixsLADg8UdBN.png" alt="IFS" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/kXt4SZbUCupgqrxgvf2mjP.png" alt="IFS" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/4AVQmiYTqGdAzHtQrwHpWi.png" alt="IFS" /><figcaption><small role="credit">Intel</small></figcaption></figure></figure><p>The company states that it&apos;s still the goal for the Internal Foundry Model to produce the second-largest external foundry in the industry. It claims that putting this group in its own P&L will also lead to $8 billion to $10 billion in "cost reduction opportunities." including ramp rates and test and sort times based on a "market-based" price. It is likely, however, to start with a negative operating margin.</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2158px;"><p class="vanilla-image-block" style="padding-top:55.24%;"><img id="3ujSvA4Jmcgd5kgYX4wV6Q" name="Screenshot 2023-06-21 at 11.50.32 AM.png" alt="IFS" src="https://cdn.mos.cms.futurecdn.net/3ujSvA4Jmcgd5kgYX4wV6Q.png" mos="" align="middle" fullscreen="1" width="2158" height="1192" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/3ujSvA4Jmcgd5kgYX4wV6Q.png' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Intel)</span></figcaption></figure><p>Intel also suggests that keeping the foundry in its own company will provide benefits to external customers. Intel says it will have five internal products on 18A, and suggests that by creating multiple products on a node internally before releasing to external customers, it "de-risks" the node for those outside partners, with more wafer starts and the kinks removed from the process.</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2168px;"><p class="vanilla-image-block" style="padding-top:55.72%;"><img id="BwkpofePYqVcEGS8G8kosN" name="Screenshot 2023-06-21 at 11.49.46 AM.png" alt="IFS" src="https://cdn.mos.cms.futurecdn.net/BwkpofePYqVcEGS8G8kosN.png" mos="" align="middle" fullscreen="1" width="2168" height="1208" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/BwkpofePYqVcEGS8G8kosN.png' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Intel)</span></figcaption></figure><p>Grebe reiterated that there will be a "compete segregation" of customer data and intellectual property, along with "world class" service and support and an affirmation that there is supply available for customers. Intel will have to compete with the likes of TSMC and other fabs both with external customers <em>and</em> inside Intel to ensure its success. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2156px;"><p class="vanilla-image-block" style="padding-top:55.38%;"><img id="Th4Mv23jhghXEaCBXSSKaP" name="Screenshot 2023-06-21 at 11.54.38 AM.png" alt="IFS" src="https://cdn.mos.cms.futurecdn.net/Th4Mv23jhghXEaCBXSSKaP.png" mos="" align="middle" fullscreen="1" width="2156" height="1194" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/Th4Mv23jhghXEaCBXSSKaP.png' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Intel)</span></figcaption></figure><p>When asked why Intel isn&apos;t simply splitting into a fabless design business and a separate foundry business, Zisner said that "we think there is a ton of benefit for having both a product business and a manufacturing business combined." Those benefits, he suggested, include better process technologies and products due to internal teams collaborating, and using internal teams as "customer zero" to increase volumes on new nodes. Zisner suggested he didn&apos;t see any requirement to split the business in two. That being said, it seems clear that it is a possibility in the future, where Intel could spin its foundry out.</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2162px;"><p class="vanilla-image-block" style="padding-top:55.78%;"><img id="SNZE8ZofNgUCAUjwPhXEMQ" name="Screenshot 2023-06-21 at 11.56.15 AM.png" alt="IFS" src="https://cdn.mos.cms.futurecdn.net/SNZE8ZofNgUCAUjwPhXEMQ.png" mos="" align="middle" fullscreen="" width="2162" height="1206" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Intel)</span></figcaption></figure><p>In recent weeks, Intel has recently announced plans for huge investments, including an assembly plant in Poland a $25 billion plant in Israel. These are on top of billions of dollars on new fabs in <a href="https://www.tomshardware.com/news/new-us-fabs-everything-we-know">Oregon and Arizona</a>, as well as a site in <a href="https://www.tomshardware.com/news/intel-germany-magdeburg-gets-6-8bn-euros-funding">Magdeburg, Germany</a>.<br><br>Intel stock was down approximately 4.9% on the news.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Razer’s Latest Blade 14 Cuts Deep With Ryzen 7940HS and RTX 4070 Muscle ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/news/razer-blade-14-ryzen-7940hs-rtx-4070</link>
                                                                            <description>
                            <![CDATA[ Razer’s yearly refresh of the Blade 14 brings the expected upgrades to performance ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">CJSnCcu8NCiYfvzqBDfVBe</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/guocGs3b9kFJKHtTjm7wVD-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Wed, 14 Jun 2023 15:00:10 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 08:56:34 +0000</updated>
                                                                                                                                            <category><![CDATA[Laptops]]></category>
                                                                                                <author><![CDATA[ brandon.hill@futurenet.com (Brandon Hill) ]]></author>                    <dc:creator><![CDATA[ Brandon Hill ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/yHeufe7JcvuJBhYPkSexNf.jpg ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Brandon&amp;nbsp;has been tinkering with PCs since childhood and received his first &quot;real&quot; PC, an IBM Aptiva 310, in the mid-1990s. He next went on to build his first custom PC with an Intel Celeron 300A processor overclocked to 450MHz on an Abit BH6 motherboard.&amp;nbsp;Brandon&amp;nbsp;has written about PC and Mac tech since the late 1990s, first at AnandTech before moving to DailyTech and later to Hot Hardware. When&amp;nbsp;Brandon&amp;nbsp;is not consuming copious amounts of tech news, he can be found enjoying the NC mountains or the beach with his wife and two sons.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/guocGs3b9kFJKHtTjm7wVD-1280-80.jpg">
                                                            <media:credit><![CDATA[Razer]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Razer Blade 14]]></media:description>                                                            <media:text><![CDATA[Razer Blade 14]]></media:text>
                                <media:title type="plain"><![CDATA[Razer Blade 14]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/guocGs3b9kFJKHtTjm7wVD-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Razer today announced a new version of its<a href="https://www.tomshardware.com/reviews/razer-blade-14-review"> <u>Razer Blade 14</u></a> laptop, and it’s quite an intriguing ultraportable. Whereas the current generation is powered by a Ryzen 6900HX processor (8 cores, 16 threads) and your choice of up to a GeForce RTX 3080 Ti GPU, the new 2023 edition of the Razer Blade 14 brings the latest mobile hardware from AMD and Nvidia.</p><p>To be more specific, Razer opted for<a href="https://www.tomshardware.com/news/amd-delays-7040hs-phoenix-laptop-cpus-to-april"> <u>AMD’s Ryzen 7940HS “Phoenix”</u></a> processor, which AMD bills as the first x86 processor with a dedicated, <a href="https://www.tomshardware.com/news/amd-demoes-ryzen-ai-at-computex-2023"><u>onboard AI engine</u></a>. This processor also features an 8-core/16-thread configuration but with a base clock of 4 GHz and a turbo clock of 5 GHz. Razer also upgraded the discrete graphics across-the-board to Nvidia Ada Lovelace architecture. Base configurations get a <a href="https://www.nvidia.com/en-us/geforce/news/geforce-rtx-4060-4060ti/"><u>GeForce RTX 4060</u></a> (8GB, 2370MHz boost, 140-watt), but you can step up to the optional <a href="https://www.tomshardware.com/reviews/nvidia-geforce-rtx-4070-review"><u>RTX 4070</u></a> (8GB, 2175MHz boost, 140-watt) if you need more performance.</p><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/MCZkaTezyjXaw4VAAgMmVo.jpg" alt="Ryzen AI" /><figcaption><small role="credit">AMD</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/WgWNyqLJJ3xwWjcZYSCZL3.jpg" alt="Ryzen AI" /><figcaption><small role="credit">AMD</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/aSSnS43AMpCxdMSwXNjqJ4.jpg" alt="Ryzen AI" /><figcaption><small role="credit">AMD</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/MdyMWrDkZGB65yeKe7hHE5.jpg" alt="Ryzen AI" /><figcaption><small role="credit">AMD</small></figcaption></figure></figure><div ><table><caption>Ryzen 7040 HS-series Processors</caption><thead><tr><th class="firstcol " >Model</th><th  >Cores/Threads</th><th  >Boost/Base Frequency (GHz)</th><th  >Cache (MB) </th><th  >TDP (W)</th></tr></thead><tbody><tr><td class="firstcol " >AMD Ryzen 9 7940HS </td><td  > 8/16 </td><td  >Up to 5.2 / 4.0</td><td  >40</td><td  > 35 - 45</td></tr><tr><td class="firstcol " >AMD Ryzen 7 7840HS</td><td  > 8/16 </td><td  >Up to 5.1 / 3.8</td><td  >40</td><td  >35 - 45</td></tr><tr><td class="firstcol " >AMD Ryzen 5 7640HS</td><td  > 6/12 </td><td  >Up to 5.0 / 4.3</td><td  >38</td><td  >35 - 45</td></tr></tbody></table></div><p>All systems have a 1TB SSD (upgradable to 4TB), while 16GB of DDR5-5600 memory is standard. If you opt for the RTX 4070, you can upgrade to 32GB of DDR5-5600. The maximum installable memory on the Razer Blade 14 is 64GB using the two onboard SO-DIMM slots.</p><p>All that hardware pushes pixels to a 14-inch, QHD+ (2560 x 1600) 16:10 display with a 240Hz refresh rate and AMD FreeSync Premium support. In addition to its anti-glare finish to cut down on reflections, Razer says that it’s spec’d for 500 nits typical brightness and covers 100 percent of the DCI-P3 color space.</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1600px;"><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="2vZJfGtQoM2DWUPPCpP6jF" name="Blade 14 [2023] Render (1).jpg" alt="Razer Blade 14" src="https://cdn.mos.cms.futurecdn.net/2vZJfGtQoM2DWUPPCpP6jF.jpg" mos="" align="middle" fullscreen="" width="1600" height="900" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Razer)</span></figcaption></figure><p>Fueling this mobile powerhouse is a 68.1 WHr lithium-ion polymer battery, which powers the Blade 14 for up to 10 hours. On the connectivity front, you’ll find the requisite HDMI 2.1 port, two USB 3.2 Gen 2 (Type-A) ports, two USB 4 (Type-C) ports (up to 100-watt Power Delivery supported) and a 3.5mm combo jack. For your wireless needs, Razer opted for Wi-Fi 6E and Bluetooth 5.2 (Qualcomm WCN6856).</p><p>1080p webcams are becoming more commonplace on laptops, and Razer is no exception with the Blade 14. However, the company goes one step further by including a privacy shutter for those concerned about nefarious parties spying on you without permission. For your audio needs, you’ll find dual speakers with THX Spatial Audio support. Other features include a Razer Chroma RGB keyboard and a Windows Precision Trackpad.</p><p>The Blade 14 is constructed of anodized aluminum that is resistant to your greasy fingerprints and is available in Matte Black or Mercury White (exclusive to the 32GB/RTX 4070 SKU). The laptop measures 12.23 x 8.97 x 0.70 inches and weighs just 4.05 pounds.</p><p>The base Blade 14 SKU with 16GB of RAM and an RTX 4060 costs $2,399. Upgrading to the RTX 4070 takes the price to $2,699. Finally, the flagship SKU with the RTX 4070 and 32GB of RAM costs $2,799. The Blade 14 is up for preorder today and will begin shipping on June 20th.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ AMD Data Center and AI Technology Premiere Live Blog: Instinct MI300, 128-Core EPYC Bergamo  ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/news/live/amd-data-center-and-ai-technology-premiere-live-blog-instinct-mi300-144-core-epyc-bergamo</link>
                                                                            <description>
                            <![CDATA[ Join our liveblog as we cover Data Center and AI Technology Premiere, where the company is expected to reveal its new EPYC Bergamo chips with up to 128 cores and its Instinct MI300 accelerators, among many other new products. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">oHZHnvuzjGyRfkNqgQBVk4</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/Y5ByNhanxfBA537rWH3BoB-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Tue, 13 Jun 2023 16:34:11 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 10:08:10 +0000</updated>
                                                                                                                                            <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                <author><![CDATA[ palcorn@outlook.com (Paul Alcorn) ]]></author>                    <dc:creator><![CDATA[ Paul Alcorn ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/RZRmFeQfPy3etHjBQitbGW.jpeg ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;As a teenager, Paul scraped up enough money to buy a 486-powered PC with a turbo button (yes, a turbo button). Back when floppies were still popular he was already chasing after the fastest spinners for his personal computer, which led him down the long and winding storage road, covering enterprise storage. His current focus is on consumer processors, though he still keeps a close eye on the latest storage news. In his spare time, you’ll find Paul hanging out with his kids or indulging his love of the Kansas City Chiefs and Royals.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/Y5ByNhanxfBA537rWH3BoB-1280-80.jpg">
                                                            <media:credit><![CDATA[AMD]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[AMD]]></media:description>                                                            <media:text><![CDATA[AMD]]></media:text>
                                <media:title type="plain"><![CDATA[AMD]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/Y5ByNhanxfBA537rWH3BoB-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>The event has concluded, and you can see our overview with the live blog below, However, here are links to our deeper coverage of each topic:</p><p><a href="https://www.tomshardware.com/news/amd-expands-mi300-with-gpu-only-model-eight-gpu-platform-with-15tb-of-hbm3">AMD Expands MI300 With GPU-Only Model, Eight-GPU Platform with 1.5TB of HBM3</a></p><p><a href="https://www.tomshardware.com/news/amd-epyc-genoa-x-weilds-13-gb-of-l3-cache-96-cores">AMD EPYC Genoa-X Weilds 1.3 GB of L3 Cache, 96 Cores</a></p><p><a href="https://www.tomshardware.com/news/amd-details-epyc-bergamo-cpus-with-128-zen-4c-cores">AMD Details EPYC Bergamo CPUs With 128 Zen 4C Cores, Available Now<br></a><br><a href="https://www.tomshardware.com/news/amd-intros-ryzen-7000-pro-mobile-and-desktop-chips-ai-comes-to-pro-series">AMD Intros Ryzen 7000 Pro Mobile and Desktop Chips, AI Comes to Pro Series</a></p><p>AMD is holding its Data Center and AI Technology Premiere today, June 13, 2022, at 10 am PT here in San Francisco -- which is now. We&apos;re here to cover the event live and bring you the news as it happens as AMD CEO Lisa Su takes to the stage to reveal AMD&apos;s new AI-focused silicon.<br><br>AMD has already said that it will reveal its <a href="https://www.tomshardware.com/news/amds-data-center-roadmap-eypc-genoa-x-siena-announced-turin-in-2024">EPYC Bergamo</a> chips at the event. These chips come with up to 128 cores, an innovation that&apos;s enabled by the company&apos;s new &apos;Zen 4c&apos; efficiency cores. These new cores are optimized for density through several techniques, yet unlike Intel&apos;s competing efficiency cores, retain support for the chips&apos; full feature set.<br><br>AMD is also expected to announce its <a href="https://www.tomshardware.com/news/amd-instinct-mi300-data-center-apu-pictured-up-close-15-chiplets-146-billion-transistors">Instinct MI300 </a>accelerators. This data center APU blends a total of 13 chiplets, many of them 3D-stacked, to create a chip with twenty-four Zen 4 CPU cores fused with a CDNA 3 graphics engine and 8 stacks of HBM3. Overall the chip weighs in with 146 billion transistors, making it the largest chip AMD has pressed into production. This chip is designed to compete with <a href="https://www.tomshardware.com/news/nvidia-details-grace-hopper-cpu-superchip-design-144-cores-on-4n-tsmc-process">Nvidia&apos;s Grace Hopper</a>. </p><p>Other expected announcements include the debut of the company&apos;s Genoa-X processors, which use 3D-Stacked L3 cache to boost performance in technical workloads, much like the existing <a href="https://www.tomshardware.com/news/amd-launches-milan-x-with-3d-v-cache-epyc-7773x-with-768mb-l3-cache-for-dollar8800">Milan-X</a> processors. We also expect news about the company&apos;s first teleco-optimized chips, Sienna, and perhaps an update on the company&apos;s next-gen Zen 5 &apos;Turin&apos; data center chips.</p><p><br></p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:4000px;"><p class="vanilla-image-block" style="padding-top:56.30%;"><img id="sgMLWgTK6DqDNzkRk5qYSi" name="20230613_093927.jpg" alt="AMD" src="https://cdn.mos.cms.futurecdn.net/sgMLWgTK6DqDNzkRk5qYSi.jpg" mos="" align="middle" fullscreen="" width="4000" height="2252" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Tom's Hardware)</span></figcaption></figure><p>We&apos;re now seated and ready for the show to begin in less than ten minutes. </p><p>AMD CEO Lisa Su has come on stage to introduce the company&apos;s new products, noting that she will introduce a range of new products including CPUs and GPUs. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2386px;"><p class="vanilla-image-block" style="padding-top:51.89%;"><img id="t76r4ZKj98PMjWwgMppPo4" name="Screenshot 2023-06-13 at 1.01.46 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/t76r4ZKj98PMjWwgMppPo4.png" mos="" align="middle" fullscreen="" width="2386" height="1238" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>Lisa Su is outlining AMD&apos;s progress with its EPYC processors, particularly in the cloud with instances available worldwide. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2286px;"><p class="vanilla-image-block" style="padding-top:48.82%;"><img id="z5sEPhmqcdCZS7VenHTAjB" name="Screenshot 2023-06-13 at 1.02.56 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/z5sEPhmqcdCZS7VenHTAjB.png" mos="" align="middle" fullscreen="" width="2286" height="1116" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>Lisa Su touts that AMD EPYC Genoa offers 1.8x the performance of Intel&apos;s competing processors in cloud workloads, and 1.9X faster in enterprise workloads. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2250px;"><p class="vanilla-image-block" style="padding-top:44.44%;"><img id="2pyR6X4atjQPz2kARt8brK" name="Screenshot 2023-06-13 at 1.04.17 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/2pyR6X4atjQPz2kARt8brK.png" mos="" align="middle" fullscreen="" width="2250" height="1000" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>The vast majority of AI runs on CPUs, and AMD says it has a commanding lead in performance over competing Xeon 8490H, offering 1.9X more performance. Su also touted a 1.9X efficiency advantage.</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2332px;"><p class="vanilla-image-block" style="padding-top:47.60%;"><img id="d8hQpmpgAMgcmUZYgCCnsT" name="Screenshot 2023-06-13 at 1.04.54 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/d8hQpmpgAMgcmUZYgCCnsT.png" mos="" align="middle" fullscreen="" width="2332" height="1110" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2326px;"><p class="vanilla-image-block" style="padding-top:46.17%;"><img id="62UpFUdYgDeSELcR72ntUT" name="Screenshot 2023-06-13 at 1.05.01 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/62UpFUdYgDeSELcR72ntUT.png" mos="" align="middle" fullscreen="" width="2326" height="1074" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2076px;"><p class="vanilla-image-block" style="padding-top:43.16%;"><img id="ReE5zsacdrLqsWpB43to8T" name="Screenshot 2023-06-13 at 1.05.24 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/ReE5zsacdrLqsWpB43to8T.png" mos="" align="middle" fullscreen="" width="2076" height="896" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>Here we can see AMD&apos;s AI benchmarks relative to Intel&apos;s Sapphire Rapids Xeon.</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1968px;"><p class="vanilla-image-block" style="padding-top:39.84%;"><img id="4ZP2xkkjpYnTNuMWSuBy2c" name="Screenshot 2023-06-13 at 1.06.30 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/4ZP2xkkjpYnTNuMWSuBy2c.png" mos="" align="middle" fullscreen="" width="1968" height="784" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>Dave Brown, the VP of AWS&apos;s EC2, came on stage to talk about the cost savings and performance advantages of using AMD&apos;s instances in its cloud. He provided several examples of customers that benefited from the AMD instances, with workloads spanning from HPC to standard general-purpose workloads. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1288px;"><p class="vanilla-image-block" style="padding-top:61.02%;"><img id="3J6ygQSkwjqMHZeq5LE2Rg" name="Screenshot 2023-06-13 at 1.07.17 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/3J6ygQSkwjqMHZeq5LE2Rg.png" mos="" align="middle" fullscreen="" width="1288" height="786" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>Amazon announced that it is building new instances with AWS Nitro and the fourth-generation <a href="https://www.tomshardware.com/reviews/amd-4th-gen-epyc-genoa-9654-9554-and-9374f-review-96-cores-zen-4-and-5nm-disrupt-the-data-center">EPYC Genoa</a> processors. The EC2 M7a instances are available in preview today, offering 50% more performance than M6a instances. AWS says they offer the highest performance of the AWS x86 offerings. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1984px;"><p class="vanilla-image-block" style="padding-top:62.00%;"><img id="bBNGCjeabj3NHdiUX8EXC3" name="Screenshot 2023-06-13 at 1.08.28 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/bBNGCjeabj3NHdiUX8EXC3.png" mos="" align="middle" fullscreen="" width="1984" height="1230" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>AMD will also use the EC2 M7a instances for its own internal workloads as well, including for chip-designing EDA software.  </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2258px;"><p class="vanilla-image-block" style="padding-top:51.28%;"><img id="ocNR3i6UECyFndMgeamE3U" name="Screenshot 2023-06-13 at 1.12.12 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/ocNR3i6UECyFndMgeamE3U.png" mos="" align="middle" fullscreen="" width="2258" height="1158" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>AMD also announced that Oracle with have Genoa E5 instances available in July.</p><p>Lisa Su has now transitioned to talking about cloud-native processors, explaining that they are throughput-oriented and require the highest end density and efficiency. Bergamo is the entry for this market, and uses up to 128 cores per socket with a consistent x86 ISA support. The chip has 83 billion transistors and offers the highest vCPU density available. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2134px;"><p class="vanilla-image-block" style="padding-top:52.01%;"><img id="Hcduhg3DY6iXhGemz6w6h9" name="Screenshot 2023-06-13 at 1.16.09 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/Hcduhg3DY6iXhGemz6w6h9.png" mos="" align="middle" fullscreen="" width="2134" height="1110" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>The Zen 4c core offers higher density than standard Zen 4 cores, yet maintains 100% software compatibility. AMD optimized the cache hierarchy, among other trimmings, for a savings of 35% on the die area. The CCD core chiplet is the only change. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1978px;"><p class="vanilla-image-block" style="padding-top:66.84%;"><img id="7v7HpzBQCZWLsFdacm2W6C" name="Screenshot 2023-06-13 at 1.17.10 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/7v7HpzBQCZWLsFdacm2W6C.png" mos="" align="middle" fullscreen="" width="1978" height="1322" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>Here is the die breakdown. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2308px;"><p class="vanilla-image-block" style="padding-top:48.53%;"><img id="MBTTxpGU7gZ3rUd63ECP2G" name="Screenshot 2023-06-13 at 1.17.50 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/MBTTxpGU7gZ3rUd63ECP2G.png" mos="" align="middle" fullscreen="" width="2308" height="1120" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>The core is 35% smaller than standard Zen 4 cores. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2160px;"><p class="vanilla-image-block" style="padding-top:42.13%;"><img id="3AnRFnKV4WMa7HPoH9DudH" name="Screenshot 2023-06-13 at 1.18.22 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/3AnRFnKV4WMa7HPoH9DudH.png" mos="" align="middle" fullscreen="" width="2160" height="910" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>Here is a diagram of the chip package. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2052px;"><p class="vanilla-image-block" style="padding-top:49.51%;"><img id="hTRjbfLZn4uAv6zs2vWdBK" name="Screenshot 2023-06-13 at 1.18.42 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/hTRjbfLZn4uAv6zs2vWdBK.png" mos="" align="middle" fullscreen="" width="2052" height="1016" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>Bergamo is shipping now to AMD&apos;s cloud customers. AMD also shared the following performance benchmarks. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2328px;"><p class="vanilla-image-block" style="padding-top:43.81%;"><img id="iYjs83cLzXv4tFc6gnviyQ" name="Screenshot 2023-06-13 at 1.19.36 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/iYjs83cLzXv4tFc6gnviyQ.png" mos="" align="middle" fullscreen="" width="2328" height="1020" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2280px;"><p class="vanilla-image-block" style="padding-top:45.09%;"><img id="gcwaRhVw6bwwTYS46jXWET" name="Screenshot 2023-06-13 at 1.19.59 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/gcwaRhVw6bwwTYS46jXWET.png" mos="" align="middle" fullscreen="" width="2280" height="1028" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>A Meta representative joined Lisa Su on the stage to talk about the company&apos;s use of AMD&apos;s EPYC processors for its infrastructure. Meta is also open-sourcing its AMD-powered server designs. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2158px;"><p class="vanilla-image-block" style="padding-top:56.26%;"><img id="QvYfXQ5mte8UdHjMjiqmRe" name="Screenshot 2023-06-13 at 1.21.28 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/QvYfXQ5mte8UdHjMjiqmRe.png" mos="" align="middle" fullscreen="" width="2158" height="1214" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>Meta says that it has learned that it can rely upon AMD for both chip supply and a strong roadmap that it delivers on schedule. Meta plans to use Bergamo, which offers 2.5X more performance than the previous-gen Milan chips, for its infrastructure. Meta will also use Bergamo for its storage platforms. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2110px;"><p class="vanilla-image-block" style="padding-top:57.91%;"><img id="uiUPaDSNVKGDe4DRU6Yyed" name="Screenshot 2023-06-13 at 1.21.38 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/uiUPaDSNVKGDe4DRU6Yyed.png" mos="" align="middle" fullscreen="" width="2110" height="1222" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>Dan McNamara, AMD&apos;s SVP and GM of the Server Business Unit, has come to the stage to introduce two new products. Genoa-X will add more than 1 GB of L3 cache with 96 cores. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2246px;"><p class="vanilla-image-block" style="padding-top:54.59%;"><img id="ceUkpaEB2wnmqVjFWmtYrQ" name="Screenshot 2023-06-13 at 1.26.41 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/ceUkpaEB2wnmqVjFWmtYrQ.png" mos="" align="middle" fullscreen="" width="2246" height="1226" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>Gen0a-X is available now. Four SKUs, 16 to 96 cores. SP5 socket compatibility, so it will work with existing EPYC platforms. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2070px;"><p class="vanilla-image-block" style="padding-top:46.18%;"><img id="JBQfgfobtNB2fqpyGfkGza" name="Screenshot 2023-06-13 at 1.28.01 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/JBQfgfobtNB2fqpyGfkGza.png" mos="" align="middle" fullscreen="" width="2070" height="956" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2048px;"><p class="vanilla-image-block" style="padding-top:55.66%;"><img id="kM4nZfjnL22Div5xsQesVb" name="Screenshot 2023-06-13 at 1.27.31 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/kM4nZfjnL22Div5xsQesVb.png" mos="" align="middle" fullscreen="" width="2048" height="1140" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>McNamara showed performance benchmarks of Genoa-X against Intel&apos;s 80 core Xeon. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1978px;"><p class="vanilla-image-block" style="padding-top:46.01%;"><img id="RhAceSB46VNVfWxkg8pqah" name="Screenshot 2023-06-13 at 1.29.21 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/RhAceSB46VNVfWxkg8pqah.png" mos="" align="middle" fullscreen="" width="1978" height="910" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>Here we can see a comparison of Genoa-X against an Intel Xeon with the same number of cores. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2222px;"><p class="vanilla-image-block" style="padding-top:39.06%;"><img id="wyxpx5B9WJCjWricGEDmak" name="Screenshot 2023-06-13 at 1.29.44 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/wyxpx5B9WJCjWricGEDmak.png" mos="" align="middle" fullscreen="" width="2222" height="868" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>A Microsoft representative joined McNamara on the stage to show Azure HPC performance benchmarks. In just four years, Azure has seen a 4X improvement in performance with the EPYC processors. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2064px;"><p class="vanilla-image-block" style="padding-top:40.99%;"><img id="BQg244Dk9qMxdvjiiwDsC8" name="Screenshot 2023-06-13 at 1.31.15 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/BQg244Dk9qMxdvjiiwDsC8.png" mos="" align="middle" fullscreen="" width="2064" height="846" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>Azure announced the general availability of its new HBv4 and HX-series instances with Genoa-X, and new HBv3 instances. Azure also provided benchmarks to show the performance gains, which top out at 5.7X gains </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1896px;"><p class="vanilla-image-block" style="padding-top:52.00%;"><img id="xc2TbUh4RoUmMvEYWQkdZK" name="Screenshot 2023-06-13 at 1.32.49 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/xc2TbUh4RoUmMvEYWQkdZK.png" mos="" align="middle" fullscreen="" width="1896" height="986" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>AMD&apos;s Sienna is optimized for Telco and Edge workloads but comes to market in the second half of the year. </p><p>AMD&apos;s Forrest Norrod, MD&apos;s executive vice president and general manager of the Data Center Solutions Business Group, has come to the stage to share information about how the data center is evolving. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2118px;"><p class="vanilla-image-block" style="padding-top:56.37%;"><img id="uSKEw5ST9Yxs5fpguBXgGL" name="Screenshot 2023-06-13 at 1.40.22 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/uSKEw5ST9Yxs5fpguBXgGL.png" mos="" align="middle" fullscreen="" width="2118" height="1194" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>Citadel Securities has joined Norrod on the stage to talk about their shift in workloads to AMD&apos;s processors, powering a 35% increase in performance. They use over a million concurrent AMD cores. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2002px;"><p class="vanilla-image-block" style="padding-top:62.44%;"><img id="xgDrcbqWH4swcAdfVoCRXN" name="Screenshot 2023-06-13 at 1.40.42 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/xgDrcbqWH4swcAdfVoCRXN.png" mos="" align="middle" fullscreen="" width="2002" height="1250" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>Citadel also uses AMD&apos;s Xilinx FPGAs for its work in financial markets with its high frequency trading platform. It also uses AMD&apos;s low-latency solarflare networking.</p><p>AMD purchased Pensando to acquire DPU technology. Norrod explained how AMD is using these devices to reduce networking overhead in the data center. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2152px;"><p class="vanilla-image-block" style="padding-top:48.88%;"><img id="2Bekm6M9VTMZaLzxC4H6ZE" name="Screenshot 2023-06-13 at 1.46.36 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/2Bekm6M9VTMZaLzxC4H6ZE.png" mos="" align="middle" fullscreen="" width="2152" height="1052" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p><br></p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1670px;"><p class="vanilla-image-block" style="padding-top:53.17%;"><img id="TZWHFMjQEbMdtd9K6zP3nJ" name="Screenshot 2023-06-13 at 1.47.01 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/TZWHFMjQEbMdtd9K6zP3nJ.png" mos="" align="middle" fullscreen="" width="1670" height="888" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1510px;"><p class="vanilla-image-block" style="padding-top:58.68%;"><img id="gv9twqcNv3ddu5kXGiA2cK" name="Screenshot 2023-06-13 at 1.47.06 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/gv9twqcNv3ddu5kXGiA2cK.png" mos="" align="middle" fullscreen="" width="1510" height="886" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1620px;"><p class="vanilla-image-block" style="padding-top:44.94%;"><img id="ogERTtkcA5x7MZJSNKkFCP" name="Screenshot 2023-06-13 at 1.48.00 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/ogERTtkcA5x7MZJSNKkFCP.png" mos="" align="middle" fullscreen="" width="1620" height="728" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>AMD&apos;s P4 DPU offloads networking overhead and improves server manageability. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1994px;"><p class="vanilla-image-block" style="padding-top:55.07%;"><img id="whEmV59bafDiAt9G6RXteS" name="Screenshot 2023-06-13 at 1.48.32 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/whEmV59bafDiAt9G6RXteS.png" mos="" align="middle" fullscreen="" width="1994" height="1098" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1422px;"><p class="vanilla-image-block" style="padding-top:49.79%;"><img id="FRN4SwpBewAszamDEbAedY" name="Screenshot 2023-06-13 at 1.49.27 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/FRN4SwpBewAszamDEbAedY.png" mos="" align="middle" fullscreen="" width="1422" height="708" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>AMD&apos;s Pensando SmartNICs are an integral part of the new data center architectures. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1444px;"><p class="vanilla-image-block" style="padding-top:44.74%;"><img id="6ynAXZLXzoh5RoJWYg247c" name="Screenshot 2023-06-13 at 1.50.02 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/6ynAXZLXzoh5RoJWYg247c.png" mos="" align="middle" fullscreen="" width="1444" height="646" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>The next step? Integrating P4 DPU offload into the network switch itself, thus providing services at the rack level. This comes as the Smart Switch they&apos;ve developed with Aruba Networks. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2320px;"><p class="vanilla-image-block" style="padding-top:51.29%;"><img id="VvTM343UrZsXtxYmtWUuu3" name="Screenshot 2023-06-13 at 1.52.05 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/VvTM343UrZsXtxYmtWUuu3.png" mos="" align="middle" fullscreen="" width="2320" height="1190" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>Lisa Su has come back to the stage to talk about AMD&apos;s broad AI silicon portfolio, including the Instinct MI300</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1828px;"><p class="vanilla-image-block" style="padding-top:43.33%;"><img id="khPcwJFcd7iFVfBKYed6JE" name="Screenshot 2023-06-13 at 1.53.39 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/khPcwJFcd7iFVfBKYed6JE.png" mos="" align="middle" fullscreen="" width="1828" height="792" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1504px;"><p class="vanilla-image-block" style="padding-top:43.48%;"><img id="kGh5oa4bsK9aM62dKXtw4N" name="Screenshot 2023-06-13 at 1.54.58 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/kGh5oa4bsK9aM62dKXtw4N.png" mos="" align="middle" fullscreen="" width="1504" height="654" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>Lisa Su outlined the massive market opportunity for the AI market driven by large language models (LLMs), causing the TAM to grow to around $150 billion. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2314px;"><p class="vanilla-image-block" style="padding-top:42.96%;"><img id="iwc2mz2BdGKszUbNF2SKTb" name="Screenshot 2023-06-13 at 1.57.04 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/iwc2mz2BdGKszUbNF2SKTb.png" mos="" align="middle" fullscreen="" width="2314" height="994" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1912px;"><p class="vanilla-image-block" style="padding-top:40.79%;"><img id="HaN2BoqcZ8gK37N7y8xrwV" name="Screenshot 2023-06-13 at 1.56.07 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/HaN2BoqcZ8gK37N7y8xrwV.png" mos="" align="middle" fullscreen="" width="1912" height="780" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>AMD Instinct GPUs are already powering many of the <a href="https://www.tomshardware.com/news/amd-now-powers-121-of-the-worlds-fastest-supercomputers">world&apos;s fastest supercomputers</a>. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1894px;"><p class="vanilla-image-block" style="padding-top:40.23%;"><img id="SvgoBVMrMiTs2yzBDDnVgh" name="Screenshot 2023-06-13 at 1.58.02 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/SvgoBVMrMiTs2yzBDDnVgh.png" mos="" align="middle" fullscreen="" width="1894" height="762" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>AMD President Victor Peng came to the stage to talk about the company&apos;s efforts around developing the software ecosystem. That&apos;s an important facet, as Nvidia&apos;s CUDA software has proven to be a moat. AMD plans to use an &apos;Open, Proven, and Ready&apos; philosophy for its AI software ecosystem development, which Peng is in charge of. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1518px;"><p class="vanilla-image-block" style="padding-top:44.66%;"><img id="2CDUruvbfvbxuzsBbPuwJN" name="Screenshot 2023-06-13 at 2.02.11 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/2CDUruvbfvbxuzsBbPuwJN.png" mos="" align="middle" fullscreen="" width="1518" height="678" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>Peng showed some of AMD&apos;s latest hardware efforts. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1980px;"><p class="vanilla-image-block" style="padding-top:61.62%;"><img id="jns8En9XJnB3NDkRjn2pnV" name="Screenshot 2023-06-13 at 2.03.18 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/jns8En9XJnB3NDkRjn2pnV.png" mos="" align="middle" fullscreen="" width="1980" height="1220" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>AMD&apos;s ROCm is a complete set of libraries and tools for its optimized AI software stack. Unlike the proprietary CUDA, this is an open platform.</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1726px;"><p class="vanilla-image-block" style="padding-top:45.42%;"><img id="ZkKWj8Ww8sP9usEit3aHXa" name="Screenshot 2023-06-13 at 2.04.02 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/ZkKWj8Ww8sP9usEit3aHXa.png" mos="" align="middle" fullscreen="" width="1726" height="784" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>AMD is continually optimizing the ROCm suite. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1896px;"><p class="vanilla-image-block" style="padding-top:35.86%;"><img id="9UU5NcsvVSp7T3mzPo676f" name="Screenshot 2023-06-13 at 2.04.45 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/9UU5NcsvVSp7T3mzPo676f.png" mos="" align="middle" fullscreen="" width="1896" height="680" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>PyTorch is one of the most popular AI frameworks in the industry, and they&apos;ve joined Peng on the stage to talk about their collaboration with ROCm. The new PyTorch 2.0 is nearly twice as fast as the previous version. AMD is one of the founding members of the PyTorch Foundation. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2194px;"><p class="vanilla-image-block" style="padding-top:58.07%;"><img id="wepKawayiHAvitwyLgh3K4" name="Screenshot 2023-06-13 at 2.06.27 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/wepKawayiHAvitwyLgh3K4.png" mos="" align="middle" fullscreen="" width="2194" height="1274" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>Here are details of PyTorch 2.0. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2144px;"><p class="vanilla-image-block" style="padding-top:40.39%;"><img id="W8ENJYsLtWSNyQ7J4SmYJe" name="Screenshot 2023-06-13 at 2.11.49 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/W8ENJYsLtWSNyQ7J4SmYJe.png" mos="" align="middle" fullscreen="" width="2144" height="866" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>AMD is shifting to talking about AI models, with Hugging Face joining Peng on the stage. AMD and Hugging Face announced a new partnership, optimizing their models for AMD CPUs, GPUs, and other AI hardware. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1944px;"><p class="vanilla-image-block" style="padding-top:44.44%;"><img id="nTFfhTQEraRo73eAErMZEZ" name="Screenshot 2023-06-13 at 2.11.03 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/nTFfhTQEraRo73eAErMZEZ.png" mos="" align="middle" fullscreen="" width="1944" height="864" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1928px;"><p class="vanilla-image-block" style="padding-top:56.43%;"><img id="GbNNo6bk3yWCKYqn76ykji" name="Screenshot 2023-06-13 at 2.12.32 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/GbNNo6bk3yWCKYqn76ykji.png" mos="" align="middle" fullscreen="" width="1928" height="1088" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>Lisa Su has returned to the stage, and now we expect to learn about the biggest announcement of the show: The <a href="https://www.tomshardware.com/news/new-amd-instinct-mi300-details-emerge-debuts-in-2-exaflop-el-capitan-supercomputer">Instinct MI300</a>. This is for training larger models, like LLMs behind the current AI revolution. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1666px;"><p class="vanilla-image-block" style="padding-top:48.98%;"><img id="a8eKbmEW2aduqpJyfg94Fg" name="Screenshot 2023-06-13 at 2.19.18 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/a8eKbmEW2aduqpJyfg94Fg.png" mos="" align="middle" fullscreen="" width="1666" height="816" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>SU is talking about the Instinct roadmap, and how the company previewed the MI300 with the CDNA 3 GPU architecture paired with 24 Zen 4 CPU cores, tied to 128GB of HBM3. This gives 8x more performance and 5x higher efficiency than the MI250. </p><p>146 billion transistors across 13 chiplets. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2288px;"><p class="vanilla-image-block" style="padding-top:48.95%;"><img id="qZq7ynBLt77wB8eey95PXo" name="Screenshot 2023-06-13 at 2.20.25 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/qZq7ynBLt77wB8eey95PXo.png" mos="" align="middle" fullscreen="" width="2288" height="1120" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>There will be a GPU-only MI300, the MI300X. This chip is optimized for LLMs. this delivers 192GB of HBM3, 5.2 TB/s of bandwidth, and 896 GB/s of Infinity Fabric Bandwidth. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2288px;"><p class="vanilla-image-block" style="padding-top:48.95%;"><img id="qZq7ynBLt77wB8eey95PXo" name="Screenshot 2023-06-13 at 2.20.25 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/qZq7ynBLt77wB8eey95PXo.png" mos="" align="middle" fullscreen="" width="2288" height="1120" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>And here&apos;s new chip. 153 billion transistors all in one package with 12 5nm chiplets. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1858px;"><p class="vanilla-image-block" style="padding-top:56.84%;"><img id="3a4CcZyTgkTKhB4k6MHefF" name="Screenshot 2023-06-13 at 2.22.27 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/3a4CcZyTgkTKhB4k6MHefF.png" mos="" align="middle" fullscreen="" width="1858" height="1056" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>MI300X offers 2.4X HBM density than the Nvidia H100 and 1.6X HBM bandwidth than the H100, meaning that AMD can run larger models than Nvidia&apos;s chips. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1716px;"><p class="vanilla-image-block" style="padding-top:39.63%;"><img id="wZS9fyvhV2sSytTTx5VebN" name="Screenshot 2023-06-13 at 2.23.42 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/wZS9fyvhV2sSytTTx5VebN.png" mos="" align="middle" fullscreen="" width="1716" height="680" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2424px;"><p class="vanilla-image-block" style="padding-top:50.91%;"><img id="5ArUEFPNDjxpub3n2q56RK" name="Screenshot 2023-06-13 at 2.23.11 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/5ArUEFPNDjxpub3n2q56RK.png" mos="" align="middle" fullscreen="" width="2424" height="1234" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>Lisa Su conducted a demo of the MI300X running a Hugging Face AI model. The LLM wrote a poem about San Francisco, where the event is taking place. This is the first time a model this large has been run on a single GPU. A single MI300X can run a model up to 80 billion parameters. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1662px;"><p class="vanilla-image-block" style="padding-top:44.28%;"><img id="dzD9XN53yTzJVM7PDEYafS" name="Screenshot 2023-06-13 at 2.24.21 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/dzD9XN53yTzJVM7PDEYafS.png" mos="" align="middle" fullscreen="" width="1662" height="736" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>This allows fewer GPUs for large language models, thus delivering cost savings. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2418px;"><p class="vanilla-image-block" style="padding-top:54.76%;"><img id="FH7HPBmEg8fbUv3DZ9KP8X" name="Screenshot 2023-06-13 at 2.25.01 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/FH7HPBmEg8fbUv3DZ9KP8X.png" mos="" align="middle" fullscreen="" width="2418" height="1324" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p><br></p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1718px;"><p class="vanilla-image-block" style="padding-top:44.00%;"><img id="ShYrcd6fHTj3pwxKHsjY6e" name="Screenshot 2023-06-13 at 2.26.08 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/ShYrcd6fHTj3pwxKHsjY6e.png" mos="" align="middle" fullscreen="" width="1718" height="756" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>SU also announced the AMD Instinct Platform, which has 8 MI300X in an industry-standard OCP design, offering a total of 1.5TB of HBM3 memory. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1924px;"><p class="vanilla-image-block" style="padding-top:36.17%;"><img id="iSTADmWEDokVyyervz4c8n" name="Screenshot 2023-06-13 at 2.27.25 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/iSTADmWEDokVyyervz4c8n.png" mos="" align="middle" fullscreen="" width="1924" height="696" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>MI300A, the CPU+GPU model, is sampling now. The MI300X and 8-GPU Instinct Platform will sample in the third quarter, and launch in the fourth quarter. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2090px;"><p class="vanilla-image-block" style="padding-top:39.81%;"><img id="htNhfFGKex8kEfYDqzxizA" name="Screenshot 2023-06-13 at 2.29.02 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/htNhfFGKex8kEfYDqzxizA.png" mos="" align="middle" fullscreen="" width="2090" height="832" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1778px;"><p class="vanilla-image-block" style="padding-top:45.44%;"><img id="mKmCL2rzae8yYfgxWBVWp5" name="Screenshot 2023-06-13 at 2.28.13 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/mKmCL2rzae8yYfgxWBVWp5.png" mos="" align="middle" fullscreen="" width="1778" height="808" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>Lisa Su wrapped up the presentation. Here&apos;s a few more wrap up slides. Stay tuned for our ongoing coverage over the coming hours. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2090px;"><p class="vanilla-image-block" style="padding-top:39.81%;"><img id="HwmeyD7jTbSnB2NkAsxqEN" name="Screenshot 2023-06-13 at 2.29.02 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/HwmeyD7jTbSnB2NkAsxqEN.png" mos="" align="middle" fullscreen="" width="2090" height="832" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2448px;"><p class="vanilla-image-block" style="padding-top:35.78%;"><img id="yYmAddHwzYmMx62QzNhLsE" name="Screenshot 2023-06-13 at 2.29.38 PM.png" alt="AMD AI" src="https://cdn.mos.cms.futurecdn.net/yYmAddHwzYmMx62QzNhLsE.png" mos="" align="middle" fullscreen="" width="2448" height="876" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: AMD)</span></figcaption></figure><p>The event has concluded, and you can see our overview with the live blog below, However, here are links to our deeper coverage of each topic:</p><p><a href="https://www.tomshardware.com/news/amd-expands-mi300-with-gpu-only-model-eight-gpu-platform-with-15tb-of-hbm3">AMD Expands MI300 With GPU-Only Model, Eight-GPU Platform with 1.5TB of HBM3</a></p><p><a href="https://www.tomshardware.com/news/amd-epyc-genoa-x-weilds-13-gb-of-l3-cache-96-cores">AMD EPYC Genoa-X Weilds 1.3 GB of L3 Cache, 96 Cores</a></p><p><a href="https://www.tomshardware.com/news/amd-details-epyc-bergamo-cpus-with-128-zen-4c-cores">AMD Details EPYC Bergamo CPUs With 128 Zen 4C Cores, Available Now </a></p><p><a href="https://www.tomshardware.com/news/amd-intros-ryzen-7000-pro-mobile-and-desktop-chips-ai-comes-to-pro-series">AMD Intros Ryzen 7000 Pro Mobile and Desktop Chips, AI Comes to Pro Series</a></p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Intel Claims Sapphire Rapids up to 7X Faster Than AMD EPYC Genoa in AI and Other Workloads ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/news/intel-claims-sapphire-rapids-up-to-7x-faster-than-amd-epyc-genoa-in-ai-and-other-workloads</link>
                                                                            <description>
                            <![CDATA[ Intel shared benchmarks showing up to a 7X speedup in AI workloads for its Sapphire Rapids Xeon Scalable chips over AMD's EPYC Genoa processors. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">azssDJ2Da3VddcqvVoDHYK</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/HwqS4uRxCdUkN7apdNYJ5K-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Mon, 12 Jun 2023 15:00:09 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 08:45:43 +0000</updated>
                                                                                                                                            <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                <author><![CDATA[ palcorn@outlook.com (Paul Alcorn) ]]></author>                    <dc:creator><![CDATA[ Paul Alcorn ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/RZRmFeQfPy3etHjBQitbGW.jpeg ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;As a teenager, Paul scraped up enough money to buy a 486-powered PC with a turbo button (yes, a turbo button). Back when floppies were still popular he was already chasing after the fastest spinners for his personal computer, which led him down the long and winding storage road, covering enterprise storage. His current focus is on consumer processors, though he still keeps a close eye on the latest storage news. In his spare time, you’ll find Paul hanging out with his kids or indulging his love of the Kansas City Chiefs and Royals.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/HwqS4uRxCdUkN7apdNYJ5K-1280-80.jpg">
                                                            <media:credit><![CDATA[Intel]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Sapphire Rapids vs EPYC Genoa]]></media:description>                                                            <media:text><![CDATA[Sapphire Rapids vs EPYC Genoa]]></media:text>
                                <media:title type="plain"><![CDATA[Sapphire Rapids vs EPYC Genoa]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/HwqS4uRxCdUkN7apdNYJ5K-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1280px;"><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="" name="sapphire rapids.jpg" alt="Sapphire Rapids" src="https://cdn.mos.cms.futurecdn.net/iiNk2U4dQBGHL76arrSYd9.jpg" mos="" align="middle" fullscreen="" width="1280" height="720" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Tom's Hardware)</span></figcaption></figure><p>Intel has shared a slew of new benchmarks of its <a href="https://www.tomshardware.com/news/intel-launches-sapphire-rapids-fourth-gen-xeon-cpus-and-ponte-vecchio-max-gpu-series">fourth-gen Xeon Scalable Sapphire Rapids</a> CPUs going head-to-head with <a href="https://www.tomshardware.com/reviews/amd-4th-gen-epyc-genoa-9654-9554-and-9374f-review-96-cores-zen-4-and-5nm-disrupt-the-data-center">AMD&apos;s fourth-gen EPYC Genoa</a> processors, claiming up to 7 times more performance in AI workloads when comparing two 32-core chips. Intel also touts higher performance under certain conditions, like when Sapphire Rapids&apos; in-built accelerators are brought into play, in a spate of standard general-purpose workloads. Intel&apos;s 56-core Xeon Max, the first x86 data center CPU with HBM memory, also takes on AMD&apos;s 96-core flagship in several HPC workloads, matching or exceeding AMD&apos;s bulkier chip. <br><br>Intel&apos;s performance comparisons come well after the company&apos;s launch of its Sapphire Rapids Xeons back in January of this year, but the company says its benchmark comparisons were delayed due to difficulties procuring AMD&apos;s competing EPYC Genoa chips, which launched in November of last year. The benchmarks come a day before <a href="https://ir.amd.com/news-events/press-releases/detail/1129/amd-to-showcase-next-generation-data-center-and-ai">AMD&apos;s AI and Data Center event</a> that we&apos;re flying out to cover, so we&apos;ll attempt to get AMD&apos;s feedback about Intel&apos;s benchmarks while we&apos;re at the event.<br><br>With a few shipping OEM systems powered by AMD&apos;s Genoa in hand, Intel has conducted a wide range of benchmarks in multiple types of workloads spanning AI, HPC, and general-purpose workloads, to present its view of the competitive landscape. However, as with all vendor-provided benchmarks, these should be approached with caution. Intel claims it enabled all rational optimizations for both its and AMD&apos;s silicon for these tests, but be aware that the comparisons can be a bit lopsided, which we&apos;ll call out where we see it. The price of the chips used for comparison are also lopsided, too. We&apos;ve included Intel&apos;s full test notes for the tested configurations in the relevant image albums below. With that, let&apos;s take a closer look at Intel&apos;s results. </p><h2 id="ai-workloads-intel-sapphire-rapids-xeon-vs-amd-epyc-genoa">AI Workloads: Intel Sapphire Rapids Xeon vs AMD EPYC Genoa</h2><p>For nearly every large organization, the question is no longer "if" or "when" they should deploy AI-driven applications into their deployments — the question is where and how. Yes, AI training remains the land of GPUs and various flavors of custom silicon, and we can expect Large Language Models (LLMs) to continue to rely upon those types of accelerators for the foreseeable future, but the majority of AI inference workloads still tend to run on CPUs. Given the quickening pace of AI infusion in the data center, the CPUs&apos; performance in various types of inference will only become more important in the years to come.<br><br>Intel has had its eyes on accelerating AI workloads since the debut of its DL (Deep Learning) Boost suite with its <a href="https://www.tomshardware.com/reviews/intel-cascade-lake-xeon-optane,6061-2.html">second-gen Cascade Lake Xeon Scalable</a> chips in 2019, which it claimed made them the first CPUs specifically optimized for AI workloads. Those chips came with support for new VNNI (Vector Neural Network Instructions) that optimized instructions for the smaller data types prized in AI applications. One of Intel&apos;s bedrock principles behind its AI strategy has been to use AVX-512 to vastly improve Xeon&apos;s performance and power efficiency in AI workloads by using VNNI and BF16. Intel&apos;s focus on AI acceleration features, including software optimizations, has expanded over the years to now include purpose-built AI acceleration engines on its Sapphire Rapids chips — if you&apos;re willing to pay the extra fee.</p><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/igMKujCVkVsbkPHp4VPtrY.jpg" alt="Sapphire Rapids Xeon vs AMD EPYC Genoa" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/PPn7GPgQAcnDquHUkYH2DU.jpg" alt="AMX AVX-512" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/6zZsFWv6AoNjMz7vUwqfSU.jpg" alt="AMX AVX-512" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/hUDHuhX9KwEigHVoAnHcmU.jpg" alt="AMX AVX-512" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/6Zn8uBWTKh7E98e4tNELxY.jpg" alt="Sapphire Rapids Xeon vs AMD EPYC Genoa" /><figcaption><small role="credit">Intel</small></figcaption></figure></figure><div ><table><thead><tr><th class="firstcol " >Model</th><th  >Price</th><th  >Cores/Threads</th><th  >Base/Boost (GHz)</th><th  >TDP</th><th  >L3 Cache (MB)</th><th  >Memory</th><th  >cTDP (W)</th></tr></thead><tbody><tr><td class="firstcol " >EPYC Genoa 9354</td><td  >$3,420 </td><td  >32 / 64</td><td  >3.25 / 3.8</td><td  >280W</td><td  >256</td><td  >12-Channel DDR5-4800</td><td  >240-300W</td></tr><tr><td class="firstcol " >SPR Xeon 8462Y+</td><td  >$5,945</td><td  >32 / 64</td><td  >2.8 / 4.1</td><td  >300W</td><td  >60 </td><td  >8-Channel DDR5-4800</td><td  >270-300W</td></tr></tbody></table></div><p>But a more important development lurks in the Sapphire Rapids silicon — Intel has now progressed to its new Advanced Matrix Extensions (AMX) x86 instructions, which deliver tremendous performance uplift in AI workloads by using a new set of two-dimensional registers called tiles. The Tile Matrix Multiply Unit (TMUL) that powers AMX is native to the Sapphire Rapids chips — you don&apos;t have to pay extra to use it like you do the dedicated AI accelerator engine — and leverages BF16 and INT8 to perform matrix multiply operations that can vastly enhance AI performance.<br><br>The benchmarks above leverage Intel&apos;s AMX, and <em>not</em> the optional in-built AI accelerator engine. Intel claims a 7X advantage over EPYC Genoa in ResNet34, a 34-layer object detection CNN model, using INT8 instructions at a batch size of 1 to measure latency — in this case, with an SLA of sub-100ms. Intel also claims a ~5.5X advantage in this same workload with a batched test. This model is trained in PyTorch but converted to the ONNX format.<br><br>Intel claims a ~3.3X advantage over AMD in ResNet50 (INT8 BS1) image classification with a sub-15ms SLA, and a 3X advantage in DLRM, a Deep Learning Recommendation Model, with PyTorch BF16 and INT8 in a batched workload.<br><br>We also see a ~5.5X advantage in BertLarge natural language processing with BF16, but that is versus Genoa with FP32, so it isn&apos;t an apples-to-apples test. Intel notes that BF16 datatypes were not supported with AMD&apos;s ZenDNN (Zen Deep Neural Network) library with TensorFlow at the time of testing, which leads to a data type mismatch in the BertLarge test. The remainder of the benchmarks used the same data types for both the Intel and AMD systems, but the test notes at the end of the above image album show some core-count-per-instance variations between the two tested configs -- we&apos;ve followed up with Intel for more detail [EDIT: Intel responded that they swept across the various ratios to find the sweet spot of performance for both types of chips].<br><br>Overall, Intel claims that its AMX acceleration provides huge speedups in performance with industry-standard frameworks, but it&apos;s also important to call out the efficiency claims. The second yellow bar for each benchmark quantifies Intel&apos;s performance-per-watt claims, an incredibly important metric in today&apos;s power-constrained data centers — particularly with rising power costs in some climes, like the EU. Intel claims AMX delivers massive efficiency advantages when comparing two chips with similar core counts, which is surprising in light of Genoa&apos;s more advanced process node that tends to give it an efficiency advantage. Yes, dedicated silicon, as we see for AVX-512 and AMX, can be costly in terms of die area, and, thus, overall cost, but the advantages are huge if the applications can leverage the accelerators appropriately. <br><br>Intel&apos;s 32-core Xeon Platinum 8462Y+ chip squares off with AMD&apos;s 32-core EPYC Genoa 9354, but be aware that while these are iso-core-count comparisons, Intel lists the 8462Y+ for $5,945 while AMD lists the 9354 for $3,420, so the Intel chip costs 74% more. That said, the list pricing from both vendors is usually not reflective of what customers (particularly Tier 1 customers) actually pay, so take the pricing as a fuzzy guideline.<br><br>AMD does tend to offer higher core count chips at any given price point in the product stack and has a higher peak core count of 96 compared to Intel&apos;s 56 cores. Intel stuck with a 32-core vs 32-core comparison here, with per-core software licensing fees being the company&apos;s rationale for why these remain comparable. In fairness, software licensing, and other server BOM costs, like DDR5 memory and GPUs/accelerators, do have an outsized impact on solution-level pricing.<br><br>Given the size of Intel’s AI performance advantage with the 32-core parts, it’s reasonably safe to assume that it can compete with higher core count EPYC chips in these AI workloads, even if saddled with a reasonable amount of subpar workload/power scaling as they move to their own higher core count parts. Much of this performance can be chalked up to Intel&apos;s efforts on software enablement.<br><br>Intel doesn’t have any benchmark comparisons with LLMs (of the smaller variety), largely due to the raw and rapidly-changing nature of the LLM landscape. However, the company does say it is seeing impressive results with bandwidth-hungry LLMs on its HBM-equipped Xeon Max models (more below), which could be interesting given GPU shortages. We’re told that LLM benchmarks with Xeon Max will come in the future.</p><h2 id="general-workloads-intel-sapphire-rapids-xeon-vs-amd-epyc-genoa">General Workloads: Intel Sapphire Rapids Xeon vs AMD EPYC Genoa</h2><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/qvEQAqWvMCERstrsPC55Qd.jpg" alt="Sapphire Rapids Xeon vs AMD EPYC Genoa" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/oUtks8N2NsNDc8bzmC9jMo.jpg" alt="SPEC " /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/zZouET9sxhuyziza4CNjVd.jpg" alt="Sapphire Rapids Xeon vs AMD EPYC Genoa" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/MMMuqSdUcMrQ2Ht3P8Rwhd.jpg" alt="Sapphire Rapids Xeon vs AMD EPYC Genoa" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/4xxbk49fS7mp6PCrbTKktd.jpg" alt="Sapphire Rapids Xeon vs AMD EPYC Genoa" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/GJWYj3fcuY7MeGv5YM3A9e.jpg" alt="Sapphire Rapids Xeon vs AMD EPYC Genoa" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/D4rtaZMW2miA3pQygH88Fe.jpg" alt="Sapphire Rapids Xeon vs AMD EPYC Genoa" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/yp9vRUatmDtbSbP3LeA4Jd.jpg" alt="Sapphire Rapids Xeon vs AMD EPYC Genoa" /><figcaption><small role="credit">Intel</small></figcaption></figure></figure><p>Here we see a standoff between the same two chips in a broader spate of general workloads. You&apos;ll note that Intel shows itself lagging Genoa in SPECint and SPECfp by large margins in efficiency and smaller margins in performance, but the company has recently begun de-emphasizing those industry-standard SPEC benchmarks because it feels the aging benchmark no longer represents real-world customer workloads -- that&apos;s actually not an uncommon viewpoint in the industry. Intel&apos;s take on SPEC is evidenced by the slideware they shared during the Sapphire Rapids briefings (second slide in above album). Intel says it is working on helping define the next generation of the venerable SPEC to make it more representative. For SPEC, Intel used the ICC compiler for Sapphire Rapids and AOCC for EPYC. The remainder of the benchmarks use &apos;mostly&apos; the GCC compiler for both types of chips.<br><br>Intel also trails in the stream triad memory benchmark, which isn&apos;t surprising given that Sapphire Rapids has eight memory channels while Genoa has 12 (due to its higher channel count, AMD has 50% more memory capacity at its disposal in all of these benchmarks). That disparity also gives AMD an advantage in several other memory-bound workloads, like HPCG and Ansyst Fluent/Mechanical (not shown). It&apos;s clear that Intel is avoiding memory-bound workloads in these comparisons, though we do see those types of workloads in the HPC section where the company employs Xeon Max for comparison.<br><br>Intel largely claims slight performance gains in these workloads but notes that some of the larger gains come from employing its on-chip accelerator engines that require <a href="https://www.tomshardware.com/news/intel-finalizes-intel-on-demand-pay-as-you-go-mechanism">an extra fee to unlock</a>. Intel used these engines in several of the workloads, marked in bronze on the horizontal axis, like SQL HammerDB, Gromacs, LAMMPs, NAMD, and others, to highlight the advantages of using the engines in tandem with applications that are tuned to exploit the advantages.<br><br>We haven&apos;t seen many benchmarks with these engines fully employed via software support, so it&apos;s clear that Intel is moving forward on the enablement front, and to good effect — at least according to its own benchmarks. Just be mindful that these accelerators, which speed AI, encryption/decryption, compression, data movement, and analytics, aren&apos;t available consistently across the Sapphire Rapids product stack and also cost extra.<br><br>There&apos;s also the matter of DPUs, too. These discrete accelerators can perform many of the same functions, such as encryption/decryption, compression, and data movement, at higher performance levels while also offloading the CPU, managing network traffic, and providing a separate control plane. Advanced DPU-augmented data center architectures aren&apos;t as widespread as the data center architectures that we consider &apos;traditional,&apos; but that means the relative value of Intel&apos;s on-die accelerator engines will vary by deployment.</p><h2 id="hpc-workloads-intel-xeon-max-vs-amd-epyc-genoa">HPC Workloads : Intel Xeon Max vs AMD EPYC Genoa</h2><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/T2DHrw5FUggMKhFiuJATRj.jpg" alt="Sapphire Rapids Xeon vs AMD EPYC Genoa" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/7AswpcXyenRf8ADcrawxYj.jpg" alt="Sapphire Rapids Xeon vs AMD EPYC Genoa" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/NZEXTs9kGB9xsooeSJbAgj.jpg" alt="Sapphire Rapids Xeon vs AMD EPYC Genoa" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/ZjWp6zVtq265twBkFq3Dpj.jpg" alt="Sapphire Rapids Xeon vs AMD EPYC Genoa" /><figcaption><small role="credit">Intel</small></figcaption></figure></figure><div ><table><thead><tr><th class="firstcol " >Model</th><th  >Price</th><th  >Cores/Threads</th><th  >HBM</th><th  >Base/Boost (GHz)</th><th  >TDP</th><th  >L3 Cache (MB)</th><th  >Memory</th><th  >cTDP (W)</th></tr></thead><tbody><tr><td class="firstcol " >EPYC Genoa 9654</td><td  >$11,805</td><td  >96 / 192</td><td  >n/a </td><td  >2.4 / 3.7</td><td  >360W</td><td  >384</td><td  >12-Channel DDR5-4800</td><td  >320-400W</td></tr><tr><td class="firstcol " >Xeon Max 9480</td><td  >$12,980</td><td  >56 / 112</td><td  >64 GB</td><td  >1.9 / 3.5</td><td  >350W</td><td  >112.5</td><td  >12-Channel DDR5-4800</td><td  >n/a</td></tr></tbody></table></div><p>Here we see Intel&apos;s 56-core Xeon Max, the first x86 data center chip with on-package HBM to be pushed into full production, face off with AMD&apos;s 96-core EPYC Genoa flagship. Intel claims the onboard memory gives its smaller-but-not-less-expensive chip the advantage over the EPYC processor in a range of HPC-centric workloads, but without on-board accelerators enabled (oddly, only the data streaming accelerators are available on the Xeon Max models). </p><p>Naturally, these benchmarks won&apos;t land without plenty of dispute - there&apos;s a whole slew of architecture-specific optimizations possible for AMD&apos;s chips that could extract more performance, particularly in heavily-optimized HPC environments - but the key takeaway here is that Intel claims its HBM-equipped CPUs can offer compelling advantages in HPC that rival AMD&apos;s core-heavy flagships.<br><br>It is worth noting that both power scaling and chip fabrics can become a constraining factor with higher core-count chips in these types of workloads. As such, it&apos;s conceivable that some of these workloads could shift to a more favorable outcome for AMD with a slightly less prodigious model, like its own 64- or 56-core Genoa’s. Also, Intel&apos;s chips here only use the HBM2e memory -- there is no DDR5 attached. As such, AMD&apos;s Genoa has a tremendous memory capacity advantage (1.5TB of DDR5 capacity vs 128GB of HBM2e capacity for Xeon Max).<br><br>AMD has taken somewhat of a different path of augmenting its chips with extra memory by 3D-stacking the L3 cache for its <a href="https://www.tomshardware.com/news/amd-launches-milan-x-with-3d-v-cache-epyc-7773x-with-768mb-l3-cache-for-dollar8800">Milan-X</a> processors, and we expect the company to announce its newer Genoa-X chips tomorrow at its event tomorrow. However, AMD gears Milan-X for certain technical workloads, as opposed to positioning it for the broader HPC market as Intel does for Xeon Max.</p><h2 id="tco-intel-sapphire-rapids-xeon-vs-amd-epyc-genoa">TCO: Intel Sapphire Rapids Xeon vs AMD EPYC Genoa</h2><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/gxzDmywF5EaX2LrDvVQWs4.jpg" alt="General Workloads: Intel Sapphire Rapids Xeon vs AMD EPYC Genoa" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/a9pmhHy8zDKNESoEtpoh95.jpg" alt="General Workloads: Intel Sapphire Rapids Xeon vs AMD EPYC Genoa" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/DSAZuLXFM25CrPnYZPYcM5.jpg" alt="General Workloads: Intel Sapphire Rapids Xeon vs AMD EPYC Genoa" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/xZ8w5M7oWP4393F2GJNti5.jpg" alt="General Workloads: Intel Sapphire Rapids Xeon vs AMD EPYC Genoa" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/ju4BjTnq4x9WKebsy2Gp36.jpg" alt="General Workloads: Intel Sapphire Rapids Xeon vs AMD EPYC Genoa" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/HR5gnadWyvBvxHh6QKFHo6.jpg" alt="General Workloads: Intel Sapphire Rapids Xeon vs AMD EPYC Genoa" /><figcaption><small role="credit">Intel</small></figcaption></figure></figure><p>Every vendor has its own take on how to calculate the Total Cost of Ownership (TCO), but they&apos;re all typically questionable -- overall TCO will vary so widely by deployment that it&apos;s truly hard to derive solid metrics that are indicative of broader trends.<br><br>Intel&apos;s take is that using the SPEC benchmark for deriving TCO values isn&apos;t indicative of real-world use cases, which we touched on briefly in the general workloads section above. As such, Intel provides a range of examples here for different types of deployments, and the associated savings of using Intel chips over AMD&apos;s EPYC. Some of these comparisons, like the QAT backup, aren&apos;t much better than using SPEC, so take them with a big grain of salt and be sure to check the configuration slides we&apos;ve included in the album.<br><br>Intel also points to an accelerating pace of deployment, with 200 designs of 450+ Sapphire Rapids design wins already shipping. Intel also points out that it already has cloud instances in <a href="https://cloud.google.com/blog/products/compute/c3-machine-series-on-intel-sapphire-rapids-now-ga">general availability at Google Cloud</a> (notably paired with its Mount Evans IPU/DPU), and preview instances already available at several other cloud providers, like AWS. In contrast, AMD has yet to have any publicly available Genoa instances in the US, preview or otherwise, at cloud providers (we are aware of public instances available in China). We&apos;ll inquire about the status of AMD&apos;s cloud efforts at its event tomorrow and update as necessary. </p><p>Finally, Intel reiterates that its recently-revised data center roadmap remains on track, <a href="https://www.tomshardware.com/news/intel-explains-falcon-shores-redefinition-shares-roadmap-and-first-details">which you can read about here</a>. We have a few questions still pending with Intel about the above benchmark test configurations, and will add more info as it becomes available.</p><iframe src="https://content.jwplatform.com/players/dBMx1ASv.html" id="dBMx1ASv" title="How to Choose a CPU" width="960" height="540" frameborder="0" scrolling="auto" allowfullscreen></iframe>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ AMD's EPYC 'Bergamo' and Zen 4c Detailed: Same as Zen 4, But Denser ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/news/amds-epyc-bergamo-and-zen-4c-detailed-same-as-zen-4-but-denser</link>
                                                                            <description>
                            <![CDATA[ AMD's Zen 4c retains the same logic design as Zen 4c, but it is implemented differently, allowing for higher core count. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">i846ynGWBemRtrDbhmtGx</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/Adi2jzmXDdYjeUJQhuLCrd-1280-80.png" type="image/png" length="0"></enclosure>
                                                                        <pubDate>Wed, 07 Jun 2023 18:43:29 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 09:51:04 +0000</updated>
                                                                                                                                            <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                <author><![CDATA[ ashilov@gmail.com (Anton Shilov) ]]></author>                    <dc:creator><![CDATA[ Anton Shilov ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/uMZ5kNphxA2Ut6whdLaSQV.png ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Anton Shilov has been in the PC industry since 1990s playing games, building PCs, and writing stories about pretty much everything that relates to PCs, Macs, smartphones, tablets, and even fab equipment. Over his career, he has worked at a variety of high-ranking websites, including AnandTech, EE Times, TechRadar, X-bit labs, and now Tom&#039;s Hardware. When Anton is not reading or writing about something high-tech, he is probably watching a good movie, playing a video game, or spending time with his family.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/png" url="https://cdn.mos.cms.futurecdn.net/Adi2jzmXDdYjeUJQhuLCrd-1280-80.png">
                                                            <media:credit><![CDATA[AMD]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[AMD]]></media:description>                                                            <media:text><![CDATA[AMD]]></media:text>
                                <media:title type="plain"><![CDATA[AMD]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/Adi2jzmXDdYjeUJQhuLCrd-1280-80.png" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>The always-increasing performance demands of cloud datacenters requires CPU developers to rethink their designs in a bid to deliver maximum performance per socket while confronting cost constraints set by slowing Moore&apos;s Law. <a href="https://www.tomshardware.com/news/amds-data-center-roadmap-eypc-genoa-x-siena-announced-turin-in-2024">AMD&apos;s EPYC &apos;Begamo&apos;</a> is the industry&apos;s first x86 cloud-native CPU that is based on the specially-tailored Zen 4c microarchitecture that maintains essentially the same feature set with the <a href="https://www.tomshardware.com/reviews/amd-ryzen-9-7950x-ryzen-5-7600x-cpu-review/3">Zen 4</a> microarchitecture while halving core size requirements, reports <a href="https://www.semianalysis.com/p/zen-4c-amds-response-to-hyperscale">SemiAnalysis</a>. </p><p>AMD&apos;s EPYC &apos;Bergamo&apos; processor packs 128 cores and sits in the same Socket SP5 as the <a href="https://www.tomshardware.com/reviews/amd-4th-gen-epyc-genoa-9654-9554-and-9374f-review-96-cores-zen-4-and-5nm-disrupt-the-data-center">96-core EPYC &apos;Genoa&apos;</a> CPU and has a similar 12-channel DDR5-4800 memory subsystem as well as uses the same I/O die (codenamed Floyd), meaning that it also has 128 PCIe Gen5 lanes and other peculiarities of SP5 products. Being a cloud-native <a href="https://www.tomshardware.com/reviews/glossary-soc-system-on-chip-definition,5890.html">system-on-chip</a> (SoC) — and, to some degree, a response to emerging Arm-based datacenter-grade SoCs from Ampere, Amazon, Google, and Microsoft — Bergamo&apos;s design was shaped by multiple factors, including efficiency, power usage, die size, and low total cost of ownership (TCO) rather than by the aim to deliver the maximum per-core performance. </p><div ><table><tbody><tr><td class="firstcol empty" ></td><td  >EPYC 9654</td><td  >EPYC 9754</td><td  >EPYC 9734</td></tr><tr><td class="firstcol " >Design</td><td  >Genoa</td><td  >Bergamo</td><td  >Bergamo</td></tr><tr><td class="firstcol " >Microarchitecture</td><td  >Zen 4/Persephone</td><td  >Zen 4c/Dionysus</td><td  >Zen 4c/Dionysus</td></tr><tr><td class="firstcol " >Cores/Threads</td><td  >96/192</td><td  >128/256</td><td  >112/224</td></tr><tr><td class="firstcol " >L1i Cache</td><td  >32KB</td><td  >32KB</td><td  >32KB</td></tr><tr><td class="firstcol " >L1d Cache</td><td  >32KB</td><td  >32KB</td><td  >32KB</td></tr><tr><td class="firstcol " >L2 Cache</td><td  >1MB</td><td  >1MB</td><td  >1MB</td></tr><tr><td class="firstcol " >Total L2 Cache</td><td  >96MB</td><td  >128MB</td><td  >112MB</td></tr><tr><td class="firstcol " >L3 Cache per CCX</td><td  >32MB</td><td  >16MB</td><td  >16MB</td></tr><tr><td class="firstcol " >Total L3 Cache</td><td  >384MB</td><td  >256MB</td><td  >256MB</td></tr><tr><td class="firstcol " >CCD</td><td  >Durango</td><td  >Vindhya</td><td  >Vindhya</td></tr><tr><td class="firstcol " >CCD Count</td><td  >12</td><td  >8</td><td  >8</td></tr><tr><td class="firstcol " >CCX per CCD</td><td  >1</td><td  >2</td><td  >2</td></tr><tr><td class="firstcol " >Cores per CCD</td><td  >8</td><td  >16</td><td  >14</td></tr><tr><td class="firstcol " >I/O Die</td><td  >Floyd</td><td  >Floyd</td><td  >Floyd</td></tr><tr><td class="firstcol " >Memory Channels</td><td  >12</td><td  >12</td><td  >12</td></tr><tr><td class="firstcol " >Rated Memory Speed</td><td  >DDR5-4800</td><td  >DDR5-4800</td><td  >DDR5-4800</td></tr><tr><td class="firstcol " >Memory Bandwidth</td><td  >460.8 GB/s</td><td  >460.8 GB/s</td><td  >460.8 GB/s</td></tr><tr><td class="firstcol " >PCIe 5.0 Lanes</td><td  >128</td><td  >128</td><td  >128</td></tr><tr><td class="firstcol " >TDP/Max TDP</td><td  >360W/400W</td><td  >360W/400W</td><td  >360W/400W</td></tr><tr><td class="firstcol " >Socket</td><td  >SP5</td><td  >SP5</td><td  >SP5</td></tr><tr><td class="firstcol " >Scalability</td><td  >2P</td><td  >2P</td><td  >2P</td></tr></tbody></table></div><p><br></p><p>On the microarchitecture level, Zen 4c retains the same design as <a href="https://www.tomshardware.com/news/amd-unveils-zen-4-cpu-roadmap-96-core-5nm-genoa-128-core-begamo">Zen 4</a>, including identical features and instructions-per-clock-performance, but they are configured and implemented in a drastically different way, SemiAnalysis claims.  When it comes to Zen 4c &apos;Dionysus&apos; cores, they are about 35.4% smaller compared to Zen 4 &apos;Persephone&apos; cores, according to SemiAnalysis. To achieve this, AMD had to implement a number of design tricks. The analysts believe: </p><ul><li>It reduced boost clock targets from 3.70 GHz to 3.10 GHz. This made timing closure simpler and decreased the need for extra buffer cells to meet relaxed timing constraints. Today's designs are often constrained by routing density and congestion, so lowering  frequency allows for tighter packing of signal pathways, enhancing the density of standard cells.</li><li>It lowered the number of physical partitions of a die and packed logic closer together, which made debugging and introducing fixes harder but reduced die size.</li><li>It used denser 6T dual-port SRAM cells for Zen 4c as opposed to 8T dual-port SRAM circuits for Zen 4 to reduce SRAM area. As a result, while Zen 4 and Zen 4c cores have similar L1 and L2 cache sizes, the area used by caches in case of Zen 4c is lower, but these caches also are not as fast as those inside Zen 4. </li><li>Finally, it removed through-silicon vias (TSVs) arrays for 3D V-Cache, to further save silicon. </li></ul><p>These were not the only methods of <a href="https://www.tomshardware.com/news/amd-threadripper-epyc-mcm-cost,35306.html">die area reduction</a> used by AMD. According to SemiAnalysis, AMD&apos;s Bergamo is based on eight Vindhya core complex dies (CCDs) that pack 16 Zen 4c cores (up from eight Zen 4 cores per CCD) — which is justified as cores got smaller, but which also impacts clock speed potential. Each CCD also features two eight-core core complexes (CCX) and 32MB of L3 cache, or 16MB per CCX. By contrast, each Zen 4 CCX has 32MB of L2, which greatly increases its size compared to Zen 4c CCX. </p><p>Overall, we could say that AMD&apos;s Zen 4c and Bergamo make design trajectory shift as the company needed to fit 128 Zen 4-class cores into the same 360W – 400W power envelope as Genoa. Reduced frequency targets, usage of denser SRAM cells, and cutting L3 per CCX in half certainly enabled AMD to increase its core count, but how that impacted per-core performance is something that we will still have to find out.</p><p>SemiAnalysis says that AMD is preparing to launch two <a href="https://www.tomshardware.com/news/amd-unveils-zen-4-cpu-roadmap-96-core-5nm-genoa-128-core-begamo">Bergamo processors</a> later this month: the 128-core EPYC 9754 and its slightly cut-down sibling, the 112-core EPYC 9734. Given that operators of exascale datacenters tend to have specific requirements for their deployments, we can only wonder how many custom and semi-custom Bergamo offerings AMD will eventuall produce, but for now two models are set to be introduced already next week.<br><br>"You are going to hear about this next week with Bergamo, which is a cloud-native optimized device with high-density and very good performance-per-watt in energy efficiency for cloud-native computing," said Dan McNamara, AMD&apos;s server business chief, at the Bank of America 2023 Global Technology Conference (via <a href="https://seekingalpha.com/article/4609848-advanced-micro-devices-inc-amd-presents-bank-of-america-2023-global-technology-conference">SeekingAlpha</a>).</p><iframe src="https://content.jwplatform.com/players/zYBgfFoA.html" id="zYBgfFoA" title="Buy the Right CPU" width="1920" height="1080" frameborder="0" scrolling="auto" allowfullscreen></iframe>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ LattePanda Sigma Review: Powerful Maker Desktop with Arduino Inside ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/reviews/lattepanda-sigma-review</link>
                                                                            <description>
                            <![CDATA[ The LattePanda Sigma provides a powerful package for makers. A 13th Gen Intel CPU, 16GB of DDR5 and fast PCIe 4.0 are the brains behind this maker centric machine. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">W8afVGW7ZPsXRpwirx9vkQ</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/KvP82cjbqd8D9tZDVUZo7n-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Mon, 29 May 2023 14:15:40 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 12:52:50 +0000</updated>
                                                                                                                                            <category><![CDATA[Maker and STEM]]></category>
                                                                                                                    <dc:creator><![CDATA[ Les Pounder ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/mZ2MebAz6hhKR6vLUDUbsc.jpg ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Les Pounder is a creative technologist and for seven years has created projects to educate and inspire minds both young and old. He has worked with the Raspberry Pi Foundation to write and deliver their teacher training programme &quot;Picademy&quot;.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/KvP82cjbqd8D9tZDVUZo7n-1280-80.jpg">
                                                            <media:credit><![CDATA[Tom&#039;s Hardware]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[LattePanda Sigma]]></media:description>                                                            <media:text><![CDATA[LattePanda Sigma]]></media:text>
                                <media:title type="plain"><![CDATA[LattePanda Sigma]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/KvP82cjbqd8D9tZDVUZo7n-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>The $648 (review configuration) LattePanda Sigma is a beast of a SBC (single board computer). Packaged deep under a dominating heatsink and fan is a 13th gen Intel I5 CPU, 16GB of DDR5 RAM and an Intel Iris XE GPU (that is good enough for light gaming).</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:4154px;"><p class="vanilla-image-block" style="padding-top:56.23%;"><img id="gA4bnUZwoo8SFBnyvhpWLm" name="comp1.jpg" alt="LattePanda Sigma" src="https://cdn.mos.cms.futurecdn.net/gA4bnUZwoo8SFBnyvhpWLm.jpg" mos="" align="middle" fullscreen="1" width="4154" height="2336" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/gA4bnUZwoo8SFBnyvhpWLm.jpg' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Tom's Hardware)</span></figcaption></figure><p>Almost a year ago we <a href="https://www.tomshardware.com/reviews/lattepanda-3-delta"><u>reviewed the LattePanda 3 Delta</u></a>, which was an Intel Celeron N5105 based system and onboard Arduino co-processor. We felt that it was the all-in-one desktop for makers. Providing a full x86 CPU and our choice of operating system, Arduino support, and it could play a decent game from the early 2010s. Fast forward to 2023 and the Sigma’s specifications blow the Delta out of the water. We get more RAM, better CPU and GPU and a plethora of upgrade options that use off the shelf components. Heck, the CPU and GPU upgrades mean we can play some games from 2022!</p><p>We put the LattePanda Sigma on the bench and tested how it performed as a maker desktop, and we also did some light gaming.</p><h2 id="lattepanda-sigma-versus-delta-specifications">LattePanda Sigma Versus Delta Specifications</h2><div ><table><thead><tr><th class="firstcol empty" ></th><th  >LattePanda Sigma</th><th  >LattePanda 3 Delta</th></tr></thead><tbody><tr><td class="firstcol " >Processor</td><td  >Intel Core i5-1340P</td><td  >Intel Celeron N5105</td></tr><tr><td class="firstcol " > </td><td  >Performance core max: 4.6 GHz</td><td  >2.0-2.9GHz Quad-Core, Four-Thread</td></tr><tr><td class="firstcol " > </td><td  >Efficient core max: 3.4 GHz</td><td  > </td></tr><tr><td class="firstcol " >GPU</td><td  >Intel Iris Xe Graphics 80 Execution Units, up to 1.45 GHz</td><td  >Intel UHD Graphics (Frequency: 450 - 800 MHz)</td></tr><tr><td class="firstcol " >RAM</td><td  >16GB, Dual-Channel LPDDR5 6400MHz</td><td  >LPDDR4 8GB 2933MHz</td></tr><tr><td class="firstcol " >Storage</td><td  >M.2 NVMe/SATA SSD (sold separately) 500GB WD Black SN770 for review</td><td  >64GB eMMC</td></tr><tr><td class="firstcol " >Connectivity</td><td  >M.2 Wireless Module (sold separately) Wi-Fi 6E AX211 for review</td><td  >Wi-Fi 6 @ 2.4/5 GHz</td></tr><tr><td class="firstcol " > </td><td  > </td><td  >Bluetooth 5.2</td></tr><tr><td class="firstcol " > </td><td  > </td><td  >Gigabit Ethernet</td></tr><tr><td class="firstcol " >GPIO</td><td  >6 x Analog Inputs</td><td  >12 x Analog Inputs</td></tr><tr><td class="firstcol " > </td><td  >Up to 13x Digital Input/Output (7 PWM)</td><td  >Up to 23x Digital Input/Output (7 PWM)</td></tr><tr><td class="firstcol " > </td><td  >1 x UART</td><td  >1 x UART</td></tr><tr><td class="firstcol " > </td><td  >1 x I2C</td><td  >1 x I2C</td></tr><tr><td class="firstcol " > </td><td  >1 x SPI</td><td  >1 x SPI</td></tr><tr><td class="firstcol " > </td><td  >1 x Audio Connector</td><td  >1 x Audio Connector</td></tr><tr><td class="firstcol " > </td><td  >1 x USB 2.0 Header</td><td  >1 x 4-Pin RS232 Header</td></tr><tr><td class="firstcol " > </td><td  >1 x CPU Fan</td><td  >1 x Fan Port (4 Pin 1.25mm PWM 5V</td></tr><tr><td class="firstcol " > </td><td  >1 x SATA Power</td><td  >1 x 4-Pin Header (Power and Switch)</td></tr><tr><td class="firstcol " > </td><td  >1 x COM (RS232/485)</td><td  > </td></tr><tr><td class="firstcol " > </td><td  >1 x 4-Pin Header (Power and Switch)</td><td  > </td></tr><tr><td class="firstcol " > </td><td  >eDP Connector</td><td  > </td></tr><tr><td class="firstcol " > </td><td  >Touch Panel Connector</td><td  > </td></tr><tr><td class="firstcol " > </td><td  >RTC Battery</td><td  > </td></tr><tr><td class="firstcol " >USB</td><td  >2 x USB3.2 Gen2 Type-A (10Gbps)</td><td  >2 x USB 3.2 Gen1 Type A</td></tr><tr><td class="firstcol " > </td><td  >2 x Thunderbolt™ 4 Type-C (40Gbps)</td><td  >1 x USB 3.2 Gen2 Type A　　　　　　　　1 x USB Type C, Supports PD, DP, USB 2.0</td></tr><tr><td class="firstcol " > </td><td  >2 x USB2.0 Type-A (480Mbps)</td><td  >1 x USB 2.0 Pin Header</td></tr><tr><td class="firstcol " >Display</td><td  >HDMI 2.1, up to 4096 x 2304 @ 60Hz</td><td  >1 x HDMI 2.0b: Up to 4096x2160 @ 60Hz HDR Support</td></tr><tr><td class="firstcol " > </td><td  >DP 1.4a via USB Type-C, up to 7680 x 4320 @ 60Hz</td><td  >1 x DP1.4: Up to 4096x2160 @ 60Hz HDR Support</td></tr><tr><td class="firstcol " > </td><td  >eDP 1.4b, up to 4096 x 2304 @ 120Hz</td><td  >1 x eDP : Extendable Touch Displays up to 1920*1080</td></tr><tr><td class="firstcol " >Expansion Slots</td><td  >1 x M.2 M Key: PCIe 3.0 x 4</td><td  >1 x M.2 M Key, PCIe 3.0 2x, Supports NVMe SSD </td></tr><tr><td class="firstcol " > </td><td  >1 x M.2 M Key: PCIe 4.0 x 4</td><td  >1 x M.2 B Key, PCIe 3.0 1x, Supports USB 2.0, USB 3.0, SATA, SIM</td></tr><tr><td class="firstcol " > </td><td  >1 x M.2 B Key: SATA III/PCIe 3.0 x 1, USB2.0, USB3.0, SIM</td><td  > </td></tr><tr><td class="firstcol " > </td><td  >1 x M.2 E Key: PCIe 3.0 x 1, USB2.0, Intel CNVio</td><td  > </td></tr><tr><td class="firstcol " > </td><td  >1 x Micro SIM Card Slot</td><td  > </td></tr><tr><td class="firstcol " >Co-Processor</td><td  >Atmel ATMEGA32U4 (Arduino Leonardo)</td><td  >Atmel ATMEGA32U4 (Arduino Leonardo)</td></tr><tr><td class="firstcol " >Power</td><td  >DC Jack Input: 19V DC</td><td  >DC Jack Input: 12V DC</td></tr><tr><td class="firstcol " > </td><td  >Type-C Input: 20V DC</td><td  >Type-C Input: 12/15V DC</td></tr><tr><td class="firstcol " >Dimensions</td><td  >146 x 102 x 25mm</td><td  >125 x 78 x 16mm</td></tr></tbody></table></div><h2 id="using-lattepanda-sigma">Using LattePanda Sigma</h2><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/8j78KKW34FUwEaEkKrKDNn.jpg" alt="LattePanda Sigma" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/YVuhnv8KZcVbwxGxaXD5Zn.jpg" alt="LattePanda Sigma" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/gjqoQxVpgghduJTwt6nSjn.jpg" alt="LattePanda Sigma" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/7YZuPYL9YFAEQhsJVrzS63.jpg" alt="LattePanda Sigma" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure></figure><p>The LattePanda Sigma is powered by a 13th generation Intel Raptor Lake CPU, the i5-1340P to be specific. This CPU has 12 cores in total: four performance cores (max turbo 4.6 GHz) and eight efficiency cores (max turbo 3.4 GHz). There are 16 threads available (via the e-cores). This mix of cores provides plenty of punch when we need it, and a good level of general performance. The more powerful CPU means that the Sigma is larger than the 3 Delta, which features an Intel Celeron N5105. It also means that the Sigma is way larger than a Raspberry Pi 4, approximately 2.5 times the area. </p><p>As the Sigma is an x86 based SBC, we are free to use Windows or a Linux distribution of our choice. Our review unit came with a 500GB <a href="https://www.tomshardware.com/reviews/wd-black-sn770-ssd-review"><u>WD Black SN770 NVMe SSD</u></a> with an unregistered version of Windows 11 pre-installed. LattePanda supplies a range of custom operating system images, but you can just install your own choice and tweak it to work.</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1050px;"><p class="vanilla-image-block" style="padding-top:69.24%;"><img id="S676KjdYc39VBgovSYaxDS" name="image003.png" alt="LattePanda Sigma" src="https://cdn.mos.cms.futurecdn.net/S676KjdYc39VBgovSYaxDS.png" mos="" align="middle" fullscreen="1" width="1050" height="727" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/S676KjdYc39VBgovSYaxDS.png' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Tom's Hardware)</span></figcaption></figure><p>Boot time for the LattePanda Sigma is fast. At 20.92 seconds the Sigma is a close second to the Raspberry Pi Compute Module 4 with eMMC which clocked in at 20 seconds. Raspberry Pi OS is a lighter OS than Windows 11, so the difference is remarkable given Windows 11’s relative “bloat”. </p><p>A fairer comparison would be Windows 11 on an NVMe drive with the LattePanda 3 Delta. Coming in at 70.13 seconds, the Delta was much slower than the Sigma. This is to be expected given that the Delta has a PCIe 3.0 interface, versus the PCIE 4.0 of the Sigma. We also compared the Raspberry Pi 4 (micro SD) boot time of 30 seconds, and Khadas VIM4’s 36.38 seconds boot for reference.</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2560px;"><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="ibba6Vo8YTErfVHdrKz6Mo" name="Ubuntu2.jpg" alt="LattePanda Sigma" src="https://cdn.mos.cms.futurecdn.net/ibba6Vo8YTErfVHdrKz6Mo.jpg" mos="" align="middle" fullscreen="1" width="2560" height="1440" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/ibba6Vo8YTErfVHdrKz6Mo.jpg' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Tom's Hardware)</span></figcaption></figure><p>We noticed that the PCIe 4.0 interface used for the main drive was able to keep up with our <a href="https://www.tomshardware.com/reviews/wd-black-sn850x-ssd-review-back-in-black"><u>WD Black SN850X</u></a>, with a constant read speed of just under 7GB/s when using Ubuntu 22.04.</p><p>We have an AMI BIOS which affords us a great deal of configuration. We can tweak almost every aspect of the Sigma, converting it into a low power desktop, or we can alter the CPU settings to grant us a little more computational power. </p><p>Storage options with the Sigma are condensed when compared to the Delta. Gone is the eMMC. Instead we have three M.2 PCIe slots. The main slot is for PCIe 4.0 NVMe, second is PCIe 3.0. The final slot is M.2 B Key and can be used with a SATA III drive or PCIe 3.0 x1.</p><p>All of these options are impressive for what is really a turbo-charged SBC. But whereas we had to manage our expectations with the Delta, the Sigma can be your desktop PC and the brains behind a robotics or machine learning project. The Arduino element is there to control the motors, sensors and other components that make the project move, but the Raptor Lake CPU is there to give your projects the brains.</p><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/8TntmkCz4Za9rhYZXEVQJk.jpg" alt="LattePanda Sigma" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/xixNK8fnoMpiuxNZrHf5dk.jpg" alt="LattePanda Sigma" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/sq9tTAb5cAKGCqtpwwYzTm.jpg" alt="LattePanda Sigma" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/P4QVowHrVbW8uKFhr6Jiqk.jpg" alt="LattePanda Sigma" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/iHyvtiX2Ls5jU2XrXz5nqn.jpg" alt="LattePanda Sigma" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/oLejFubWe7JAYHYN9tTKxn.jpg" alt="LattePanda Sigma" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/4m3tUzawMgGUUqUzqkBt4o.jpg" alt="LattePanda Sigma" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure></figure><p>Gaming is more than possible. The Delta saw a hard limit of mid 2010s era games, but with the Sigma we have an Intel Iris Xe GPU with 80 Execution Units running at up to 1.45 GHz. That is a considerable amount of power for an “SBC” and it means that we can push gaming a little farther. </p><p>We tested <em>Stray</em>, a 2022 indie game which sees the player investigating a mystery in a futuristic world. Oh and you are a cat. To get a constant 60 fps you’ll need to drop the resolution to <a href="https://www.tomshardware.com/reviews/what-is-hd,5745.html"><u>720p</u></a> and everything else to low. If you can survive 30 fps, then <a href="https://www.tomshardware.com/reviews/what-is-fhd-full-hd,5741.html"><u>1080p</u></a> with medium settings is possible, but your framerate will take a dip in congested areas. We noticed a large drop to 8 fps when the game loaded in a new area. </p><p>This prompted us to enter the BIOS and turn off energy saving features. This gave us a little more GPU power and our framerates hovered around 40 fps. As we said, 1080p 30 fps is the sweet spot for <em>Stray</em>. </p><p>We also tested <em>Warhammer 40,000 Boltgun</em>, a game that has just been released. This “boomer shooter” looks like the original Doom, but on modern hardware. It ran well at 1080p, most of the time way above 60fps. There were some dips, but if the fps counter wasn’t there, we would be hard pressed to notice. </p><p>How about something a little older? I went through my Steam library and pulled out the original <em>Call of Duty 4: Modern Warfare</em> and this is where I hit a small issue. Matching my monitor’s resolution of 2560 x 1440 was a breeze, as was using high quality textures. The issue was moving the player to the firing range caused the game to hang, every time! </p><p>The solution seemed to be running the game in safe mode, performing the player orientation and then turning everything back to my preferred settings. I was soon on a container ship in the middle of the ocean with Captain Price and co. If you want the best gaming performance, then you need to think outside of the box. </p><p>The USB-C connectors offer Thunderbolt 4, so with an external enclosure and one of the <a href="https://www.tomshardware.com/reviews/best-gpus,4380.html"><u>best GPUs</u></a> you can unlock plenty of potential. Another means is to use one of the M.2 slots and an Occulink connection with an external GPU. This would provide similar functionality to Thunderbolt 4. <a href="https://youtu.be/mM3qtMG1s-Q"><u>YouTuber ETA Prime</u></a> has connected an Intel ARC A750 to the LattePanda Sigma using Occulink and has seen remarkable results.</p><h2 id="design-of-lattepanda-sigma">Design of LattePanda Sigma</h2><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/gA4bnUZwoo8SFBnyvhpWLm.jpg" alt="LattePanda Sigma" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/Qk4D6Ps2U9h4UghYyjmM.jpg" alt="LattePanda Sigma" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure></figure><p>There is no denying that the LattePanda Sigma is a beast of an SBC. It is more like a Mini PC than a true SBC. Dominating the top of the Sigma is a large heatsink and fan. It’s so large, in fact, that ports and pins are cut out of it for easier access. The bulk does not mean that the Sigma is undesirable. All of the ports are located on the long sides, and on the short sides are pinouts for SATA, USB, fans and even a front panel connection. Flipping the Sigma over and we are greeted to a large heatsink.</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:4199px;"><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="8CLyKEGhTWBpqjWazpZKL3" name="underside.jpg" alt="LattePanda Sigma" src="https://cdn.mos.cms.futurecdn.net/8CLyKEGhTWBpqjWazpZKL3.jpg" mos="" align="middle" fullscreen="1" width="4199" height="2362" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/8CLyKEGhTWBpqjWazpZKL3.jpg' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Tom's Hardware)</span></figcaption></figure><p>Removing the four screws and we find the pre-installed 500GB NVMe drive in the PCIe 4.0 slot. We also find the Intel Wi-Fi / Bluetooth card which we included in our review unit. The underside of the Sigma is well designed, with plenty of space for adding drives, and direct contact between the drives and the heatsink.</p><p>On the same heatsink are four screw holes, which do not appear to conform to a VESA mount. These screw holes can be used to mount the Sigma to a fixed point, but you’ll need to work out your own fixing solution, perhaps something using the <a href="https://www.tomshardware.com/best-picks/best-3d-printers">best 3D printers?</a></p><h2 id="cooling-lattepanda-sigma">Cooling LattePanda Sigma</h2><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/PNWsu2tKgyALewAFCSE2tm.jpg" alt="LattePanda Sigma" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/Qk4D6Ps2U9h4UghYyjmM.jpg" alt="LattePanda Sigma" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/Qaz86YSYkUh78xzcr4nQp.jpg" alt="LattePanda Sigma" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure></figure><p>The Intel i5-1340P Raptor Lake CPU uses Intel 7 lithography and is designed with low power / mobile devices in mind. As the Intel i5-1340P is a much more powerful processor than the N5105 of the Delta, we can expect to see a higher temperature.</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1050px;"><p class="vanilla-image-block" style="padding-top:69.24%;"><img id="L49bABrJ5VUjUEHjt8MR2S" name="image001.png" alt="LattePanda Sigma" src="https://cdn.mos.cms.futurecdn.net/L49bABrJ5VUjUEHjt8MR2S.png" mos="" align="middle" fullscreen="1" width="1050" height="727" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/L49bABrJ5VUjUEHjt8MR2S.png' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Tom's Hardware)</span></figcaption></figure><p>We tested the Sigma and Delta using Windows 11, y-cruncher and a PinePower 65W USB C power outlet with realtime power metrics. The Delta hit a max temperature of 80 degrees Celsius. The Sigma, well the performance cores hit 100°C and the efficiency cores hit a high of 88°C. Luckily the included beefy heatsink and fan are whisper quiet, unlike other SBC cooling fans we have tested.</p><p>The idle temperature for the Sigma was 25°C compared to the Delta’s 41°C. We tested the idle temps by leaving the board idling for 10 minutes. So the take away from this test is that the Sigma can really heat up when under load.</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1050px;"><p class="vanilla-image-block" style="padding-top:69.24%;"><img id="u35j4qpCTWvKyx3n4cZG8S" name="image002.png" alt="LattePanda Sigma" src="https://cdn.mos.cms.futurecdn.net/u35j4qpCTWvKyx3n4cZG8S.png" mos="" align="middle" fullscreen="1" width="1050" height="727" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/u35j4qpCTWvKyx3n4cZG8S.png' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Tom's Hardware)</span></figcaption></figure><p>According to its datasheet, the Intel i5-1340P chip runs between 28 and 64W, but in our tests, we noted that at idle, the Sigma pulled 6W. Under stress, via y-cruncher we pushed the LattePanda Sigma to pull 66W! How does that compare to the Delta? At idle, the delta pulled 4.56W, under stress 19.76W. Again this all boils down to the i5-1340P CPU.</p><p>Let&apos;s look at the power consumption. Under stress, the LattePanda Sigma consumes 10 times more power than the Raspberry Pi 4 and Khadas VIM4 (60W versus 6W). If you are building a project with a power budget, for example robotics or off-grid data collection, then perhaps the Raspberry Pi or Khadas VIM4 is more applicable.</p><p>If your power budget needs to be even lower, perhaps a microcontroller such as the<a href="https://www.tomshardware.com/reviews/raspberry-pi-pico-w"> Raspberry Pi Pico W</a> is a better option. That said, the extra power consumption can be factored into your build and if you really need that much processing power in a portable form factor, the Sigma packs a real punch.</p><h2 id="lattepanda-sigma-gpio">LattePanda Sigma GPIO</h2><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:3715px;"><p class="vanilla-image-block" style="padding-top:56.23%;"><img id="M8NbwpdpnAXvhhTgxmAE3k" name="Arduino1.jpg" alt="LattePanda Sigma" src="https://cdn.mos.cms.futurecdn.net/M8NbwpdpnAXvhhTgxmAE3k.jpg" mos="" align="middle" fullscreen="1" width="3715" height="2089" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/M8NbwpdpnAXvhhTgxmAE3k.jpg' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Tom's Hardware)</span></figcaption></figure><p>The GPIO of the LattePanda Sigma is different to that of the Delta. We get less GPIO pins than the Delta, but what we get is pretty much an Arduino Uno in a different form factor. The GPIO is for the onboard Arudino Leonardo compatible coprocessor. It seems that an Arduino compatible co-processor is quite useful for Intel based SBCs. The <a href="https://www.tomshardware.com/reviews/lattepanda-3-delta">LattePanda 3 Delta</a> had its own (and a breakout for RS232 and audio) as does <a href="https://www.tomshardware.com/reviews/seeed-odyssey-x86j4105">Seeed’s Odyssey.</a></p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1168px;"><p class="vanilla-image-block" style="padding-top:76.03%;"><img id="nAkriC5fhc9KXmQq3yP9Ak" name="board.jpg" alt="LattePanda Sigma" src="https://cdn.mos.cms.futurecdn.net/nAkriC5fhc9KXmQq3yP9Ak.jpg" mos="" align="middle" fullscreen="1" width="1168" height="888" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/nAkriC5fhc9KXmQq3yP9Ak.jpg' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Tom's Hardware)</span></figcaption></figure><p>The double row of headers has a pinout printed on its side. Reading the pinout was simple and clear, in fact we prefer it to the Delta which saw its heatsink get in the way.</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:4342px;"><p class="vanilla-image-block" style="padding-top:56.26%;"><img id="5UXconHs5nSXLtUP7hFkF" name="np1.jpg" alt="LattePanda Sigma" src="https://cdn.mos.cms.futurecdn.net/5UXconHs5nSXLtUP7hFkF.jpg" mos="" align="middle" fullscreen="1" width="4342" height="2443" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/5UXconHs5nSXLtUP7hFkF.jpg' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Tom's Hardware)</span></figcaption></figure><p>Controlling the Arduino GPIO is possible using the pre-installed Arduino IDE, an older version of the IDE (1.8.19) which works, but would’ve liked to have seen v2.0 onwards. In fact, we installed the latest Arduino IDE and set the board type to Leonardo, but the IDE would not upload to the board. We attempted to install the board, but alas it didn’t work. Not a massive loss, but the latest Arduino IDE is leaps and bounds over its predecessors. </p><p>Using the pre-installed IDE, we tested the Arduino GPIO with the humble LED, blinking the LED every half second. With that success under our belt, we connected a one meter length of WS2812B NeoPixels and installed the appropriate libraries. Moments later, colors erupted from the chain of RGB LEDs.</p><p>This GPIO is a better compromise than the Delta, and for Raspberry Pi alternatives, it is pretty good. Other Raspberry Pi alternatives have attempted to ape (hardware and software) the Raspberry Pi format, and they have varying levels of success. By using a simple pinout form factor, while retaining compatibility with Arduino code and components, the LattePanda Sigma provides the GPIO access that we need. Sure the pinout isn’t Arduino shield compatible, but we can use a few wires to bridge the gap.</p><h2 id="lattepanda-sigma-linux-performance">LattePanda Sigma Linux Performance</h2><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/fRVGLEYDFnezp5CGU4rGDo.jpg" alt="LattePanda Sigma" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/ibba6Vo8YTErfVHdrKz6Mo.jpg" alt="LattePanda Sigma" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure></figure><p>If Windows isn’t your thing, we hear you. Linux is generally a better fit for SBCs and so we installed the latest LTS (Long Term Support) release of Ubuntu 22.04.2 then fully updated the OS. Our installation was contained on a 1TB WD_Black SN850X  NVMe SSD so that our previous Windows installations remained untouched. </p><p>We’d love to say that “Ubuntu just worked”, and while there were no installation issues and it detected our hardware correctly, there was an issue that existed between 22.04 and 23.04. The issue was that the live USB failed to fully boot, complaining of “unable to find a medium containing a live file system.”</p><p>A quick Google search revealed that this has been a problem for other computers. The solution? Weirdly it was to remove the live USB during the boot process (just as the Ubuntu logo flashes on the screen) for two seconds, then put it back in. Yes, that worked. I installed the latest Arduino IDE and hit the same Arduino IDE issue as Windows. So I followed the LattePanda 3 Delta guide to configure the LattePanda Leonardo board, but this only works with the older Arduino IDE. Suffice to say I was able to configure the board with Arduino 1.8.19 and complete a series of GPIO tests. </p><p>Ubuntu 22.04.2 is a slightly lighter OS than Windows 11. It felt no different than Windows 11 for its responsiveness,largely down to the powerful Intel CPU and the generous 16GB of DDR5 RAM. We could happily sit down and use Linux on the Sigma for our general work and to write code. We’d leave the gaming side of things to Windows as even after installing the latest drivers, configuring Steam to use Proton and then downloading shaders, both Stray and Warhammer: Boltgun failed to launch.</p><h2 id="lattepanda-sigma-versus-lattepanda-3-delta-versus-raspberry-pi-4">LattePanda Sigma versus LattePanda 3 Delta versus Raspberry Pi 4</h2><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:4171px;"><p class="vanilla-image-block" style="padding-top:56.27%;"><img id="8HA3a2PF9a5FQGHdxsWfgm" name="comp2.jpg" alt="LattePanda Sigma" src="https://cdn.mos.cms.futurecdn.net/8HA3a2PF9a5FQGHdxsWfgm.jpg" mos="" align="middle" fullscreen="1" width="4171" height="2347" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/8HA3a2PF9a5FQGHdxsWfgm.jpg' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Tom's Hardware)</span></figcaption></figure><p>The Raspberry Pi 4 is, like it or not, the benchmark from which other SBCs are measured. Sure it&apos;s not a desktop replacement and the hardware package is now five years old (pandemics and global supply chain issues artificially extended the shelf life of the Pi 4), but it is a good all-rounder from which we can measure.</p><p>The LattePanda 3 Delta is much more powerful than the Pi 4; we proved that in our review. But the Sigma screams past them both in terms of raw performance, as it should given the 13th gen Intel CPU and 16GB of DDR5. But this performance comes at a price, around $648 for our review configuration. This is just over double the price of the LattePanda 3 Delta and for $648 we can buy eight Raspberry Pi 4 8GB at non-scalper prices.</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:4038px;"><p class="vanilla-image-block" style="padding-top:56.24%;"><img id="Q2eMJntdW42KixpXdBma6m" name="comp3.jpg" alt="LattePanda Sigma" src="https://cdn.mos.cms.futurecdn.net/Q2eMJntdW42KixpXdBma6m.jpg" mos="" align="middle" fullscreen="1" width="4038" height="2271" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/Q2eMJntdW42KixpXdBma6m.jpg' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Tom's Hardware)</span></figcaption></figure><p>What about the Jetson Orin Nano? The $499 Jetson Orin Nano is a close contender with an Nvidia GPU featuring 32 Tensor Cores, a six-core Arm A78AE v8.2 64-bit CPU and 8GB of LPDDR5. But we have to reserve our judgment until our review is complete. We had to postpone the review due to software issues at the time of its release.</p><h2 id="bottom-line">Bottom Line</h2><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:4180px;"><p class="vanilla-image-block" style="padding-top:56.27%;"><img id="KvP82cjbqd8D9tZDVUZo7n" name="hero.jpg" alt="LattePanda Sigma" src="https://cdn.mos.cms.futurecdn.net/KvP82cjbqd8D9tZDVUZo7n.jpg" mos="" align="middle" fullscreen="1" width="4180" height="2352" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/KvP82cjbqd8D9tZDVUZo7n.jpg' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Tom's Hardware)</span></figcaption></figure><p>If you need lots of computation power and a GPIO then the LattePanda Sigma is a contender for your cash. You will need to justify the spend as $648 is a lot of cash for what is essentially a mini PC with an embedded Arduino. That said, the package is sublime and clearly well thought out.</p><p>The $648 price tag is initially hard to swallow but again this isn’t just a replacement for the Raspberry Pi, it is a desktop computer in a slightly larger SBC form factor. You could happily use this machine for day-to-day work, while using less electricity than on a traditional desktop. Or you can embed it into a robotics / autonomous / AI build and harness all of the CPU cores to perform complex operations while on the move.</p><p>Arduino compatibility is still the icing on the cake for the LattePanda machines. It is easy to use and works with the many thousands of libraries available in the Arduino ecosystem. Sure, we can’t directly use Arduino shields, but unless you have bought into that system, you aren’t going to miss them.</p><p>The LattePanda Sigma is a revolution compared to the Raspberry Pi 4. Compared to the LattePanda 3 Delta, it is an evolution, and one that will entice makers craving more power for their builds. The Sigma is the new maker’s desktop, for makers that need the extra horsepower.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ China's Powerstar CPU Seemingly 'Confirmed' as Intel Silicon via Geekbench ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/news/chinas-powerstar-cpu-seemingly-confirmed-as-intel-silicon-via-geekbench</link>
                                                                            <description>
                            <![CDATA[ Chinese firm PowerLeader launched its first Powerstar CPU earlier this month, but now we are more certain it is a rebranded Intel Comet Lake chip. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">cFJCZLo5iKv3k8VzRAc4jX</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/UebiKbpgciLtHoYoy2ATCV-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Fri, 26 May 2023 12:13:39 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 08:56:19 +0000</updated>
                                                                                                                                            <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                                    <dc:creator><![CDATA[ Mark Tyson ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/56vqMYLDaKRHPhHZgbADFR.jpg ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Mark&#039;s enthusiasm for computers dampened at an early age by the rubber-keyed Sinclair Spectrum 48K and feelings of Commodore 64 envy. However, in the mid-80s, hope in a digital future was rekindled by the purchase of an Atari 520 STe. Since that time Mark has used a multitude of computers for fun and professional endeavors. He often owned both Macs and PCs but went cold on the former after OS9 was killed off, and warmed to the latter with the introduction of Windows XP.&lt;br&gt;
&lt;br&gt;
Early work years were spent in artwork and reprographics but in the late noughties, Mark started to blog about computers, Taiwanese food culture, and guitar design. This activity led to a full-time position writing about breaking PC tech news for HEXUS, for the best part of a decade. When HEXUS was abruptly closed, Mark helped with the foundation of Club386, before finding a new home at Tom&#039;s Hardware.&lt;br&gt;
&lt;br&gt;
When not wearing through the keycap legends on his PC keyboards, Mark can be found wandering the computer malls of Taiwan&#039;s neon-lit conurbations and enjoying local and international cuisine.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/UebiKbpgciLtHoYoy2ATCV-1280-80.jpg">
                                                            <media:credit><![CDATA[ITHome]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Powerstar P3-01105]]></media:description>                                                            <media:text><![CDATA[Powerstar P3-01105]]></media:text>
                                <media:title type="plain"><![CDATA[Powerstar P3-01105]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/UebiKbpgciLtHoYoy2ATCV-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>The Chinese Powerstar P3-01105 CPU has popped up in the <a href="https://twitter.com/BenchLeaks/status/1661907980076417025">Geekbench v5</a> online result browser. Importantly, the benchmark&apos;s system information section appears to confirm that this 4C / 8T chip is quite certainly Intel-produced, as this Socket 1200 LGA part has an A0653 (GenuineIntel) CPUID, and purportedly uses the Intel Comet Lake architecture.</p><p><a href="https://www.tomshardware.com/news/chinese-powerstar-p3-01105-cpu-is-a-dead-ringer-for-the-intel-core-i3-10105">Earlier this month we reported</a> on the newly launched first generation Powerstar P3-01105 CPU. China&apos;s PowerLeader framed the chip as a home-grown product using the "storm core" architecture, while remaining x86 compatible. However, there was quite a weight of evidence already pointing to the &apos;Chinese&apos; chip being a rebranded Intel Core i3-10105(F) Comet Lake CPU with 4C / 8T.</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1738px;"><p class="vanilla-image-block" style="padding-top:49.83%;"><img id="" name="CPUs-compared.jpg" alt="Powerstar P3-01105" src="https://cdn.mos.cms.futurecdn.net/29SYgsA2NeeQXLSXXP5PJV.jpg" mos="" align="middle" fullscreen="1" width="1738" height="866" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/29SYgsA2NeeQXLSXXP5PJV.jpg' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: ITHome)</span></figcaption></figure><p><strong>Earlier evidence of the Powerstar / Intel Comet Lake similarities included the following:</strong></p><ul><li>Physical lugged heatspreader design, and other physical characteristics</li><li>Physical substrate design is identical, as far as we can see</li><li>Silk screen print format on the IHS is the same</li><li>The PowerLeader processor name slightly jumbles Intel's: compare "10105" and "01105"</li><li>They are both marked as capable of a "3.70GHZ" base clock</li><li>The QR code on the upper right of the Powerstar P3-01105 PCB is said to match Intel's.</li></ul><p>The <em>new</em> evidence from Geekbench is probably more than enough for most people to be certain about the provenance of the Powerstar P3-01105 CPU. However, we still must retain some doubt, as pranksters fiddle with things like Geekbench system info reports just for fun.</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1250px;"><p class="vanilla-image-block" style="padding-top:73.60%;"><img id="CAUSXN6dGrULqd2htNTf4Z" name="powerleader-CPU-score.jpg" alt="Geekbench screenshot of Powerstar CPU result" src="https://cdn.mos.cms.futurecdn.net/CAUSXN6dGrULqd2htNTf4Z.jpg" mos="" align="middle" fullscreen="1" width="1250" height="920" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/CAUSXN6dGrULqd2htNTf4Z.jpg' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Future)</span></figcaption></figure><p>PowerLeader has the ambitious target of selling 1.5 million units of its Powerstar P3-01105 CPU. We think that the CPU being a &apos;Genuine Intel&apos; part can only help in this goal, as the "storm cores" touted at launch had no history, and even optimists would expect some glitches in an actual &apos;first gen&apos; product.</p><p>PC enthusiasts and DIYers in the west might now be thinking about sourcing Powerstar P3-01105 CPUs for budget builds. However, PowerLeader&apos;s launch suggests the chips will only be supplied within full systems. We shall have to see about that over the coming weeks / months.</p><p>As we have now seen the Powerstar surface in Geekbench, we can probably just wait a few weeks before some enterprising Chinese YouTuber (or Bilibili-er, or Weibo-er) shares some more in-depth information, tests, and benchmarks of the P3-01105 CPU.</p><p>In some ways PowerLeader&apos;s rebadging of something as complex and American as an Intel CPU, contrasts with the recent announcement that <a href="https://www.tomshardware.com/news/micron-products-banned-by-china-in-wake-of-cybersecurity-review">Micron memory products</a> have been banned from organizations connected to China&apos;s critical information infrastructure.</p><iframe src="https://content.jwplatform.com/players/dBMx1ASv.html" id="dBMx1ASv" title="How to Choose a CPU" width="960" height="540" frameborder="0" scrolling="auto" allowfullscreen></iframe>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Hackboard 2 Celeron N4020 Windows 11 SBC Launches at $199 ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/news/hackboard-2-celeron-n4020-windows-11-sbc-launches-at-dollar199</link>
                                                                            <description>
                            <![CDATA[ The Hackboard 2 is now available to the general public, but its Intel CPU is pretty old and low-powered, and it seems to have undergone some hefty price inflation. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">J5cDgZ23xy5ERbHyQp4odT</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/EhsRX87wxLZTJ3cLU27NJE-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Tue, 16 May 2023 18:06:29 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 09:51:37 +0000</updated>
                                                                                                                                            <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                                    <dc:creator><![CDATA[ Mark Tyson ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/56vqMYLDaKRHPhHZgbADFR.jpg ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Mark&#039;s enthusiasm for computers dampened at an early age by the rubber-keyed Sinclair Spectrum 48K and feelings of Commodore 64 envy. However, in the mid-80s, hope in a digital future was rekindled by the purchase of an Atari 520 STe. Since that time Mark has used a multitude of computers for fun and professional endeavors. He often owned both Macs and PCs but went cold on the former after OS9 was killed off, and warmed to the latter with the introduction of Windows XP.&lt;br&gt;
&lt;br&gt;
Early work years were spent in artwork and reprographics but in the late noughties, Mark started to blog about computers, Taiwanese food culture, and guitar design. This activity led to a full-time position writing about breaking PC tech news for HEXUS, for the best part of a decade. When HEXUS was abruptly closed, Mark helped with the foundation of Club386, before finding a new home at Tom&#039;s Hardware.&lt;br&gt;
&lt;br&gt;
When not wearing through the keycap legends on his PC keyboards, Mark can be found wandering the computer malls of Taiwan&#039;s neon-lit conurbations and enjoying local and international cuisine.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/EhsRX87wxLZTJ3cLU27NJE-1280-80.jpg">
                                                            <media:credit><![CDATA[Hackboard]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Hackboard 2 launch]]></media:description>                                                            <media:text><![CDATA[Hackboard 2 launch]]></media:text>
                                <media:title type="plain"><![CDATA[Hackboard 2 launch]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/EhsRX87wxLZTJ3cLU27NJE-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Hackboard today <a href="https://www.prnewswire.com/news-releases/hackboard-tackles-the-widening-digital-divide-and-iot-with-powerful-and-affordable-windows-and-intel-based-single-board-computer-sbc-with-4g-or-5g-connectivity-301825101.html">launched</a> the <a href="https://hackboard.com/product/hackboard2/">Hackboard 2</a>, a compact and affordable Wintel SBC. Key features of this 4.7 x 3.1 inches (120 x 80 mm) board are its <a href="https://www.intel.co.uk/content/www/uk/en/products/sku/197310/intel-celeron-processor-n4020-4m-cache-up-to-2-80-ghz/specifications.html">Intel Celeron N4020</a> dual-core CPU, its good selection of ports and connectivity, the licensed Windows 11 Pro OS, and its $199 price tag.</p><p>The Hackboard makers tout it as an ideal maker board for general x86 hobbyist projects, IoT projects, for work from home folk, for edge and embedded solutions, and more. In a press release, Mike Callow, Hackboard&apos;s co-founder and CEO said that the Hackboard 2 is also designed "to address the increasing worldwide challenge of the Digital Divide and the needs of education." Those are big asks for a 2C/2T 14nm Celeron-powered SBC.</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:797px;"><p class="vanilla-image-block" style="padding-top:68.26%;"><img id="BLo44DEF6s5ENMXr4UEKZE" name="hackboard-2-board.jpg" alt="Hackboard 2 launch" src="https://cdn.mos.cms.futurecdn.net/BLo44DEF6s5ENMXr4UEKZE.jpg" mos="" align="middle" fullscreen="" width="797" height="544" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Hackboard)</span></figcaption></figure><div ><table><thead><tr><th class="firstcol " > </th><th  ><p>Hackboard 2</p></th><th  ><p>Raspberry Pi 4 Model B 8 GB</p></th></tr></thead><tbody><tr><td class="firstcol " ><p>Processor</p></td><td  ><p>Intel Celeron N4020 Dual-Core at up to 2.8 GHz</p></td><td  ><p>Broadcom BCM 2711 Quad-Core Cortex-A72 SoC at 1.8 GHz</p></td></tr><tr><td class="firstcol " ><p>RAM</p></td><td  ><p>up to 8 GB DDR4</p></td><td  ><p>2GB, 4GB or 8GB LPDDR4</p></td></tr><tr><td class="firstcol " ><p>Storage</p></td><td  ><p>up to 512 GB eMMC</p></td><td  ><p>microSD card (sold separately)</p></td></tr><tr><td class="firstcol " ><p>Networking</p></td><td  ><p>Wi-Fi (1.73 Gb/s), Bluetooth 5.1, optional 4G and 5G</p></td><td  ><p>Wi-Fi (433 Mb/s, Bluetooth 5.0, Gigabit Ethernet, PoE</p></td></tr><tr><td class="firstcol " ><p>Ports</p></td><td  >3 x USB 3.0, USB-C, USB 2.0 header, speaker header, HDMI 1.4 supporting up to 4092 x 2160@30Hz, eDP connector, 2-pin fan header, 40-Pin GPIO</td><td  >2 USB 3.0 ports; 2 USB 2.0 ports, 2 × micro-HDMI ports, 4-pole stereo audio and composite video, 40 pin GPIO header</td></tr><tr><td class="firstcol " ><p>Power supply</p></td><td  ><p>included</p></td><td  ><p>sold separately</p></td></tr><tr><td class="firstcol " ><p>Battery backup</p></td><td  ><p>Small cell BIOS backup for up to two years</p></td><td  ><p>no</p></td></tr><tr><td class="firstcol " ><p>Heatsink</p></td><td  ><p>Aluminum Anodized Black</p></td><td  ><p>sold separately</p></td></tr><tr><td class="firstcol " ><p>OS support</p></td><td  ><p>Windows 10 & 11 Pro, Linux</p></td><td  ><p>Linux</p></td></tr><tr><td class="firstcol " ><p>OS can be updated</p></td><td  ><p>Both Windows and Linux</p></td><td  ><p>Linux</p></td></tr><tr><td class="firstcol " ><p>Dimensions</p></td><td  ><p>4.7 x 3.1 inches (120 x 80 mm)</p></td><td  ><p>3.4 x 2.2 inches (85 x 49 mm)</p></td></tr></tbody></table></div><p>Hackboard is working to put together some kits built around the Hackboard 2, featuring extras such as a case, a wireless keyboard / touchboard, a webcam, and a portable monitor. There are also optional 4G and 5G cellular modems to expand the connectivity options already on offer.</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:679px;"><p class="vanilla-image-block" style="padding-top:62.15%;"><img id="aY2HWJQE9dz5zBF4PNvBUE" name="hackboard-kit.jpg" alt="Hackboard 2 launch" src="https://cdn.mos.cms.futurecdn.net/aY2HWJQE9dz5zBF4PNvBUE.jpg" mos="" align="middle" fullscreen="" width="679" height="422" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Hackboard)</span></figcaption></figure><p>Regular readers may remember the Hackboard 2 from its <a href="https://www.tomshardware.com/news/intel-based-hackboard-2-priced-to-compete-with-raspberry-pi">crowdfunding stage</a>, way back in Dec 2020 / Jan 2021. However, this SBC is now available from a wide range of resellers, including RS Components, OKdo, Micro Center, Mouser, CrowdSupply, and Vilros.</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1152px;"><p class="vanilla-image-block" style="padding-top:69.62%;"><img id="trmSHavWLGHJhVTgHAybPE" name="hackboard-heatsink.jpg" alt="Hackboard 2 launch" src="https://cdn.mos.cms.futurecdn.net/trmSHavWLGHJhVTgHAybPE.jpg" mos="" align="middle" fullscreen="" width="1152" height="802" attribution="" endorsement="" class=""></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Hackboard)</span></figcaption></figure><p>Perhaps of some importance to the chance of success of the Hackboard 2 is the change in pricing. During the crowdfunding stage, there was an appealing $99 option, which is now gone. Now the cheapest model post-launch model is $175 with Debian Linux, or $199 with a Windows 11 Pro license. With the new price, the above <a href="https://www.tomshardware.com/uk/topics/raspberry-pi">Raspberry Pi</a> 4 comparison might not be as fair as it used to be. And there are <a href="https://www.amazon.com/Beelink-Desktop-Computer-Support-Ethernet/dp/B0BWJTRL3T/?th=1">full Windows systems with newer hardware available for less money</a>. Having said that, a supply / demand imbalance has affected the Pi in recent months and caused significant price inflation -- when stock is available. So for those looking for a project board who are inclined toward x86, the Hackboard 2 offers up an interesting alternative.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Chinese PC Maker Powerstar Rebrands Intel CPU as the P3-01105 ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/news/chinese-powerstar-p3-01105-cpu-is-a-dead-ringer-for-the-intel-core-i3-10105</link>
                                                                            <description>
                            <![CDATA[ This looks like another Chinese tech rebrand which is using slight-of-hand to claim that it is domestically developed. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">98aXpQvMDWK3wpUNNzjzLj</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/UebiKbpgciLtHoYoy2ATCV-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Sun, 07 May 2023 14:19:12 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 08:43:58 +0000</updated>
                                                                                                                                            <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                                    <dc:creator><![CDATA[ Mark Tyson ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/56vqMYLDaKRHPhHZgbADFR.jpg ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Mark&#039;s enthusiasm for computers dampened at an early age by the rubber-keyed Sinclair Spectrum 48K and feelings of Commodore 64 envy. However, in the mid-80s, hope in a digital future was rekindled by the purchase of an Atari 520 STe. Since that time Mark has used a multitude of computers for fun and professional endeavors. He often owned both Macs and PCs but went cold on the former after OS9 was killed off, and warmed to the latter with the introduction of Windows XP.&lt;br&gt;
&lt;br&gt;
Early work years were spent in artwork and reprographics but in the late noughties, Mark started to blog about computers, Taiwanese food culture, and guitar design. This activity led to a full-time position writing about breaking PC tech news for HEXUS, for the best part of a decade. When HEXUS was abruptly closed, Mark helped with the foundation of Club386, before finding a new home at Tom&#039;s Hardware.&lt;br&gt;
&lt;br&gt;
When not wearing through the keycap legends on his PC keyboards, Mark can be found wandering the computer malls of Taiwan&#039;s neon-lit conurbations and enjoying local and international cuisine.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/UebiKbpgciLtHoYoy2ATCV-1280-80.jpg">
                                                            <media:credit><![CDATA[ITHome]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Powerstar P3-01105]]></media:description>                                                            <media:text><![CDATA[Powerstar P3-01105]]></media:text>
                                <media:title type="plain"><![CDATA[Powerstar P3-01105]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/UebiKbpgciLtHoYoy2ATCV-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>On Saturday, Chinese computer manufacturer PowerLeader launched a &apos;new&apos; processor and compact desktop PC. During the press conference, PowerLeader talked about its first generation Powerstar P3-01105 CPU, featuring the "storm core" architecture, described as "extremely high performance," x86 compatible, and offering great support for Windows. And so it should, as it looks very much like a rebranded <a href="https://www.intel.co.uk/content/www/uk/en/products/sku/201894/intel-core-i310105-processor-6m-cache-up-to-4-40-ghz/specifications.html">Intel Core i3-10105</a>(F) Comet Lake CPU with 4C / 8T.</p><p>In Chinese tech news media coverage, such as at <a href="https://www.ithome.com/0/691/023.htm">ITHome</a>, there was no hint given about a partnership with Intel on this rebrand. Instead, we have a quote from a PowerLeader execs talking about how the first gen Powerstar chips were "specially designed for daily desktop users, and are suitable for government, education, energy, industry, finance, medical care, games, and retail, etc." </p><p>As well as the CPU, a new compact tower PC dubbed the PC PT620P, featuring the Powerstar P3-01105 CPU, was unveiled. A statement about this PC&apos;s capabilities provided a small hint that the Powerstar P3-01105 wasn&apos;t entirely domestic. According to the machine translation of a PowerLeader exec&apos;s statement, the new CPU "has extremely high performance, which is several times higher than that of the domestic CPU." There, it was admitted that this isn&apos;t a domestic CPU.</p><p>One of the last official blurb worth reporting is that PowerLeader says the CPU will be launched shortly, targeting annual CPU sales of 1.5 million units.</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1738px;"><p class="vanilla-image-block" style="padding-top:49.83%;"><img id="" name="CPUs-compared.jpg" alt="Powerstar P3-01105" src="https://cdn.mos.cms.futurecdn.net/29SYgsA2NeeQXLSXXP5PJV.jpg" mos="" align="middle" fullscreen="1" width="1738" height="866" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/29SYgsA2NeeQXLSXXP5PJV.jpg' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: ITHome)</span></figcaption></figure><h2 id="it-apos-s-an-intel-chip-sherlock">It&apos;s an Intel Chip, Sherlock</h2><p><a href="https://twitter.com/AnhPhuH/status/1655112995163496448">In response</a> to harukaze5719&apos;s Tweet about this Powerstar P3-01105 CPU, another Twitterer pointed out that what we are looking at is almost certainly an Intel Core i3-10105(F) Comet Lake CPU. The following clues convincingly point to this:</p><ul><li>Physical lugged heatspreader design, and other physical characteristics</li><li>Physical substrate design is identical, as far as we can see</li><li>Silk screen print format on the IHS is the same</li><li>The PowerLeader processor name slightly jumbles Intel's: compare "10105" and "01105"</li><li>They are both marked as capable of a "3.70GHZ" base clock</li><li>Last but not least, the QR code on the upper right of the Powerstar P3-01105 PCB is said to match Intel's.</li></ul><p>There seems to be a weight of evidence pointing to a rebrand, but we await further announcements and third-party tests to ensure it. So please stay tuned for when the truth comes out.</p><p>So, why would PowerLeader rebrand an Intel Core i3-10105? All we can find about the underlying reason for this sleight-of-hand with branding is that Chinese tech firms can benefit from attractive subsidies by developing and launching "domestic products." If that is true, it also explains how Innosilicon touted its Fantasy graphics cards as "domestic desktop GPUs," but later, we saw UK-based <a href="https://www.tomshardware.com/news/imagination-tech-discusses-its-return-to-the-high-performance-pc-gpu-market">ImgTec confirm</a> that they used the PowerVR architecture.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Intel Preps 2000W Coolers for Future Chips ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/news/intel-working-on-new-cooling-for-chips-up-to-2000w</link>
                                                                            <description>
                            <![CDATA[ Intel hints that it will be designing next-gen chips up to 2000W, and is aiming to get new cooling materials and technologies in place ahead of their arrival. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">ZeczaxA8aiAT9bPwNn7pKY</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/NvF5SJiif9rTomUFJRbNJ8-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Wed, 19 Apr 2023 17:32:46 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 12:56:34 +0000</updated>
                                                                                                                                            <category><![CDATA[Liquid Cooling]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                    <category><![CDATA[Cooling]]></category>
                                                                                                                    <dc:creator><![CDATA[ Mark Tyson ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/56vqMYLDaKRHPhHZgbADFR.jpg ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Mark&#039;s enthusiasm for computers dampened at an early age by the rubber-keyed Sinclair Spectrum 48K and feelings of Commodore 64 envy. However, in the mid-80s, hope in a digital future was rekindled by the purchase of an Atari 520 STe. Since that time Mark has used a multitude of computers for fun and professional endeavors. He often owned both Macs and PCs but went cold on the former after OS9 was killed off, and warmed to the latter with the introduction of Windows XP.&lt;br&gt;
&lt;br&gt;
Early work years were spent in artwork and reprographics but in the late noughties, Mark started to blog about computers, Taiwanese food culture, and guitar design. This activity led to a full-time position writing about breaking PC tech news for HEXUS, for the best part of a decade. When HEXUS was abruptly closed, Mark helped with the foundation of Club386, before finding a new home at Tom&#039;s Hardware.&lt;br&gt;
&lt;br&gt;
When not wearing through the keycap legends on his PC keyboards, Mark can be found wandering the computer malls of Taiwan&#039;s neon-lit conurbations and enjoying local and international cuisine.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/NvF5SJiif9rTomUFJRbNJ8-1280-80.jpg">
                                                            <media:credit><![CDATA[Intel]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Intel oil immersion cooling]]></media:description>                                                            <media:text><![CDATA[Intel oil immersion cooling]]></media:text>
                                <media:title type="plain"><![CDATA[Intel oil immersion cooling]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/NvF5SJiif9rTomUFJRbNJ8-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Intel researchers are working on novel solutions to <a href="https://www.intel.com/content/www/us/en/newsroom/news/intel-dives-into-future-of-cooling.html#gs.v7oqya">cool next-gen chips</a> up to 2000W. The iconic x86 chipmaker already threw its weight behind immersion cooling a few years back. However, the march of Moore’s Law and increasing chip densities means Intel is now busy looking to adapt/augment its best cooling technology with “new materials and structures.”</p><p>Cooling is a very serious business, especially in the data center. Improvements to cooling efficiency can significantly impact the bottom line of a data center operator. Powerful processors will chew through the lion’s share of watts, but research suggests cooling accounts for <a href="https://grcmain.wpenginepowered.com/wp-content/uploads/2022/07/grc-intel-the-sustainable-data-center-transformation-white-paper.pdf">up to 40%</a> of a facility’s power consumption. Better cooling could also allow chips to run faster.</p><p>Tantalizingly, Intel says that it will be working closely with innovative cooling technology companies on solutions that “seem squarely in the realm of science fiction.” It doesn’t name names, but the clues are big enough for us to have an educated guess about two of its major collaborators.</p><h2 id="coral-like-structures-tiny-liquid-jets">Coral-like Structures, Tiny Liquid Jets</h2><p>One of the new cooling solutions is said to be based on technology “like 3D vapor chambers embedded in coral-shaped heat sinks.” This sounds like it could be a collaboration with Belgium’s <a href="https://www.tomshardware.com/news/generative-design-and-3d-metal-printing-enhance-cpu-cooling-performance">Diabatix</a>, which specializes in heatsinks and cold plates created by a <a href="https://www.diabatix.com/coldstream">generative design</a> software platform. The results look highly organic, like coral growth, and the structures make for ultra-low thermal resistance.</p><p>Intel also mentions that a partner has technology that features “tiny jets, adjusted by artificial intelligence, that shoot cool water over hot spots in the chip to remove heat.” Again, Intel doesn’t name any names, but the technology sounds very similar to that championed by MIT spinoff <a href="https://jetcool.com/technology/">JetCool</a>. This Massachusetts-based firm also fits the brief of providing integrated die-cooling technology for “exceptional” performance.</p><p>Elsewhere in its blog about potential new cooling technologies, Intel mentions it is looking closely at cooling technologies utilizing 3D vapor champers, advanced materials, and boiling enhancement coatings. This work is “existentially important for our future,” said Tejas Shah, lead thermal architect for Intel’s Super Compute Platforms group.</p><p>Cooling isn’t all about efficiency and saving energy, though. Intel asserts that new cooling technology has the potential to enable processors to run at lower temperatures and thus deliver “a 5% to 7% increase in performance for the same power.”</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ AMD Ryzen 7 7800X3D vs Intel Core i9-13900K vs Core i7-13700K: Big Gaming Punch, Smaller Price Tag ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/news/amd-ryzen-7-7800x3d-vs-intel-core-i9-13900k-vs-intel-core-7-13700K</link>
                                                                            <description>
                            <![CDATA[ We put the AMD Ryzen 9 7800X3D, the Intel Core i9-13900K, and the Ryzen 9 7950X3D through a six-round fight to see which chip comes out on top. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">zUWKGxJZBv45fMnzF9noQ7</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/NcND8UqLRC24RsqBgpJZZY-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Thu, 13 Apr 2023 15:24:37 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 12:57:10 +0000</updated>
                                                                                                                                            <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                <author><![CDATA[ palcorn@outlook.com (Paul Alcorn) ]]></author>                    <dc:creator><![CDATA[ Paul Alcorn ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/RZRmFeQfPy3etHjBQitbGW.jpeg ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;As a teenager, Paul scraped up enough money to buy a 486-powered PC with a turbo button (yes, a turbo button). Back when floppies were still popular he was already chasing after the fastest spinners for his personal computer, which led him down the long and winding storage road, covering enterprise storage. His current focus is on consumer processors, though he still keeps a close eye on the latest storage news. In his spare time, you’ll find Paul hanging out with his kids or indulging his love of the Kansas City Chiefs and Royals.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/NcND8UqLRC24RsqBgpJZZY-1280-80.jpg">
                                                            <media:credit><![CDATA[Tom&#039;s Hardware]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Ryzen 7 7800X3D vs Core i9-13900K]]></media:description>                                                            <media:text><![CDATA[Ryzen 7 7800X3D vs Core i9-13900K]]></media:text>
                                <media:title type="plain"><![CDATA[Ryzen 7 7800X3D vs Core i9-13900K]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/NcND8UqLRC24RsqBgpJZZY-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1280px;"><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="" name="cover image for amd ryzen 7 7800x versus intel core i9-13900k (1).jpg" alt="Ryzen 7 7800X3D vs Core i9-13900K" src="https://cdn.mos.cms.futurecdn.net/NcND8UqLRC24RsqBgpJZZY.jpg" mos="" align="middle" fullscreen="1" width="1280" height="720" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/NcND8UqLRC24RsqBgpJZZY.jpg' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Tom's Hardware)</span></figcaption></figure><p>The AMD <a href="https://www.tomshardware.com/news/amd-shares-first-official-ryzen-7-7800x3d-vs-core-i9-13900k-gaming-benchmarks-wins-by-up-to-24">Ryzen 7 7800X3D</a> vs Intel <a href="https://www.tomshardware.com/reviews/intel-core-i9-13900k-i5-13600k-cpu-review">Core i9-13900K</a> vs <a href="https://www.tomshardware.com/reviews/intel-core-i7-13700k-cpu-review">Intel Core i7-13700K</a> showdown is a matchup of one upper mid-range processor against two nimble and competent competitors for the title of the <a href="https://www.tomshardware.com/reviews/best-cpus,3986.html">best CPU for gaming</a>. </p><p>The $448 Ryzen 7 7800X3D is now the fastest gaming CPU in the world. The 7800X3D recently debuted to critical acclaim, arriving with eight cores and 16 threads and AMD&apos;s <a href="https://www.tomshardware.com/news/amd-shares-new-second-gen-3d-v-cache-chiplet-details-up-to-25-tbs">Second-Gen 3D V-Cache</a> that deliver ever-so-slightly more gaming performance than the flagship $699 <a href="https://www.tomshardware.com/reviews/amd-ryzen-9-7950x3d-cpu-review">Ryzen 9 7950X3D</a>. The 3D V-Cache tech fuses a 3D-stacked cache chiplet atop the processor to deliver market-leading gaming performance at the expense of performance in productivity applications, but while it delivers explosive uplift in some games, not all titles benefit. </p><p>In contrast, the $570 <a href="https://www.tomshardware.com/reviews/intel-core-i9-13900k-i5-13600k-cpu-review">Core i9-13900K</a> wields 24 cores and 32 threads with Intel&apos;s <a href="https://www.tomshardware.com/news/intel-13th-gen-raptor-lake-release-date-specifications-pricing-benchmarks-all-we-know-specs">13th-Gen Raptor Lake</a> x86 hybrid architecture. The Intel Core i9-13900K is Intel&apos;s fastest gaming processor, and while it isn&apos;t quite as fast as AMD&apos;s X3D chips in gaming, it serves up a more predictable blend of performance in both gaming and productivity apps.<br><br>Intel also has its <a href="https://www.tomshardware.com/reviews/intel-core-i7-13700k-cpu-review">Core i7-13700K</a>, which offers nearly the same level of performance as the 13900K in gaming, but at a much more amenable $417 price point that is more competitive with the Ryzen 7 7800X3D. While the 13700K isn&apos;t as fast in productivity work as the 13900K, it also offers far more performance than the 7800X3D in the types of apps. </p><p>This makes for a complex array of choices if you&apos;re looking for a flagship gaming experience with your next rig, and that&apos;s before we even factor in pricing. Below we&apos;ve taken the Ryzen 7 7800X3D vs Core i9-13900K vs Core i7-13700K rivalry through a six-round faceoff to see which chips take the crown in our gaming and application benchmarks, along with other key criteria like power consumption and pricing. Let&apos;s see how they stack up. </p><h3 class="article-body__section" id="section-features-and-specifications-amd-ryzen-7-7800x3d-vs-intel-core-i9-13900k-and-core-i7-13700k"><span>Features and Specifications: AMD Ryzen 7 7800X3D vs Intel Core i9-13900K and Core i7-13700K</span></h3><div ><table><caption>AMD Ryzen 7 7800X3D vs Intel Core i7-13700K vs Core i9-13900K</caption><thead><tr><th class="firstcol empty" ></th><th  >Street/MSRP</th><th  >Cores / Threads (P+E)</th><th  >P-Core Base / Boost Clock (GHz)</th><th  >E-Core Base / Boost Clock (GHz)</th><th  >Cache (L2/L3)</th><th  >TDP / PBP / MTP</th><th  >Memory</th></tr></thead><tbody><tr><td class="firstcol " ><a href="https://www.amazon.com/Intel-i9-13900K-Desktop-Processor-P-cores/dp/B0BCF54SR1">Core i9-13900K</a> / <a href="https://www.newegg.com/intel-core-i9-13900k-core-i9-13th-gen/p/N82E16819118413">KF</a></td><td  >$570 (K) - $554 (KF)</td><td  >24 / 32 (8+16)</td><td  >3.0 / 5.8</td><td  >2.2 / 4.3</td><td  >68MB (32+36)</td><td  >125W / 253W</td><td  >DDR4-3200 / DDR5-5600</td></tr><tr><td class="firstcol " ><strong><a href="https://www.amazon.com/dp/B0BTZB7F88">Ryzen 7 7800X3D</a></strong></td><td  ><strong>$449</strong></td><td  ><strong>8 /16 </strong></td><td  ><strong>4.2 / 5.0</strong></td><td  > </td><td  ><strong>104MB (8+96)</strong></td><td  ><strong>120W / 162W </strong></td><td  >DDR5-5200</td></tr><tr><td class="firstcol " ><a href="https://www.amazon.com/Intel-i7-13700K-Desktop-Processor-P-cores/dp/B0BCF57FL5">Core i7-13700K</a> / <a href="https://www.newegg.com/intel-core-i7-13700kf-core-i7-13th-gen/p/N82E16819118415">KF</a></td><td  >$417 (K) - $384 (KF)</td><td  >16 / 24 (8+8)</td><td  >3.4 / 5.4</td><td  >2.5 / 4.2</td><td  >54MB (24+30)</td><td  >125W / 253W</td><td  >DDR4-3200 / DDR5-5600</td></tr></tbody></table></div><p>AMD’s $449 <a href="https://www.tomshardware.com/news/amd-shares-first-official-ryzen-7-7800x3d-vs-core-i9-13900k-gaming-benchmarks-wins-by-up-to-24https://www.tomshardware.com/reviews/amd-ryzen-7-7800x3d-cpu-review">Ryzen 7 7800X3D</a> comes packing eight Zen 4 cores with the company’s second-gen 3D V-Cache tech that unlocks 96MB of total L3 cache. This combo delivers the fastest gaming performance available on the market. The 7800X3D has the same underlying design as the <a href="https://www.tomshardware.com/news/intel-core-i5-13600k-vs-amd-ryzen-7-7700x-and-ryzen-5-7600x-face-off">Ryzen 7 7700X</a> with a central I/O die and one eight-core compute chiplet that provides a total of 8 cores and 16 threads.<br><br>Unlike the standard Ryzen 7000 chips, the 7800X3D&apos;s compute chiplet has an additional 3D-stacked L3 cache. However, this tech results in a lower boost clock of 5.0 GHz than the standard single compute chiplet models, which can reach up to 5.4 GHz. Despite the lower frequency, the cache-equipped chiplet provides the best gaming performance. In contrast, AMD&apos;s 7950X3D and 7900X3D come with two compute chiplets, requiring a new driver to steer threads for different types of workloads to the correct chiplet. In contrast, the 7800X3D is a plug-and-play processor that doesn&apos;t require special software.<br><br>The Ryzen 7 7800X3D has all the accommodations we expect from a modern chip, including DDR5, PCIe 5.0, and the latest USB standards. The chip also has an integrated graphics engine, but it isn&apos;t suitable for gaming. You can see our <a href="https://www.tomshardware.com/reviews/amd-ryzen-9-7950x3d-cpu-review/5">iGPU testing here</a>.<br><br>The 7800X3D is incredibly power efficient, but AMD assigned a base TPD of 120W and a max 162W PPT, 15/20W <em>higher</em> than the 105W/142W rating for the standard 7700X. As you&apos;ll see in the power testing section, the higher TDP rating doesn&apos;t make much sense. Regardless, you&apos;ll still need to plan for a 240mm to 280mm AIO (or better) for the best performance.<br><br>The Ryzen 7 7800X3D requires an AM5 motherboard, so DDR5 memory is the only option. Unfortunately, DDR5 continues to carry a premium over DDR4 memory. Granted, that pricing pressure isn&apos;t as much of a consideration for the highest-end systems, but you should factor it in if you&apos;re struggling to cobble together a system in this price range. The AM5 platform is new, and the Ryzen 7000 chips aren&apos;t backward compatible with older AM4 motherboards. However, AMD will support the AM5 platform until 2025+.<br><br>The 7800X3D supports the auto-overclocking Precision Boost Overdrive (PBO), Curve Optimizer, and fabric and memory overclocking. Unfortunately, direct frequency overclocking isn&apos;t possible due to a voltage limitation for the 3D tech.<br><br>Intel&apos;s $589 sixteen-core Core i9-13900K comes with eight hyper-threaded P-cores and 16 single-threaded E-cores, for a total of 32 threads. That&apos;s an increase of eight additional E-cores over the previous-gen <a href="https://www.tomshardware.com/reviews/intel-core-i9-12900k-and-core-i5-12600k-review-retaking-the-gaming-crown">Core i9-12900K</a>, equating to more threaded horsepower. You can also save some cash with the $564 Core i9-13900KF, which has identical specs but lacks the integrated GPU.<br><br>The P-cores come with a 3.0 GHz base, but, more importantly, a 5.8 GHz boost that&apos;s a whopping 600 MHz increase over the prior gen. Meanwhile, the E-cores now have a 3.0 GHz base (+600 MHz) and stretch up to 4.3 GHz (+400 MHz). The Core i9-13900K also has 32MB of L3 and 36MB of L2 cache.<br><br>The $417 Core i7-13700K comes with eight p-cores and eight e-cores, for a total of 16 cores and 24 threads. The reduced number of e-cores means this chip doesn&apos;t provide as much threaded horsepower as the 13900K, but its 5.4 / 2.4 GHz boost/base clocks keep performance snappy in latency-sensitive work, like gaming, while the e-cores are also effective in threaded work with a 4.2 / 2.5 GHz boost/base. 24MB of L2 and 30MB of L3 round out the package. You can also save some cash with the graphics-less $384 Core i7-13700KF.<br><br>The Raptor Lake chips use a newer revision of the &apos;Intel 7&apos; node to push clock speeds higher while improving power efficiency. Intel&apos;s chips now have a Processor Base Power (PBP) value instead of a TDP metric, and a secondary Maximum Turbo Power (MTP) value that denotes the highest power level during boost activity. Be aware that modern Intel chips can always operate at the MTP when under load, though the actual power use will vary with application intensity. The 13900K and 13700K both come with 125W PBP (base) and 253W MTP (peak) power ratings, but in practice, the 13700K sucks less power.<br><br>The Raptor Lake chips support DDR4 or DDR5 memory, which can save you money on both the motherboard and memory. Both Raptor Lake chips drop into existing 600-series motherboards or the new 700-series models, but you&apos;ll need to ensure a 600-series board has the right BIOS or BIOS flashback.  Intel allows full overclockability, but only when you pair the chips with a Z-series motherboard.<br><br><strong>✅ </strong><em><strong>Winner: </strong></em><strong>Tie</strong><em><strong><br><br></strong></em>The Core i9-13900K vs Ryzen 9 780X3D vs Core i7-13700K battle yields a tie in this category. All three chips support DDR5 and the PCIe 5.0 interface, meaning none have an inherent connectivity advantage.<br><br>Intel has the advantage of backward compatibility for DDR4 and the 600-series chipset, enabling lower-cost memory and motherboards for value seekers (<a href="https://www.tomshardware.com/news/intel-600-series-boards-for-raptor-lake">caveats apply</a>). Intel also has its <a href="https://www.tomshardware.com/news/intel-roadmap-leaks-raptor-lake-refresh-hedt-replacement-in-2023">Raptor Lake Refresh chips on the horizon</a>, meaning there will be one more generation of upgrades for the LGA 1700 platform.<br><br>AMD&apos;s new AM5 platform generally carries a premium over the Intel motherboard ecosystem, but it does afford extended forward compatibility — AMD plans on supporting the AM5 platform until 2025+.<br><br>Given its new hybrid architecture with two types of cores, Intel&apos;s core counts aren&apos;t directly comparable to AMDs due to their different capabilities. Our performance results will dictate the performance value of the overall designs.</p><h3 class="article-body__section" id="section-gaming-benchmarks-and-performance-amd-ryzen-7-7800x3d-vs-intel-core-i9-13900k-vs-core-i7-13700k"><span>Gaming Benchmarks and Performance: AMD Ryzen 7 7800X3D vs Intel Core i9-13900K vs Core i7-13700K</span></h3><p>Remember, this article is an overview of our much more in-depth testing in our AMD <a href="https://www.tomshardware.com/reviews/amd-ryzen-7-7800x3d-cpu-review">Ryzen 7 7800X3D</a> Review. Below is the geometric mean of our gaming tests with the Core i7-13700K vs AMD Ryzen 7 7800X3D vs Intel Core i9-13900K at 1080p and 1440p, with each resolution split into its own chart. As usual, we&apos;re testing with an Nvidia GeForce RTX 4090 to reduce GPU-imposed bottlenecks as much as possible, but differences will shrink with lesser cards or higher resolutions. </p><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/MmiAZHM8e6L9ngbTkmihtk.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/kyrdh9R9adAhdiSKvx3aXk.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/8XN8jWxVS4B8tAHUCpAtfk.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/zfMrVnjmPvRXqwdqHSqNSk.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/a2HkSiRVyrHN4UeBQh3Z6j.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/cWBdM9VMSf2v4G5TrPvhCj.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/knCsSB6gaAaL5UuqUDiAPj.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/72737R4fPRkJMHgLEGZNYj.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/9LdtH7RaunFALHwcYspYjj.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/tara3fLCkrGeCMQ39Zemrj.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/C4Z9TtAz6Y4Ykz36oQpe7k.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/AUc2QX8fRYDBp6W6u7ZDHk.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/a3umLQrVdEm24kbm27uhMk.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/hKFU9ZdtupyFSgACYgDnHj.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/fJcV2NuPHVU6ERCasxsuTj.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/W5z4e9xCYW8BmuM4fescdj.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/PQtqhM6nPuWNcs4Y6PMj2k.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/6ioktwNpDw6YTrrK8usECk.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/SvBPF8WeSt89Usxr7DSPai.jpg" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/hc5vjToPtWFTBXbY7fPfhi.jpg" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure></figure><p>The 3D V-Cache tech puts AMD’s X3D chips in a league of their own in gaming, so the $449 7800X3D contends with the $699 16-core Ryzen 9 7950X3D for the lead — a victory it wins by a mere 1% in its stock config. The 7800X3D increases its lead over the 7950X3D to 2.5% at 1440p, but this is still a very close contest that falls into the imperceptible range. The price tag and number of cores is the biggest difference between these two chips; the 7950X3D costs $250 more and has twice the number of cores, which will help in productivity workloads.<br><br>The Ryzen 7 7800X3D is 12% faster in 1080p gaming than the $580 Core i9-13900K, and overclocking only narrows that to 8%. The Core i9-13900K requires exceptionally aggressive accommodations for overclocking. In contrast, the Ryzen 7 7800X3D never exceeded 90W in our testing. Overall, the 7800X3D will run faster and cooler than the 13900K in every gaming scenario, but the 13900K is far more potent in productivity-oriented tasks.<br><br>The $417 Core i7-13700K trails the 7800X3D by 14%, but it costs ~$30 less, and its more balanced performance in productivity apps makes it attractive if you&apos;re looking for a better all-rounder. The 13700K really takes the shine off the 13900K for gaming-focused rigs — the 13900K is only 1.5% faster in gaming but costs 39% more cash (an extra $163).<br><br>Moving over to 1440p pushes the bottleneck more towards the GPU, so the difference between the chips shrinks. For example, the Ryzen 7 7800X3D is 9% faster than the Core i9-13900K at 1440p with both stock and overclocked settings. It&apos;s logical to assume that most high-end gaming systems will use higher-resolution monitors, so the differences could be slight, but the 7800X3D will give you more headroom for future GPU upgrades.<br><br>As a reminder, the 3D V-Cache doesn’t accelerate all titles equally. Therefore, you should also look at the individual game benchmarks in the above album to assess the overall trend. As always, the <a href="https://www.tomshardware.com/features/amd-vs-intel-cpus">AMD vs Intel</a> competition can vary based on the title and the GPU you use, so it&apos;s best to make an informed decision based on the types of titles you play frequently.<br><br>Be aware that large deltas in individual game titles, as we see with the Ryzen 7 7800X3D, impact cumulative measurements. You can see examples of that in the above album in titles like <em>Microsoft Flight Simulator 2021</em>, <em>Far Cry 6</em>, and<em> F1 202</em>1. Our test suite heavily favors the improvements from 3D V-Cache, so we also included AMD’s own benchmarks in a broad range of games at the end of the above album to give you an idea of performance gains in other titles. As with all vendor-provided benchmarks, take AMD&apos;s slides with a grain of salt.</p><p><strong>✅ </strong><em><strong>Winner: </strong></em><strong>AMD Ryzen 7 7800X3D | All-Rounder Alternative — Core i7-13700K<br></strong>It may be by the slimmest of margins over its own sibling, but on average, the Ryzen 7 7800X3D is the fastest gaming chip money can buy, dethroning the 7950X3D at a much friendlier price point. It is also much faster than both of the Intel contenders.<br><br>In our test suite, the Ryzen 7 7800X3D is 12% faster than the Core i9-13900K at 1080p gaming and 9% faster at 1440p. After overclocking, those deltas shrink to ~9% at 1080p and 1440p.<br><br>Ultimately, despite its lower-than-suggested pricing of $580, we can&apos;t give the 13900K the nod in this competition — instead, the Core i7-13700K gets an honorable mention. The 13700K delivers 98.5% of the 13900K&apos;s gaming performance despite the fact that the 13900K costs $163 more (39%).<br><br>The Ryzen 7 7800X is 14% faster than the 13700K, but you will pay higher up-front pricing to build a 7800X3D system. The 13700K is competitive with the 7800X3D in our system-level and fps-per-dollar pricing calculations below, leaving it as a competent alternative.</p><h3 class="article-body__section" id="section-productivity-performance-amd-ryzen-7-7800x3d-vs-intel-core-i9-13900k-vs-core-i7-13700k"><span>Productivity Performance: AMD Ryzen 7 7800X3D vs Intel Core i9-13900K vs Core i7-13700K</span></h3><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/LQRL2wBxQUfPwG2tkqsYs5.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/agm7edHeCEq5XrAAjw7qc9.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/Wu7LuignTmRzwmRytTWb79.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/WgAXLwPERgyAqW5CH5frH9.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/j6Fo7y6TPdenSDRs258TY9.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/86s2ZZXRWW9tUn68MDzYh9.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/7cjpCDtfsVdvcfZMTNhDn9.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/Lg7exKoYX4a9Ea5qJthtB9.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/78bohyyayPjaq4z9cHbBP9.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/EbCfDtrueMTd4h6NVz64U9.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/YkVYnAAqr3A9K3Lxv634t9.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure></figure><p>We can boil down performance in productivity apps into two broad categories: single- and multi-threaded. The first slide above shows the geometric mean of performance in several of our most important tests in the single-threaded category, but be sure to look at the expanded results in the above album.<br><br>The Core i9-13900K beats the 7800X3D easily: it&apos;s 32% faster in single-threaded work, while the Core i7-13700K is 22% faster. Naturally, those performance deltas won&apos;t carry over to every type of workload. However, flipping through the album of test results reveals that the Intel processors excel in single-threaded work, thus providing more responsive performance than the 7800X3D in light applications.</p><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/BTriTpHJeJd7FikedrZdf9.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/TMvh7VR9Voevh8tRmqjL2S.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/bDuqiD4YFQtbifQERQrgBS.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/okie4eNQgUM5N4Jr5pBnXS.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/3MQdvauVZZdrbu54Jy3CgR.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/YWANBgCQi2wBjphpFMrtkR.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/mJdoiu5W9yJr2RJpLTweqR.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/gJ5hvUJuPRmD5FZY5dTavR.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/46NCm5JdzQ2Vo22Poqmo6S.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/8ur4MsAnJ3BL7qCZ2w8vFS.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/m4HbcU6jrAwJ56r8PBrBMS.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/efLbHWQ3t3pptV5LBd64TS.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/HckSaS78FjoUZuX5jB5YcS.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/o74kKxagJxWr35Kc6DeogS.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/B3jaxJJUkjkAC87J2MZTVR.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/YQFiMik2N5aCkjHTWr26bR.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure></figure><p>The first slide in the above album contains a geometric mean of performance in several of our multi-threaded benchmarks. In multi-threaded work, the $580 Core i9-13900K is a whopping 89% faster than the $449 Ryzen 7 7800X3D at stock settings, while the $417 Core i7-13700K is 51% faster. That&apos;s an easy win for the Intel chips.<br><br><strong>✅ </strong><em><strong>Winner:</strong></em> <strong>Intel Core i9-13900K and Core i7-13700K</strong><em><strong><br><br></strong></em>The Core i9-13900K and 13700K have a more balanced profile in both single- and multi-threaded productivity applications than the 7800X3D, delivering solid performance in both disciplines. In contrast, the Ryzen 7 7800X3D suffers mightily in these workloads compared to the Intel silicon, highlighting that this is truly a highly specialized chip for gaming that won&apos;t offer as much performance in standard workloads as the regular <a href="https://www.tomshardware.com/news/amd-zen-4-ryzen-7000-release-date-specifications-pricing-benchmarks-all-we-know-specs">Ryzen 7000</a> processors. <br><br>The implication here is clear — if performance in productivity workloads is important to you, select the Intel processor that best matches your needs in terms of both performance and pricing. The Ryzen 7 7800X3D is specifically designed for gaming-centric rigs, so you should steer clear if productivity apps are a big part of your daily usage.</p><h3 class="article-body__section" id="section-overclocking-amd-ryzen-7-7800x3d-vs-intel-core-i7-13700k-vs-core-i9-13900k"><span>Overclocking: AMD Ryzen 7 7800X3D vs Intel Core i7-13700K vs Core i9-13900K</span></h3><p>We have long since reached the land of diminishing returns for overclocking the highest-end chips from AMD and Intel, like the Ryzen 9 and Core i9 families. Because AMD has pulled Intel into a dogfight for performance superiority on the high end, much of the overclocking frequency headroom is rolled into standard stock performance. However, there are still at least some gains to be had, and both Intel and AMD expose tunable parameters and sophisticated software overclocking utilities, like Intel&apos;s XTU and AMD&apos;s Ryzen Master.<br><br>Like the rest of AMD&apos;s new X3D chips, the Ryzen 7 7800X3D doesn&apos;t support overclocking via the CPU multiplier, so you can&apos;t change the core clocks or voltages directly. However, AMD now allows changing the power limits (PPT, TDC, EDC) through the auto-overclocking Precision Boost Overdrive (PBO) feature, and you can also now undervolt with the Curve Optimizer. These features weren’t supported on the previous-gen models. You’ll find plenty of examples of PBO+UV performance in our <a href="https://www.tomshardware.com/reviews/amd-ryzen-7-7800x3d-cpu-review">Ryzen 7 7800X3D review</a>. As before, you can overclock the memory and fabric, too, though we&apos;ve seen limited gains with the 7800X3D from these approaches.<br><br>Meanwhile, the Intel Core i9-13900K and Core i7-13700K expose every knob possible for tweaking and tuning. However, the 13900K&apos;s aggressive out-of-the-box power and <a href="https://www.tomshardware.com/news/intel-adaptive-boost-technology-rocket-lake-amd">Adaptive Boost Technology</a> already consume most of the overclocking headroom you could achieve with conventional cooling. The 13700K leaves slightly more room than the 13900K for manual tuning due to its less-aggressive tech, but you shouldn&apos;t expect massive improvements. Sub-zero overclockers with exotic cooling solutions can reach much higher with the Intel chips than the 7800X3D, but that isn&apos;t as valuable to the overwhelming majority of users. </p><div ><table><caption>Intel Core i9-13900K vs AMD Ryzen 7 7800X3D vs Core i7-13700K Overclocking Performance</caption><tbody><tr><td class="firstcol " >Overclocking %age gain over stock</td><td  >AMD Ryzen 7 7800X3D PBO UV</td><td  >Intel Core i9-13900K @ 5.6</td><td  >Intel Core i7-13700K @ 5.5</td></tr><tr><td class="firstcol " >Gaming (1080p)</td><td  >+3.1%</td><td  >+6%</td><td  >+4%</td></tr><tr><td class="firstcol " >Single-Threaded</td><td  >1%</td><td  >-2.5%</td><td  >+3.2%</td></tr><tr><td class="firstcol " >Multi-Threaded</td><td  >+3.1%</td><td  >+3%</td><td  >+5.5%</td></tr></tbody></table></div><p>As usual, performance gains from overclocking can boil down to your luck in the silicon lottery. As you can see above, overclocking with conventional cooling for both the Intel and AMD processors results in fairly minimal gains in applications. In fact, the 13900K actually suffers from lower performance in single-threaded work because its 5.6 GHz overclock is lower than its stock 5.8 GHz boost. The Core i9-13900K does gain 6% in gaming, a higher percentage gain than the 13700K and 7800X3D, but it still lags behind the 7800X3D&apos;s peak gaming performance.</p><p><br><strong>✅ </strong><em><strong>Winner: </strong></em><strong>Tie<br><br></strong>The payoff for overclocking is extremely limited with today&apos;s high end chips. Still, both platforms have plenty of knobs for enthusiasts, their respective overclocking advantages, and a suite of auto-overclocking and software utilities. Of course, dedicated tuners could find larger performance boosts by overclocking the core, fabric, and memory more aggressively than we have, but bear in mind that you&apos;re always at the whims of the silicon lottery when it comes to overclocking.<br><br>AMD&apos;s 3D V-Cache technology prevents direct voltage and frequency manipulations, but AMD has unlocked memory, fabric, Precision Boost Overdrive, and undervolting via the Curve Optimizer, all of which combine to provide plenty of avenues for boosting performance via various tuning techniques. In fact, the 7800X3D often delivers a similar amount of performance uplift as the Core i9-13900K, showing the value of its somewhat unconventional approaches. Additionally, some motherboard vendors, like MSI, have baked in new tuned overclocking profiles directly into the motherboard firmware, promising up to a 10% improvement in performance. But, again, your mileage will vary.<br><br>Meanwhile, Intel offers more overclocking functionality and the highest peak frequencies from direct tuning. However, much of that capability is already exposed right out of the box via the company&apos;s aggressive boosting technologies and sky-high power limits, thus reducing its value to casual overclockers. </p><h3 class="article-body__section" id="section-power-consumption-efficiency-and-cooling-intel-core-i7-13700k-vs-amd-ryzen-7-7800x3d-vs-core-i9-13900k"><span>Power Consumption, Efficiency, and Cooling: Intel Core i7-13700K vs AMD Ryzen 7 7800X3D vs Core i9-13900K</span></h3><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/3T83U25zPaRLSjLxEDTaFg.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/qP26iPxAhp6JKqMKmnS34g.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/hoWMUSbuTwaWsBpdwm3mmf.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/d3SaYB9snwSYFd2VCKHosf.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/V3aZ9sntViSGEh54cLXqLg.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/wtsZJ9h3ZMNDbjsrMQZsRg.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/UxRueMfJrED3RSqQS2gTbg.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/SXg3JpTtr33gBSPCrYZ4gg.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/39dQkebxVjE5PznacWeNkg.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/FqaczaYggsnYee5D74sfWg.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/niE2p4QueyPJco7ZcHjH9g.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/kXrcpXEVzpGokUcgoKhbpg.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/c39yiN4b6mVK6QrwauP9ug.png" alt="Ryzen 7 7800X3D vs Core i9-13900K" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure></figure><p>The Ryzen 7 7800X3D is incredibly power efficient, drawing far less power than the competing Core i9-13900K or 13700K, thus delivering superb power efficiency that ranks among the best we’ve ever tested. A quick glance at the HandBrake renders-per-day-per-watt metric shows that the efficiency competition isn&apos;t even close — the 7800X3D is the hand&apos;s down winner.</p><p>In fact, the Ryzen 7 7800X3D appears to fall into the standard 65W profile that specs a maximum of 88W of power consumption (PPT). AMD has spec&apos;d a higher 120W TDP rating for the 7800X3D, but it appears to be running closer to the 65W TDP envelope during normal use — given our measurements, the Ryzen 7 7800X3D&apos;s 120W TDP rating seems far overprovisioned. This means the chip is basically operating in <a href="https://www.tomshardware.com/reviews/amd-ryzen-9-3900-review-eco-mode">Eco Mode</a>, which confers massive power consumption and efficiency benefits.<br><br>In contrast, Intel&apos;s chips consume far more power in every type of workload, resulting in higher thermal output.<br><br><strong>✅ </strong><em><strong>Winner: Ryzen 7 7800X3D<br><br></strong></em>Intel has reduced its power consumption metrics, but the Ryzen 7 7800X3D is still far more power efficient. The 7800X3D consumes much less peak power and also delivers more work per unit of power consumed. That results in a win in power consumption, efficiency, and thermal output, ultimately giving you a cooler and quieter system.<br><br>None of these chips comes with a bundled cooler, but Intel&apos;s higher power consumption means you&apos;ll need more aggressive, and thus more expensive, cooling to extract the peak performance. In contrast, we don&apos;t think most users will have problems cooling the Ryzen 7 7800X3D with the recommended 280mm or greater cooler. </p><h3 class="article-body__section" id="section-pricing-intel-core-i9-13900k-vs-amd-ryzen-7-7800x3d-vs-core-i7-13700k"><span>Pricing: Intel Core i9-13900K vs AMD Ryzen 7 7800X3D vs Core i7-13700K</span></h3><div ><table><caption>Intel Core i9-13900K vs AMD Ryzen 7 7800X3D vs Core i7-13700K fps-per-dollar — 1080p</caption><tbody><tr><td class="firstcol " >Tom's Hardware - Lower is Better</td><td  >Dollars-per-fps — Chip Only</td><td  >Dollars-per-fps — Chip, board, 32GB memory</td><td  >Total System Cost</td></tr><tr><td class="firstcol " >AMD Ryzen 7 7800X3D</td><td  >$2.00</td><td  >$2.97 (B650) —  $3.57 (X670)</td><td  >$666 (B650) —  $799 (X670)</td></tr><tr><td class="firstcol " >Intel Core i9-13900K (Z790)</td><td  >$2.90</td><td  >$4.27 (DDR4) — $4.30 (DDR5)</td><td  >$819 (DDR4) — $860 (DDR5)</td></tr><tr><td class="firstcol " >Intel Core i7-13700K (Z790)</td><td  >$2.11</td><td  >$3.47 (DDR4) — $3.54 (DDR5)</td><td  >$656 (DDR4) — $697 (DDR5)</td></tr><tr><td class="firstcol " >Intel Core i7-13700K (B760)</td><td  >$2.11</td><td  >$3.21 (DDR4) — $3.28 (DDR5)</td><td  >$607 (DDR4) — $647 (DDR5)</td></tr></tbody></table></div><p>Tallying up the pricing numbers to compare the Core i7-13700K vs Ryzen 7 7800X3D vs Core i9-13900K can get incredibly complex once we start factoring in different classes of motherboards, so we included as much information as possible (links in the text below).<br><br>The Ryzen 7 7800X3D stands out as the fastest gaming chip money can buy and as the best gaming value in this price range. At $2.00 per frame, the 7800X3D is a far better value than the 13900K, which works out to $2.90 per frame. Of course, the Core i7-13700K is slower than the 7800X3D, but it is within striking distance in our value calculation at $2.11 per frame.<br><br>As you can see when we calculate the total platform cost above, plenty of other cost factors are in play, like memory and motherboards. In the end, provided you ensure it has adequate power delivery (which is easy for the 7800X3D), you can drop the 7800X3D into a B650 board and pay $2.97 per frame. That&apos;s the best value of the potential configurations. The 13700K with DDR4 memory on a B760 motherboard is close at $3.21 per frame, but it still lags slightly at $3.21.<br><br>Surprisingly, after equipping both chips with DDR5, we basically have a tie with the 13700K on a Z790 board and the 7800X3D on an X670. The Core i9-13900K simply isn&apos;t worth the cash if you&apos;re aiming solely for gaming, but it has its own attractions on the productivity side.<br><br>We used both the B650 and X670 chipsets for modeling the Ryzen 7 7800X3D&apos;s total system price, and tallied different price points based on DDR4, DDR5, Z790, and B760 motherboards for the Intel processors. Note that we didn&apos;t include a B760/13900K combo because that doesn&apos;t make sense with that class of chip, and you&apos;ll need to be careful to ensure adequate VRMs when pairing the 13700K with a B760 board. You also can&apos;t overclock the cores with a B-series board. Finally, we reduced the fps value for the Intel chips by 4% for the DDR4 calculations, as <a href="https://www.tomshardware.com/news/why-amds-ryzen-7000-and-motherboards-cost-so-damn-much">our testing shows that to be the average performance loss</a> with the higher-end chips from stepping back from DDR5. You will retain the full performance in productivity applications, though.<br><br>The graphics-less $551 Core i9-13900KF saves you $30, and the $392 Core i7-13700KF saves you $25. We did not include those reductions in our calculations. The Core i9-13900K and 13700K are also compatible with previous-gen motherboards <a href="https://www.tomshardware.com/news/intel-600-series-boards-for-raptor-lake">if they have the right BIOS</a>, and performance will be the same between 600- and 700-series if the power delivery is identical.<br><br><a href="https://pcpartpicker.com/products/motherboard/#sort=price&c=158,159&page=1">AMD&apos;s X670/E motherboards</a> currently start at roughly $80 more than <a href="https://pcpartpicker.com/products/motherboard/#c=162&sort=price">Intel&apos;s Z790</a>, but <a href="https://pcpartpicker.com/products/motherboard/#sort=price&s=41&c=160,161">AMD B650 boards start at $126</a>. However, you&apos;ll only find a single B650 board for around $130, while <a href="https://pcpartpicker.com/products/motherboard/#c=163&sort=price">seven Intel B760 boards are either at or below $130</a>. This is due to the lower pricing for Intel&apos;s DDR4-equipped motherboards; we&apos;ve priced those differences into our full-system measurements.<br><br>Memory pricing is also tricky. DDR4 memory isn&apos;t an option with the AM5 platform that houses the 7800X3D, and while the deltas between DDR5 and DDR4 are becoming smaller over time, they still exist: You&apos;ll pay ~$60 bucks at a minimum for <a href="https://pcpartpicker.com/products/memory/#Z=32768002&b=ddr4&sort=price&page=1&S=3200,8000">32GB of DDR4</a>, but pricing starts at $90 for <a href="https://pcpartpicker.com/products/memory/#Z=32768002&sort=price&S=5200,8000&b=ddr5">32GB of DDR5</a>. That gap increases with higher capacities — it&apos;s $100 for the least expensive <a href="https://pcpartpicker.com/products/memory/#b=ddr4&Z=65536002&sort=price&S=3200">64GB DDR4 kit</a> but $195 for a <a href="https://pcpartpicker.com/products/memory/#b=ddr5&Z=65536002&sort=price&S=5200">64GB DDR5 kit</a>. That&apos;s nearly twice the price. How much weight you should give to the difference in memory pricing will be impacted by the speed and capacity of the kit you select. Additionally, perhaps the best memory kit is the one you don’t have to buy — many upgraders likely already have a DDR4 kit, which is something to consider if you have a kit on hand. </p><p><strong>✅ </strong><em><strong>Winner:</strong></em><strong> Ryzen 7 7800X3D and Core i7-13700K<br><br></strong>The Ryzen 7 7800X3D has a lower price tag than the $580 Core i9-13900K, but much higher performance in games. Overall, the 7800X3D has a commanding lead in both raw and system-level fps-per-dollar metrics, thus giving it the nod in the pricing department.<br><br>The Core i9-13900K is a superior offering if you&apos;re interested in performance in productivity applications. Still, the Core i7-13700K offers the lion&apos;s share of the 13900K&apos;s performance at a lower price point. In gaming, the Core i7-13700K offers similar raw and system-level pricing to the 7800X3D when you factor in the fps-per-dollar, thus also earning it a win in the pricing category.<br><br>The higher cost of AMD&apos;s motherboards generally adds more cost to your build than Intel&apos;s platforms, and the price premium for DDR5 also continues to add cost: At higher capacities, you&apos;ll pay nearly twice as much for DDR5 memory as DDR4 memory, and DDR5 is a strict requirement for AMD&apos;s 7800X3D.<br><br>However, the Ryzen 7 7800X3D has the performance lead in gaming by a large enough margin that it holds the lead in terms of overall value for builds focused strictly on gaming, an advantage that is most apparent against the 13900K. Additionally, the 7800X3D is the fastest gaming chip on the market, a privilege that most are typically willing to pay a premium for, yet it still beats the more value-centric 13700K, albeit by smaller margins, in our pricing efficiency metrics. </p><h3 class="article-body__section" id="section-bottom-line-amd-ryzen-7-7800x3d-vs-intel-core-i9-13900k-vs-core-i7-13700k"><span>Bottom Line: AMD Ryzen 7 7800X3D vs Intel Core i9-13900K vs Core i7-13700K</span></h3><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/WJYhhpyf9xoxoV9ASwNkiB.png" alt="Ryzen 7 7800X3D" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/6ZDdPALpB2WbStQ6iDj4WB.png" alt="Ryzen 7 7800X3D" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/eUkSvdBLKyD3j74SwJGPpB.png" alt="Ryzen 7 7800X3D" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/Gh6cdR8NV8vsrLLXr83fcB.png" alt="Ryzen 7 7800X3D" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/RvjhMs3RaxS3PeMoR3sR4C.png" alt="Ryzen 7 7800X3D" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/T26ieqQZ5n69M3xVu4UuvB.png" alt="Ryzen 7 7800X3D" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure></figure><div ><table><caption>AMD Ryzen 7 7800X3D vs Intel Core i9-13900K vs Core i7-13700K</caption><tbody><tr><td class="firstcol empty" ></td><td  >AMD Ryzen 7 7800X3D</td><td  >Intel Core i9-13900K</td><td  >Intel Core i7-13700K</td></tr><tr><td class="firstcol " >Features and Specifications</td><td  >X</td><td  >X</td><td  >X</td></tr><tr><td class="firstcol " >Gaming</td><td  >X</td><td  ></td><td  >X - All-Rounder Alternative</td></tr><tr><td class="firstcol " >Productivity Applications</td><td  ></td><td  >X</td><td  >X</td></tr><tr><td class="firstcol " >Overclocking</td><td  >X</td><td  >X</td><td  >X</td></tr><tr><td class="firstcol " >Power Consumption, Efficiency, and Cooling</td><td  >X</td><td  ></td><td  ></td></tr><tr><td class="firstcol " >Pricing</td><td  >X</td><td  >X</td><td  >X</td></tr><tr><td class="firstcol " >Total</td><td  >5</td><td  >3</td><td  >5</td></tr></tbody></table></div><p>We have two separate battles in this contest: The Ryzen 7 7800X3D vs Core i7-13700K ends in a tie, with both chips getting the nod in five categories. Meanwhile, the Ryzen 7 7800X3D vs Core i9-13900K matchup tallies up to a 5-to-3 advantage in the 7800X3D&apos;s favor. </p><p>For gaming-centric rigs, the Core i9-13900K doesn&apos;t offer enough gaming performance to justify its price premium over the 7800X3D, and its other deficiencies in pricing and power consumption hurt its broader overall score. However, the 13900K vs 7800X3D contest isn&apos;t as much of a blowout win as the score implies. In the end, both of these processors have their own distinct advantages and disadvantages depending on your target use case.<br><br>If you&apos;re concerned about building a gaming-focused rig and everything else is a secondary concern, the Ryzen 7 7800X3D is by far the superior chip over the 13900K in terms of both outright performance and value. However, the Core i9-13900K is a better option than the 7800X3D if you use productivity applications frequently, and ensuring the highest level of performance is paramount. You should also consider that AMD has both the Ryzen 9 7950X3D and Ryzen 97900X3D on offer, both of which offer more cores for the productivity minded while maintaining 13900K-beating levels of gaming performance. Just be prepared to pay for the privilege of faster gaming performance.<br><br>When it comes to competing in gaming, the 13900K&apos;s biggest foe comes in the form of the Core i7-13700K — the 13900K is only 1.5% faster in gaming but costs 39% more cash (an extra $163). That makes the 13700K the obvious Intel pick for gaming-focused rigs. Additionally, although the 7800X3D beats the 13700K by 14% in gaming, the 13700K is competitive in terms of both raw and system-level fps-per-dollar pricing metrics, though you might have to make a few reasonable tradeoffs.<br><br>The Ryzen 7 7800X3D beats the 13700K by 14% in gaming but suffers from much lower performance than the standard Ryzen 7000 models in productivity applications, so you&apos;ll need to be aware of the tradeoffs. If you&apos;re looking for strong gaming performance paired with the ability to cut through heavier workloads, the Intel Core i7-13700K is a solid all-rounder at $417. For instance, the 13700K is 22% faster in single-threaded and 51% faster in multi-threaded work than the 7800X3D, and you can opt for the graphics-less $390 13700KF to save some extra cash.<br><br>AMD&apos;s 3D V-Cache tech doesn&apos;t accelerate all games evenly, so the lead could vary depending on your gaming selection. In either case, the Ryzen 7 7800X3D is the current gaming champ, and it often isn&apos;t a close contest. That&apos;s especially true in some game titles, like <em>Microsoft Flight Simulator 2021</em> and <em>F1 2021</em>. The chip also drops into AM5 motherboards that support the latest connectivity tech, like PCIe 5.0 and DDR5, and AMD plans to support the platform until 2025+. In contrast, Intel’s current round of motherboards will only support one more generation of chips, so upgradeability remains an advantage for AMD.<br><br>The 7800X3D also holds the advantage in all power consumption metrics, including peak power and efficiency, ranking among the best we’ve ever tested. That results in more forgiving cooling requirements and a cooler and quieter system. On the other end of the spectrum, overclocking is becoming increasingly less interesting on the high end for most enthusiasts — you&apos;ll get a better payoff in the mid-range and low-end of the market. The Intel and AMD processors all provide at least some uplift after overclocking, making that contest a wash.<br><br>Given AMD&apos;s history of lower-than-MSRP pricing several months after launch, we think the Ryzen 7 7800X3D will eventually become another great chip for value seekers, particularly as platform-level costs continue to recede. If you&apos;re after an all-rounder, the Core i7-13700K is the better choice. If you&apos;re after the fastest gaming chip on the market, the Ryzen 7 7800X3D offers a lower-cost pathway to the very best that AMD&apos;s 3D V-Cache has to offer than you&apos;ll pay with the Ryzen 9 X3D chips. If you&apos;re willing to accept the tradeoffs, the Ryzen 7 7800X3D is the fastest gaming chip money can buy, earning a leading spot on our list of the <a href="https://www.tomshardware.com/reviews/best-cpus,3986.html">best CPUs for gaming</a>.</p><ul><li><strong>MORE: </strong><a href="https://www.tomshardware.com/features/amd-vs-intel-cpus"><strong>AMD vs Intel</strong></a></li><li><strong>MORE: </strong><a href="https://www.tomshardware.com/news/amd-zen-4-ryzen-7000-release-date-specifications-pricing-benchmarks-all-we-know-specs"><strong>Zen 4 Ryzen 7000</strong></a><strong> All We Know</strong></li><li><strong>MORE: </strong><a href="https://www.tomshardware.com/news/intel-13th-gen-raptor-lake-release-date-specifications-pricing-benchmarks-all-we-know-specs"><strong>13th-Gen Intel Raptor Lake</strong></a><strong> All We Know </strong></li></ul><div ><table><caption>AMD Ryzen 7 7800X3D vs Intel Core i9-13900K and Core i7-13700K Test System Config</caption><tbody><tr><td class="firstcol " ><strong>Intel Socket 1700 DDR5 (Z790)</strong></td><td  ><strong>Core i9-13900KS, Core i9-13900K, Core i7-13700K</strong></td></tr><tr><td class="firstcol " >Motherboard</td><td  >MSI MPG Z790 Carbon WiFi</td></tr><tr><td class="firstcol " >RAM</td><td  >G.Skill Trident Z5 RGB DDR5-6800 - Stock: DDR5-5600 | OC: XMP DDR5-6800</td></tr><tr><td class="firstcol " ><strong>AMD Socket AM5 (X670E)</strong></td><td  >Ryzen 7 7800X3D, Ryzen 9 7950X3D, 7900X3D, 7950X, 7900X, Ryzen 7 7700X</td></tr><tr><td class="firstcol " >Motherboard</td><td  >ASRock X670E Taichi</td></tr><tr><td class="firstcol " >RAM</td><td  >G.Skill Trident Z5 Neo DDR5-6000 - Stock: DDR5-5200 | OC/PBO: DDR5-6000</td></tr><tr><td class="firstcol " ><strong>AMD Socket AM4 (X570)</strong></td><td  >Ryzen 9 5800X3D, 5800X, 5950X</td></tr><tr><td class="firstcol " >Motherboard</td><td  >MSI MEG X570 Godlike</td></tr><tr><td class="firstcol " >RAM</td><td  >2x 8GB Trident Z Royal DDR4-3600 - Stock: DDR4-3200 | OC/PBO: DDR4-3800</td></tr><tr><td class="firstcol " ><strong>All Systems</strong></td><td  >2TB Sabrent Rocket 4 Plus, Silverstone ST1100-TI, Open Benchtable, Arctic MX-4 TIM, Windows 11 Pro</td></tr><tr><td class="firstcol " >Gaming GPU</td><td  >Asus RTX 4090 ROG Strix OC</td></tr><tr><td class="firstcol " >Application GPU</td><td  >Nvidia GeForce RTX 2080 Ti FE</td></tr><tr><td class="firstcol " ><strong>Cooling</strong></td><td  >Corsair H150i, Stock Cooler</td></tr><tr><td class="firstcol " >Overclocking note</td><td  >All configurations with overclocked memory also have tuned core frequencies and/or lifted power limits.</td></tr></tbody></table></div><iframe src="https://content.jwplatform.com/players/dBMx1ASv.html" id="dBMx1ASv" title="How to Choose a CPU" width="960" height="540" frameborder="0" scrolling="auto" allowfullscreen></iframe>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Arm-Based CPUs Could Double Notebook PC Market Share by 2027: Report ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/news/arm-based-cpus-set-to-double-notebook-pc-market-share-by-2027</link>
                                                                            <description>
                            <![CDATA[ Arm SoCs’s PC market share increased to 12.7% last year, set to grow further. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">rSrn3Z8JGeFp4k2BhtcNrS</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/JzSwR8ZZeuY7Hu3jLfuTmF-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Tue, 11 Apr 2023 17:26:57 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 12:42:31 +0000</updated>
                                                                                                                                            <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                <author><![CDATA[ ashilov@gmail.com (Anton Shilov) ]]></author>                    <dc:creator><![CDATA[ Anton Shilov ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/uMZ5kNphxA2Ut6whdLaSQV.png ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Anton Shilov has been in the PC industry since 1990s playing games, building PCs, and writing stories about pretty much everything that relates to PCs, Macs, smartphones, tablets, and even fab equipment. Over his career, he has worked at a variety of high-ranking websites, including AnandTech, EE Times, TechRadar, X-bit labs, and now Tom&#039;s Hardware. When Anton is not reading or writing about something high-tech, he is probably watching a good movie, playing a video game, or spending time with his family.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/JzSwR8ZZeuY7Hu3jLfuTmF-1280-80.jpg">
                                                            <media:credit><![CDATA[Apple]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[MacBook Pro 14 and 16]]></media:description>                                                            <media:text><![CDATA[MacBook Pro 14 and 16]]></media:text>
                                <media:title type="plain"><![CDATA[MacBook Pro 14 and 16]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/JzSwR8ZZeuY7Hu3jLfuTmF-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>System-on-chips based on Arm instruction set architecture now command a 14% market share, but they are poised to at least double their share in several years, reports <a href="https://www.counterpointresearch.com/arm-based-pcs-to-nearly-double-market-share-by-2027/">Counterpoint Research</a>. Analysts note two main advantages that Arm-powered SoCs have over their x86 counterparts for now: lower overall power consumption and customization enabling richer features and higher performance. </p><p>Arm-based SoCs will command a 15% notebook processor revenue share of this year, but their share could increase to 25% in 2027. Meanwhile, Intel&apos;s share will decrease from 68% this year to 60% in 2027, whereas AMD&apos;s share will drop from 16.7% to 14.4%. </p><p>Nowadays, the vast majority (90%) of Arm-based notebooks come from Apple, limiting their growth as Microsoft&apos;s Windows is the world&apos;s most popular operating system. However, Counterpoint believes that once Qualcomm develops competitive Arm SoCs compatible with Windows, Arm&apos;s market share in the PC world will increase. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:768px;"><p class="vanilla-image-block" style="padding-top:47.14%;"><img id="" name="NB-Shipment-by-CPU-SoC-Type-768x362.jpg" alt="Counterpoint Research" src="https://cdn.mos.cms.futurecdn.net/ryKKy2ZmDmbNrN95maE6EJ.jpg" mos="" align="middle" fullscreen="1" width="768" height="362" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/ryKKy2ZmDmbNrN95maE6EJ.jpg' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Counterpoint Research)</span></figcaption></figure><p>Arm-based SoCs have several benefits over x86 CPUs, such as reduced power consumption and better thermal management. Designed with energy efficiency in mind, these SoCs can be tailored to specific power needs, making them perfect for mobile devices and laptops where battery life is vital. Also, Arm-based SoCs can integrate a larger number of high-performance CPU cores and tightly integrated memory, something that not all x86 CPUs can offer. In addition, custom cores in these SoCs provide advanced features that off-the-shelf x86 processor cores do not offer these days, leading to enhanced hardware and operating system integration, the analysts note. </p><p>Also, Counterpoint mentions the built-in AI capabilities of Apple&apos;s SoCs and believes that those capabilities can be used for such workloads as image and video encoding and compression, noise cancellation, image recognition and vocal enhancement. </p><p>Counterpoint Research believes large PC vendors can introduce custom Arm SoCs tailored to their needs and featuring differentiation. For example, lower-power Arm processors can be used to build tablet-notebook hybrids that are lighter and longer lasting compared to today&apos;s 2-in-1 and convertibles. </p><p>As more makers with knowledge of Arm SoCs enter the market (e.g., smartphone suppliers), they contribute their know-how in Arm-based hardware and software, further enhancing the appeal of Arm-based PCs. The growing availability of native Arm-based applications will also improve user comfort and familiarity with the platform. The shift towards Arm-based PCs is anticipated to persist, and their market share is projected to rise substantially in the upcoming years. </p><p>What is noteworthy is that for now, Counterpoint Research makes no predictions about Arm adoption by desktops. While Arm SoCs have an indisputable advantage for laptops, desktops have different requirements. For example, they take advantage of high performance, and power consumption is not always crucial for desktops. Therefore, whether Arm will gain a significant share of the desktop space remains to be seen.</p><iframe src="https://content.jwplatform.com/players/dBMx1ASv.html" id="dBMx1ASv" title="How to Choose a CPU" width="960" height="540" frameborder="0" scrolling="auto" allowfullscreen></iframe>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Raja Koduri Reunites with Jim Keller via Tenstorrent Board of Directors ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/news/raja-koduri-joins-tenstorrent-bod</link>
                                                                            <description>
                            <![CDATA[ Raja Koduri joins Jim Keller and Ljubisa Bajic at Tenstorrent. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">b2Nin7bCnSq3LevmYs5xLQ</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/WAp8EUaWxn2tJftxuGXpTb-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Thu, 06 Apr 2023 16:40:57 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 08:54:05 +0000</updated>
                                                                                                                                            <category><![CDATA[Tech Industry]]></category>
                                                                                                <author><![CDATA[ ashilov@gmail.com (Anton Shilov) ]]></author>                    <dc:creator><![CDATA[ Anton Shilov ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/uMZ5kNphxA2Ut6whdLaSQV.png ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Anton Shilov has been in the PC industry since 1990s playing games, building PCs, and writing stories about pretty much everything that relates to PCs, Macs, smartphones, tablets, and even fab equipment. Over his career, he has worked at a variety of high-ranking websites, including AnandTech, EE Times, TechRadar, X-bit labs, and now Tom&#039;s Hardware. When Anton is not reading or writing about something high-tech, he is probably watching a good movie, playing a video game, or spending time with his family.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/WAp8EUaWxn2tJftxuGXpTb-1280-80.jpg">
                                                            <media:credit><![CDATA[Intel]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Intel&#039;s Raja Koduri]]></media:description>                                                            <media:text><![CDATA[Intel&#039;s Raja Koduri]]></media:text>
                                <media:title type="plain"><![CDATA[Intel&#039;s Raja Koduri]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/WAp8EUaWxn2tJftxuGXpTb-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Just two weeks after <a href="https://www.tomshardware.com/news/raja-koduri-leaves-intel-to-found-software-start-up">retiring from Intel</a>, Raja Koduri joined the board of directors of Tenstorrent, an AI and high-performance RISC-V CPU company that intends to challenge the blue giant in the coming years, as noticed by <a href="https://twitter.com/SquashBionic/status/1643795171572854785">@SquashBionic</a>. A renowned developer of GPUs for graphics and compute, Raja Koduri will be joining his former colleagues from AMD, ATI, and Intel.</p><p>Tenstorrent is developing datacenter solutions comprising of RISC-V-based AI/ML accelerators as well as high-performance RISC-V general purpose processors. The company was established in 2016 by Ljubisa Bajic, and it is presently led by Jim Keller, a renowned CPU architect who has spearheaded the creation of revolutionary processor architectures at companies such as Apple, AMD, and DEC. (We recently <a href="https://www.tomshardware.com/news/tenstorrent-shares-roadmap-of-ultra-high-performance-risc-v-cpus-and-ai-accelerators">outlined Tenstorrent&apos;s short and mid-term plans</a>.)</p><p>Truth to be told, a position in the board of directors does not imply that Raja will be able to influence development of CPUs or AI accelerators. Yet, he will have his word when setting Tenstorrent&apos;s strategic goals and strategic roadmap, something that is particularly important. Being developer of AI accelerators and high-performance RISC-V CPUs, Tenstorrent is essentially travelling in uncharted watersm since AI-related technologies are changing rapidly, whereas the open-source RISC-V microarchitecture is poised to change fast in general. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2048px;"><p class="vanilla-image-block" style="padding-top:45.02%;"><img id="" name="Fs_u_0BXoAAkprz.jpeg" alt="Tenstorrent" src="https://cdn.mos.cms.futurecdn.net/xymqiaETMscrW4wYYqe4x6.jpeg" mos="" align="middle" fullscreen="1" width="2048" height="922" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/xymqiaETMscrW4wYYqe4x6.jpeg' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Tenstorrent/@SquashBionic)</span></figcaption></figure><p>To a large degree, development of AI and RISC-V hardware these days resembles development of GPUs back in the 1990&apos;s and 2000&apos;s when companies tried a variety of approaches and usually changed microarchitectures radically once in a year or two. That&apos;s something that we barely see these days in the fields of x86 and Arm CPUs as well as GPUs from companies like Arm, AMD, Nvidia, and Intel.</p><p>Koduri has already worked both with Jim Keller and Ljubisa Bajic while at AMD (with both), Intel (Keller), and Apple (Keller). Most recently Koduri and Keller worked together at Intel developing high-performance compute GPUs and CPUs, respectively. While the two have very different backgrounds and fields of expertise, both have plenty of experience in building high-performance hardware, something that Tenstorrent can certainly take advantage of. </p><iframe src="https://content.jwplatform.com/players/zYBgfFoA.html" id="zYBgfFoA" title="Buy the Right CPU" width="1920" height="1080" frameborder="0" scrolling="auto" allowfullscreen></iframe>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Tenstorrent Shares Roadmap of Ultra-High-Performance RISC-V CPUs and AI Accelerators ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/news/tenstorrent-shares-roadmap-of-ultra-high-performance-risc-v-cpus-and-ai-accelerators</link>
                                                                            <description>
                            <![CDATA[ Tenstorrent discloses its roadmap: Wormhole, Blackhole, Grendel. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">WBvWWEHWxezzpB4uJehFk3</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/AEmbfVCqWzTbowezcvT877-1280-80.png" type="image/png" length="0"></enclosure>
                                                                        <pubDate>Thu, 30 Mar 2023 11:51:40 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 12:52:57 +0000</updated>
                                                                                                                                            <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                <author><![CDATA[ ashilov@gmail.com (Anton Shilov) ]]></author>                    <dc:creator><![CDATA[ Anton Shilov ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/uMZ5kNphxA2Ut6whdLaSQV.png ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Anton Shilov has been in the PC industry since 1990s playing games, building PCs, and writing stories about pretty much everything that relates to PCs, Macs, smartphones, tablets, and even fab equipment. Over his career, he has worked at a variety of high-ranking websites, including AnandTech, EE Times, TechRadar, X-bit labs, and now Tom&#039;s Hardware. When Anton is not reading or writing about something high-tech, he is probably watching a good movie, playing a video game, or spending time with his family.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/png" url="https://cdn.mos.cms.futurecdn.net/AEmbfVCqWzTbowezcvT877-1280-80.png">
                                                            <media:credit><![CDATA[Tenstorrent]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Tenstorrent]]></media:description>                                                            <media:text><![CDATA[Tenstorrent]]></media:text>
                                <media:title type="plain"><![CDATA[Tenstorrent]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/AEmbfVCqWzTbowezcvT877-1280-80.png" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Having assembled a team of top-notch AI and CPU engineers, start-up Tenstorrent, helmed by industry icon Jim Keller, has huge plans that involve both general-purpose processors and artificial intelligence accelerators.<br><br>At present, the company is working on the industry&apos;s first 8-wide decoding RISC-V core capable of addressing both client and HPC workloads that will be first used for a 128-core high-performance CPU aimed at data centers. The company also has a roadmap of several more generations of processors, which we&apos;ll cover below. </p><h2 id="why-risc-v">Why RISC-V?</h2><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:970px;"><p class="vanilla-image-block" style="padding-top:56.19%;"><img id="" name="tenstorrent-cards-hero-1.png" alt="Tenstorrent" src="https://cdn.mos.cms.futurecdn.net/jcwwXEeUzX2TrEmJjUnVu6.png" mos="" align="middle" fullscreen="1" width="970" height="545" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/jcwwXEeUzX2TrEmJjUnVu6.png' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Tenstorrent)</span></figcaption></figure><p>We recently spoke with Wei-Han Lien, the chief CPU architect at Tenstorrent, about the company&apos;s vision and roadmap. Lien has an impressive background, with stints at NexGen, AMD, PA-Semi, Apple, and is perhaps best known for for his work on Apple&apos;s A6, A7 (world&apos;s first 64-bit Arm SoC), and M1 CPU microarchitectures and implementation. </p><p>With many world-class engineers with vast experience in x86 and Arm designs, one may ask why Tenstorrent decided to develop RISC-V CPUs considering that the data center software stack for this instruction set architecture (ISA) is not as comprehensive as that for x86 and Arm. The answer Tenstorrent gave us is simple: x86 is controlled by AMD and Intel, and Arm is governed by Arm Holding, which limits the pace of innovation. </p><p>"Only two companies in the world can do x86 CPUs," said Wei-Han Lien. "Due to the x86 license restriction, innovation is basically controlled by one or two companies. When companies get really big, they become bureaucratic hierarchically, and the pace of innovation [slows]. […] Arm is kind of the same thing. They claim they are like a RISC-V company, but if you look at their specification, [it] becomes so complicated. It is also actually kind of dominated by one architect. […] Arm kind of dictating all the possible scenario even to architecture [license] partners." </p><p>By contrast, RISC-V is developing quickly. Since it is an open-source ISA, it is easier and faster to innovate with it, particularly when it comes to emerging and rapidly developing AI solutions, according to Tenstorrent. </p><p>"I was looking for a companion processor solution for [Tenstorrent&apos;s] AI solution, and then we wanted BF16 data type, and then we went to Arm and said, &apos;Hey, can you support us?&apos; They said &apos;no,&apos; it requires like maybe two years internal discussion and discussion with partners and whatever," explained Lien. "But we talked to SiFive; they just put it in there. So, there is no restriction, they built it for us, and it is freedom." </p><p>On the one hand, Arm Holding&apos;s approach ensures high quality of the standard as well as a comprehensive software stack, but it also means that the pace of ISA innovation gets slower, which might be a problem for emerging applications like AI processors that are meant to be developed quickly. </p><h2 id="one-microarchitecture-five-cpu-ips-in-one-year">One Microarchitecture, Five CPU IPs in One Year</h2><p>Since Tenstorrent is looking forward and addressing AI applications at large, it needs not only different system-on-chips or system-in-packages but also various CPU microarchitecture implementations and system-level architectures to hit diverse power and performance goals. This is exactly the department of Wei-Han Lien. </p><p>A humble consumer electronics SoC and a mighty server processor have little in common but can share the same ISA and microarchitecture (albeit implemented differently). This is where Lien&apos;s team comes in. Tenstorrent says that the CPU crew has developed an out-of-order RISC-V microarchitecture and implemented it in five different ways to address a variety of applications. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1650px;"><p class="vanilla-image-block" style="padding-top:77.27%;"><img id="" name="RISCV-Summit-2022-Final (1)_000008.png" alt="Tenstorrent" src="https://cdn.mos.cms.futurecdn.net/xZSPQiHr28TWdJBKLjvbgh.png" mos="" align="middle" fullscreen="1" width="1650" height="1275" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/xZSPQiHr28TWdJBKLjvbgh.png' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Tenstorrent)</span></figcaption></figure><p>Tenstorrent now has five different RISC-V CPU core IPs — with two-wide, three-wide, four-wide, six-wide, and eight-wide decoding — to use in its own processors or license to interested parties. For those potential customers who need a very basic CPU, the company can offer small cores with two-wide execution, but for those who need higher performance for edge, client PCs, and high-performance computing, it has six-wide Alastor and eight-wide Ascalon cores.  </p><p>Each out-of-order Ascalon (<a href="https://tenstorrent.com/risc-v/">RV64ACDHFMV</a>) core with eight-wide decode has six ALUs, two FPUs, and two 256-bit vector units, making it quite beefy. Considering that modern x86 designs use four-wide (Zen 4) or six-wide (Golden Cove) decoders, we are looking at a very capable core. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1650px;"><p class="vanilla-image-block" style="padding-top:77.27%;"><img id="" name="RISCV-Summit-2022-Final (1)_000005.png" alt="Tenstorrent" src="https://cdn.mos.cms.futurecdn.net/waPNfjysh8LBEhHraZZiTh.png" mos="" align="middle" fullscreen="1" width="1650" height="1275" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/waPNfjysh8LBEhHraZZiTh.png' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Tenstorrent)</span></figcaption></figure><p>Wei-Han Lien was one of the designers responsible for Apple&apos;s &apos;wide&apos; CPU microarchitecture, which can execute up to eight instructions per clock. For example, Apple&apos;s A14 and M1 SoCs feature eight-wide high-performance Firestorm CPU cores, and two years after these were introduced, they are still among the most power-efficient designs in the industry. Lien is probably one of the industry&apos;s best specialists in &apos;wide&apos; CPU microarchitecture, and, as far as we understand, the only processor designer who leads a team of engineers developing an eight-wide RISC-V high-performance CPU core. </p><p>In addition to a variety of RISC-V general-purpose cores, Tenstorrent has its proprietary Tensix cores tailored for neural network inference and training. Each Tensix core comprises of five RISC cores, an array math unit for tensor operations, a SIMD unit for vector operations, 1MB or 2MB of SRAM, and fixed function hardware for accelerating network packet operations and compression/decompression. Tensix cores support a variety of data formats, including BF4, BF8, INT8, FP16, BF16, and even FP64.</p><h2 id="impressive-roadmap">Impressive Roadmap</h2><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2022px;"><p class="vanilla-image-block" style="padding-top:56.33%;"><img id="" name="tenstorrent-roadmap-march-2023.png" alt="Tenstorrent" src="https://cdn.mos.cms.futurecdn.net/uMSitvb2KSfxgoTQt74d8d.png" mos="" align="middle" fullscreen="1" width="2022" height="1139" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/uMSitvb2KSfxgoTQt74d8d.png' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Tenstorrent)</span></figcaption></figure><p>Right now, Tenstorrent has two products: a machine learning processor called <strong>Grayskull </strong>that offers performance of around 315 INT8 TOPS that plugs into a PCIe Gen4 slot, as well as a networked <strong>Wormhole</strong> ML processor with approximately 350 INT8 TOPS of performance and uses a GDDR6 memory subsystem, a PCIe Gen4 x16 interface and has a 400GbE connection to other machines. </p><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/nQAFJpz3QFqSSdPJvQNAf8.png" alt="Tenstorrent" /><figcaption><small role="credit">Tenstorrent</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/sZ5jXi4scJ4bnCmCNfbQTe.png" alt="Tenstorrent" /><figcaption><small role="credit">Tenstorrent</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/xkpLcXaTQkQTVbxbYhgTD9.png" alt="Tenstorrent" /><figcaption><small role="credit">Tenstorrent</small></figcaption></figure></figure><p>Both devices require a host CPU and are available as add-in-boards as well as inside pre-built Tenstorrent servers. One 4U Nebula server containing 32 Wormhole ML cards offers around 12 INT8 POPS of performance at 6kW.</p><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/whxd4AbqzD3FrkqAjHwWJi.png" alt="Tenstorrent" /><figcaption><small role="credit">Tenstorrent</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/aGTpWKumoYDcCLcwD7pYPi.png" alt="Tenstorrent" /><figcaption><small role="credit">Tenstorrent</small></figcaption></figure></figure><p>Later this year, the company plans to tape out its first standalone CPU+ML solution — <strong>Black Hole</strong> — that combines 24 SiFive X280 RISC-V cores and a multitude of 3rd Generation Tensix cores interconnected using two 2D torus networks running in opposite directions for machine learning workloads. The device will offer 1 INT8 POPS of compute throughput (approximately three times performance uplift compared to its predecessor), eight channels of GDDR6 memory, 1200 Gb/s Ethernet connectivity, and PCIe Gen5 lanes.  </p><p>In addition, the company is looking forward to adding a 2TB/s die-to-die interface for dual-chip solutions as well as for future use. This chip will be implemented on a 6nm-class fabrication process (we would expect it to be TSMC N6, but Tenstorrent has not confirmed this), yet at 600mm^2, it will be smaller than its predecessors produced on TSMC&apos;s 12nm-class node. One thing to remember is that Tenstorrent has not taped out its Blackhole yet, and its final feature set may differ from what the company discloses today. </p><p>Next year the company will release its ultimate product: a multi-chiplet solution called <strong>Grendel</strong> that features its own Ascalon general-purpose cores featuring its own RISC-V microarchitecture with eight-wider decoding as well as a Tensix-based chiplet for ML workloads.  </p><p>Grendel is Tenstorrent&apos;s ultimate product set to be released next year: the multi-chiplet solution comprises an Aegis chiplet featuring high-performance Ascalon general-purpose cores and a chiplet or chiplets with Tensix cores for ML workloads. Depending on business requirements (and the financial capabilities of the company), Tenstorrent may implement an AI chiplet using a 3nm-class process technology and therefore take advantage of higher transistor density and Tensix core count, or it can keep using Black Hole chiplet for AI workloads (and even assign some work to 24 SiFive X280 cores, the company says). The chiplets will communicate with each other using the aforementioned 2TB/s interconnect.   </p><p>The Aegis chiplet with 128 general-purpose RISC-V eight-wide Ascalon cores organized in four 32-core clusters with inter-cluster coherency will be made using a 3nm-class process technology. In fact, the Aegis CPU chiplet will be among the first to use a 3nm-class fabrication process, something that will probably put the company on the map when it comes to high-performance CPU designs. </p><p>Meanwhile, Grendel will use an LPDDR5 memory subsystem, PCIe, and Ethernet connectivity, so it will offer tangibly higher inference and training performance than existing solutions from the company. Speaking of Tensix cores, it is necessary to note that while all of Tenstorrent&apos;s AI cores are called Tensix, these cores actually evolve.</p><p>"The [Tensix] changes are evolutionary, but they are definitely there," explained Ljubisa Bajic, the company&apos;s founder. "[They add] new data formats, change ratios of FLOPS/SRAM capacity, SRAM bandwidth, network-on-chip bandwidth, new sparsity features, and features in general."</p><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/bjPAmMgRWtMMSaU2sX64sh.png" alt="Tenstorrent" /><figcaption><small role="credit">Tenstorrent</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/DpyJpASWZV4Z7MmJFUranh.png" alt="Tenstorrent" /><figcaption><small role="credit">Tenstorrent</small></figcaption></figure></figure><p>It is interesting to note that different Tenstorrent slides mention different memory subsystems for Black Hole and Grendel products. This is because the company is always looking at the most efficient memory technology and because it licenses DRAM controllers and physical interfaces (PHY). Therefore it has some flexibility when choosing the exact type of memory. In fact, Lien says that Tenstorrent is also developing its own memory controllers for future products, but for 2023 ~ 2024 solutions, it intends to use third-party MCs and PHYs. Meanwhile, for now, Tenstorrent does not plan to use any exotic memory, such as HBM, due to cost concerns. </p><h2 id="business-model-selling-solutions-and-licensing-ip">Business Model: Selling Solutions and Licensing IP</h2><p>While Tenstorrent has five different CPU IPs (albeit based on the same microarchitecture), it only has AI/ML products in the pipeline (if fully configured servers are not taken into account) that use either SiFive&apos;s X280 or Tenstorrent&apos;s eight-wide Ascalon CPU cores. Thus, it is reasonable to ask why it needs so many CPU core implementations.  </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:2560px;"><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="" name="tenstorrent-wormhole-Connectors-hero.png" alt="Tenstorrent" src="https://cdn.mos.cms.futurecdn.net/xkpLcXaTQkQTVbxbYhgTD9.png" mos="" align="middle" fullscreen="1" width="2560" height="1440" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/xkpLcXaTQkQTVbxbYhgTD9.png' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Tenstorrent)</span></figcaption></figure><p>The short answer to this question is that Tenstorrent has a unique business model that includes IP licensing (in RTL, hard macro, or even GDS forms), selling chiplets, selling add-in ML accelerator cards or ML solutions featuring CPU and ML chiplets, and selling fully configured servers containing these cards.  </p><p>Companies building their own SoCs can license RISC-V cores developed by Tenstorrent, and a broad portfolio of CPU IPs allows the company to compete for solutions requiring different levels of performance and power.  </p><p>Server vendors can build their machines withTenstorrent&apos;s Grayskull and Wormhole accelerator cards or Blackhole and Grendel ML processors. Meanwhile, those entities that do not want to build hardware can just buy pre-built Tenstorrent servers and deploy them. </p><p>Such a business model looks somewhat controversial since, in many cases, Tenstorrent competes and will compete against its own customers. Yet, at the end of the day, Nvidia offers both add-in cards and pre-built servers based on these boards, and it doesn&apos;t look like companies like Dell or HPE are too worried about this because they offer solutions for specific customers, not just building blocks.</p><h2 id="summary">Summary</h2><p>Tenstorrent jumped onto the radar about two years ago with the hire of Jim Keller. In two years, the company recruited a host of top engineers who are developing high-performance RISC-V cores for data center-grade AI/ML solutions as well as systems. Among the development team&apos;s achievements is the world&apos;s first eight-wide RISC-V general-purpose CPU core, as well as an appropriate system hardware architecture that can be used for AI as well as HPC applications. </p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1920px;"><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="" name="Galaxy-Full-Rack-2-tenstorrent-hero.png" alt="Tenstorrent" src="https://cdn.mos.cms.futurecdn.net/ggExng5LtnW9jT7VDpgN28.png" mos="" align="middle" fullscreen="1" width="1920" height="1080" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/ggExng5LtnW9jT7VDpgN28.png' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Tenstorrent)</span></figcaption></figure><p>The company has a comprehensive roadmap that includes both high-performance RISC-V-based CPU chiplets as well as advanced AI accelerator chiplets, which promise to enable capable solutions for machine learning. Keeping in mind that AI and HPC are major megatrends poised for explosive growth, offering AI accelerators and high-performance CPU cores seems like a very flexible business model. </p><p>Both AI and HPC markets are highly competitive, so getting some of the world&apos;s best engineers onboard is a must when you want to compete against the likes of established rivals (AMD, Intel, Nvidia) and emerging players (Cerebras, Graphcore). Like large chip developers, Tenstorrent has its own general-purpose CPU and AI/ML accelerator hardware, which is a unique advantage. Meanwhile, since the company uses RISC-V ISA, there are markets and workloads that it cannot address for now, at least as far as CPUs are concerned. </p><iframe src="https://content.jwplatform.com/players/zYBgfFoA.html" id="zYBgfFoA" title="Buy the Right CPU" width="1920" height="1080" frameborder="0" scrolling="auto" allowfullscreen></iframe>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Qualcomm Nuvia Team's Snapdragon 8cx Gen 4 Processor Leaked in Geekbench ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/news/qualcomm-nuvia-teams-snapdragon-8cx-gen-4-processor-leaked-in-geekbench</link>
                                                                            <description>
                            <![CDATA[ Qualcomm's Snapdragon 8cx Gen 4 appears to have been put through Geekbench tests. If these results are real, it looks like some optimization is still needed. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">CDUmDXhFAyLmMUb3LDx2Ca</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/u3QReS32FgaqoVdJHtM5WL-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Wed, 29 Mar 2023 15:27:16 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 08:56:13 +0000</updated>
                                                                                                                                            <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                                    <dc:creator><![CDATA[ Mark Tyson ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/56vqMYLDaKRHPhHZgbADFR.jpg ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;Mark&#039;s enthusiasm for computers dampened at an early age by the rubber-keyed Sinclair Spectrum 48K and feelings of Commodore 64 envy. However, in the mid-80s, hope in a digital future was rekindled by the purchase of an Atari 520 STe. Since that time Mark has used a multitude of computers for fun and professional endeavors. He often owned both Macs and PCs but went cold on the former after OS9 was killed off, and warmed to the latter with the introduction of Windows XP.&lt;br&gt;
&lt;br&gt;
Early work years were spent in artwork and reprographics but in the late noughties, Mark started to blog about computers, Taiwanese food culture, and guitar design. This activity led to a full-time position writing about breaking PC tech news for HEXUS, for the best part of a decade. When HEXUS was abruptly closed, Mark helped with the foundation of Club386, before finding a new home at Tom&#039;s Hardware.&lt;br&gt;
&lt;br&gt;
When not wearing through the keycap legends on his PC keyboards, Mark can be found wandering the computer malls of Taiwan&#039;s neon-lit conurbations and enjoying local and international cuisine.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/u3QReS32FgaqoVdJHtM5WL-1280-80.jpg">
                                                            <media:credit><![CDATA[Qualcomm]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Snapdragon 8cx Gen 4 ]]></media:description>                                                            <media:text><![CDATA[Snapdragon 8cx Gen 4 ]]></media:text>
                                <media:title type="plain"><![CDATA[Snapdragon 8cx Gen 4 ]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/u3QReS32FgaqoVdJHtM5WL-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>A &apos;Qualcomm Snapdragon 8cx Next Gen&apos; processor has appeared in Geekbench’s online result browser. The listing was unearthed by Windows on Arm (WoA) developer <a href="https://twitter.com/gus33000/status/1640986448026279936">Gustave Monce</a>. Subsequent raw data digging performed by <a href="https://twitter.com/Za_Raczke/status/1640990206676418560">Kuba Wojciechowski</a> revealed that this &apos;Next Gen&apos; part is the Snapdragon 8cx Gen 4 (if a genuine result). This Qualcomm processor, codenamed Hamoa, is notable as it is expected to be the product which debuts the Nuvia team&apos;s CPU cores for a significant boost in performance.</p><div class="see-more see-more--clipped"><blockquote class="twitter-tweet hawk-ignore" data-lang="en"><p lang="en" dir="ltr">An early sample of Qualcomm Snapdragon 8cx Gen 4 (Hamoa) just showed up on geekbench!It's an early sample that doesn't tell us a lot about the performance, but at least it confirms the core layout (8+4). https://t.co/20kGFf0knh pic.twitter.com/GPw9remvu6<a href="https://twitter.com/Za_Raczke/status/1640990206676418560">March 29, 2023</a></p></blockquote><div class="see-more__filter"></div></div><p>We&apos;ve previously discussed the impact <a href="https://www.tomshardware.com/news/qualcomm-promises-nuvia-socs-for-pcs-in-2023">Nuvia’s CPU core designs</a> are expected to have on the world of PCs powered by the Arm architecture. To recap: the Nuvia team is headed up by three senior Apple execs who departed the Cupertino company after the first Apple Silicon (M1) projects had been successfully delivered. </p><p>Before they were <a href="https://www.tomshardware.com/news/qualcomm-to-acquire-cpu-designer-nuvia-focuses-on-high-performance-processors">bought up by Qualcomm</a>, Nuvia published a series of slides touting the astounding performance of their CPU cores. You can look back at <a href="https://www.tomshardware.com/news/qualcomm-confirms-nuvia-arm-chips-late-2023">previous articles for the chart(s)</a> but to quickly summarize: they showed the expected performance per watt of the Nuvia CPU cores cast a very long shadow on the contemporary x86 competition (AMD, Intel), as well as Apple’s best Arm architecture SoCs at the time. </p><p>In a nutshell, Qualcomm’s release of Nuvia core CPUs for Windows PCs should have a similar disruptive impact as the launch of the original Apple Silicon (M1) — but on the more expansive world of Windows PCs.</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1257px;"><p class="vanilla-image-block" style="padding-top:52.59%;"><img id="" name="inv-day-slide.jpg" alt="Qualcomm Nuvia hopes" src="https://cdn.mos.cms.futurecdn.net/VcPJe2FVqMBDDzGceTC7yb.jpg" mos="" align="middle" fullscreen="1" width="1257" height="661" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/VcPJe2FVqMBDDzGceTC7yb.jpg' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Qualcomm)</span></figcaption></figure><p>Circling back to today’s Geekbench leak, let&apos;s take a look at the CPU information section, to start. According to this data, the Snapdragon 8cx Gen 4 is a 12-core SoC with a hybrid 8+4 core configuration. <a href="https://www.tomshardware.com/news/alleged-qualcomm-snapdragon-8cx-gen-4-specs-leak">Previous leaks</a> indicate, more specifically, that there are eight performance cores and four efficiency cores. </p><p>The data shows the SoC’s base frequency was 2.38 GHz. Previously, we heard the P-cores could boost to around 3.4 GHz, with the E-cores somewhat slower at around 2.5 GHz. An &apos;Adreno&apos; GPU is mentioned in the system information, but it does not otherwise improve on earlier reports, which pointed to the presence of an integrated Adreno 740 GPU.</p><figure class="van-image-figure  inline-layout" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' style="max-width:1038px;"><p class="vanilla-image-block" style="padding-top:77.55%;"><img id="" name="geekbench-result-8cx-gen-4.jpg" alt="Snapdragon 8cx gen 4 benchmark" src="https://cdn.mos.cms.futurecdn.net/cX4t8db7rvHJGjbHZi68h5.jpg" mos="" align="middle" fullscreen="1" width="1038" height="805" attribution="" endorsement="" class="expandable"><a href='https://cdn.mos.cms.futurecdn.net/cX4t8db7rvHJGjbHZi68h5.jpg' target='_blank' class='expand-button icon-expand-image icon' ></a></p></div></div><figcaption itemprop="caption description" class=" inline-layout"><span class="credit" itemprop="copyrightHolder">(Image credit: Future)</span></figcaption></figure><p>These Geekbench results — assuming they&apos;re genuine — are, unfortunately, nothing to get excited about. Monce reckons this is partly due to the chip under test being an "early engineering sample." Other reasons for the clock/performance shortfalls could be the influences of early firmware and driver software. The <a href="https://www.tomshardware.com/news/qualcomms-first-5nm-pc-chip-8cx-gen-3-is-coming-next-year">Qualcomm Snapdragon 8cx Gen 3</a> (3.0 GHz octa-core) easily beats this Gen 4 chip in both the 1T and nT Geekbench tests.</p><p>While it&apos;s great to see indicators that suggest Snapdragon 8cx Gen 4 chips are &apos;in the wild,&apos; it&apos;s hard to believe the hype. We hope things will change (and that leaks will be more revealing and impressive) in upcoming months. Remember, there&apos;s still plenty of time for optimization, as <a href="https://www.tomshardware.com/news/qualcomm-nuvia-chip-sampling-delays">Qualcomm and partners</a> aren&apos;t expected to launch products until the end of 2023 or in early 2024.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Gordon Moore, Intel Co-Founder and Creator of Moore's Law, Dies at Age 94 ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/news/gordon-moore-intel-co-founder-and-creator-of-moores-law-dies-at-age-94</link>
                                                                            <description>
                            <![CDATA[ Intel co-founder Gordon Moore, famous for defining Moore's Law, has passed away peacefully at his home in Hawaii. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">xyrEiGter8WZD6Tkqbrz8k</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/iZwE28XfKcFR4yMqeMxP3b-1280-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Sat, 25 Mar 2023 00:58:05 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 12:54:59 +0000</updated>
                                                                                                                                            <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                <author><![CDATA[ palcorn@outlook.com (Paul Alcorn) ]]></author>                    <dc:creator><![CDATA[ Paul Alcorn ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/RZRmFeQfPy3etHjBQitbGW.jpeg ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;As a teenager, Paul scraped up enough money to buy a 486-powered PC with a turbo button (yes, a turbo button). Back when floppies were still popular he was already chasing after the fastest spinners for his personal computer, which led him down the long and winding storage road, covering enterprise storage. His current focus is on consumer processors, though he still keeps a close eye on the latest storage news. In his spare time, you’ll find Paul hanging out with his kids or indulging his love of the Kansas City Chiefs and Royals.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/iZwE28XfKcFR4yMqeMxP3b-1280-80.jpg">
                                                            <media:credit><![CDATA[Intel]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Gordon Moore]]></media:description>                                                            <media:text><![CDATA[Gordon Moore]]></media:text>
                                <media:title type="plain"><![CDATA[Gordon Moore]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/iZwE28XfKcFR4yMqeMxP3b-1280-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Intel and the Gordon and Betty Moore Foundation announced that Intel co-founder Gordon Moore died peacefully this evening, surrounded by his family in Hawaii, at the age of 94. Moore co-founded Intel with his longtime friend Robert Noyce in 1968, but is perhaps best known as the creator of the eponymous Moore&apos;s Law. Intel has posted his <a href="https://www.intel.com/content/www/us/en/newsroom/news/gordon-moore-obituary.html">obituary here</a>.<br><br>Moore&apos;s Law, originally penned in 1965, stated that the number of transistors on an integrated circuit would double every year. This law served as a goal that helped drive the semiconductor industry forward. In 1975, Moore revised this law to predict a doubling of transistors every two years, which, despite plenty of debate, has largely held true to this day.</p><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/qwExAW7zN9Szj4EjdENSSb.jpg" alt="Gordon Moore" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/xq6ntBFRphrCTvGcaTtZMb.jpg" alt="Gordon Moore" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/qE9hRtRSAYS5TGdLfkAUGb.jpg" alt="Gordon Moore" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/fLgMnHmisMdqpqjKmXDJBb.jpg" alt="Gordon Moore" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/iZwE28XfKcFR4yMqeMxP3b.jpg" alt="Gordon Moore" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/Jsf2HicsXWztMmYm3Ei6wa.jpg" alt="Gordon Moore" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/xekrhWGCHpM7nDmPARTgqa.jpg" alt="Gordon Moore" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/LCMerrtWxkMDVgvjqNCXja.jpg" alt="Gordon Moore" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/RiRWqDQZCXCAWarQXWARea.jpg" alt="Gordon Moore" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/GtTeqXDZdMc9PcjcbAScZa.jpg" alt="Gordon Moore" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/9Yqovai6DKFPBNMAfoAnTa.jpg" alt="Gordon Moore" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/wGA6iHj85r7wvKKis5wwLa.jpg" alt="Gordon Moore" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/NHNyLeet4RFajzpTj8ctFa.jpg" alt="Gordon Moore" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/4jbY6fGoJgxeBT9wfCwU8a.jpg" alt="Gordon Moore" /><figcaption><small role="credit">Intel</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/TfYAcomENg3GsNwKdpLhyZ.jpg" alt="Gordon Moore" /><figcaption><small role="credit">Intel</small></figcaption></figure></figure><p>After being part of the founding group of Fairchild Semiconductor, Moore and Noyce founded Intel in July 1968. Their first hire was Andy Grove, and the trio steered Intel to success.<br><br>Intel originally began with $2.5 million from investors and produced Static RAM (SRAM) memory. The company later shifted to processors, shipping the Intel 4004, the first commercially available microprocessor, in 1971. Intel later pioneered the x86 instruction set in 1978 when it released the now-legendary <a href="https://www.tomshardware.com/reviews/intel-core-i7-8086k-cpu-8086-anniversary,5658-2.html">Intel 8086</a>, the first building block of its empire based on x86 architectures. The company still focuses on CPUs today and is now valued at ~$167 billion. <br><br>Moore initially served as the executive vice president until 1975, then as president of the company until he was named the CEO and chairman of the board in 1979. He relinquished the role of CEO in 1987. Moore continued to serve as the chairman until 1997, when he was appointed the chairman emeritus. He held that position until he stepped down in 2006.</p><div class="see-more see-more--clipped"><blockquote class="twitter-tweet hawk-ignore" data-lang="en"><p lang="en" dir="ltr">Gordon Moore once said, “What can be done, can be outdone.” As stewards of his law, Intel will work relentlessly to exponentially outdo what he & Robert Noyce set out to do. He leaves behind a legacy that changed the lives of every person on the planet. His memory will live on.<a href="https://twitter.com/PGelsinger/status/1639418044895334400">March 25, 2023</a></p></blockquote><div class="see-more__filter"></div></div><p>In his later years, Gordon Moore was an active philanthropist, especially in the fields of environmental conservation, science, and patient care improvements. Moore and his wife of 75 years established the Gordon and Betty Moore Foundation, which has donated more than $5.1 billion to charity since its inception in 2000. </p><p>Pat Gelsinger, Intel CEO, said, “Gordon Moore defined the technology industry through his insight and vision. He was instrumental in revealing the power of transistors, and inspired technologists and entrepreneurs across the decades. We at Intel remain inspired by Moore’s Law and intend to pursue it until the periodic table is exhausted. Gordon’s vision lives on as our true north as we use the power of technology to improve the lives of every person on Earth. My career and much of my life took shape within the possibilities fueled by Gordon’s leadership at the helm of Intel, and I am humbled by the honor and responsibility to carry his legacy forward.” </p><p>Moore was a recipient of the National Medal of Technology in 1990 and the Presidential Medal of Freedom, the nation’s highest civilian honor, in 2002. He is survived by his wife of 75 years, Betty Moore, sons Kenneth and Steven, and four grandchildren.  </p><iframe src="https://content.jwplatform.com/players/dBMx1ASv.html" id="dBMx1ASv" title="How to Choose a CPU" width="960" height="540" frameborder="0" scrolling="auto" allowfullscreen></iframe>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Nvidia CEO Comments on Grace CPU Delay, Teases Sampling Silicon ]]></title>
                                                                                                                                                                                                <link>https://www.tomshardware.com/news/nvidia-ceo-jensen-huang-grace-delay</link>
                                                                            <description>
                            <![CDATA[ Nvidia CEO Jensen Huang answered our questions about the delay of the Grace CPUs and also shared more performance and technical details. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">AThT6gnTrAvFiqgU7TLunW</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/bxgDRMuPPtFxKBhh3N5PWf-1280-80.png" type="image/png" length="0"></enclosure>
                                                                        <pubDate>Wed, 22 Mar 2023 18:24:21 +0000</pubDate>                                                                                                                                <updated>Thu, 21 Aug 2025 08:45:28 +0000</updated>
                                                                                                                                            <category><![CDATA[CPUs]]></category>
                                                    <category><![CDATA[PC Components]]></category>
                                                                                                <author><![CDATA[ palcorn@outlook.com (Paul Alcorn) ]]></author>                    <dc:creator><![CDATA[ Paul Alcorn ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/RZRmFeQfPy3etHjBQitbGW.jpeg ]]></dc:source>
                                                                <dc:description><![CDATA[ &lt;p&gt;As a teenager, Paul scraped up enough money to buy a 486-powered PC with a turbo button (yes, a turbo button). Back when floppies were still popular he was already chasing after the fastest spinners for his personal computer, which led him down the long and winding storage road, covering enterprise storage. His current focus is on consumer processors, though he still keeps a close eye on the latest storage news. In his spare time, you’ll find Paul hanging out with his kids or indulging his love of the Kansas City Chiefs and Royals.&lt;/p&gt; ]]></dc:description>
                                                                                                                                                                                                                                                <media:content type="image/png" url="https://cdn.mos.cms.futurecdn.net/bxgDRMuPPtFxKBhh3N5PWf-1280-80.png">
                                                            <media:credit><![CDATA[Tom&#039;s Hardware]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Grace]]></media:description>                                                            <media:text><![CDATA[Grace]]></media:text>
                                <media:title type="plain"><![CDATA[Grace]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/bxgDRMuPPtFxKBhh3N5PWf-1280-80.png" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Nvidia teased its forthcoming Arm-based Grace CPU at GTC 2023, but the company&apos;s announcement that systems will now ship in the second half of this year represents a delay from its original launch timeline that targeted the first half of 2023. We asked Nvidia CEO Jensen Huang about the delay during a press question and answer session today, which we&apos;ll cover below. Nvidia also showed its Grace silicon for the first time and made plenty of new performance claims during its GTC keynote, including that its Arm-based Grace chips are up to 1.3X faster than x86 competitors at 60% of the power, which we&apos;ll also cover.<br><br>I asked Jensen Huang about the delay in delivering the Grace CPU and Grace Hopper Superchip systems to the end market. After he playfully pushed back about the expected release date (<a href="https://nvidianews.nvidia.com/news/nvidia-introduces-grace-cpu-superchip">it</a> <a href="https://nvidianews.nvidia.com/news/taiwans-tech-titans-adopt-worlds-first-nvidia-grace-cpu-powered-system-designs"><em>was</em></a> <a href="https://www.tomshardware.com/news/nvidia-details-grace-hopper-cpu-superchip-design-144-cores-on-4n-tsmc-process">undoubtedly</a> <a href="https://nvidianews.nvidia.com/news/nvidia-announces-cpu-for-giant-ai-and-high-performance-computing-workloads">1H23</a>, now <a href="https://blogs.nvidia.com/blog/2023/03/21/grace-cpu-energy-efficiency/">2H23</a>), he responded:<br><br>"Well, first, I can tell you that <a href="https://www.tomshardware.com/news/nvidia-details-grace-hopper-cpu-superchip-design-144-cores-on-4n-tsmc-process">Grace</a> and <a href="https://www.tomshardware.com/news/nvidia-details-grace-hopper-cpu-superchip-design-144-cores-on-4n-tsmc-process">Grace Hopper</a> are both in production, and silicon is flying through the fab now. Systems are being made, and we made a lot of announcements. The world&apos;s OEMs and computer makers are building them." Huang also remarked that Nvidia has only been working on the chips for two years, which is a relatively short time given the typical multi-year design cycle for a modern chip.<br><br>Today&apos;s definition of shipping systems can be fuzzy — the first systems from AMD and Intel often ship to hyperscalers for deployment long before the chips see general off-the-shelf availability. However, while Nvidia says it is sampling chips to customers, it hasn&apos;t said Grace is being deployed into production yet. As such, the chips are late according to the company&apos;s projections, but to be fair, perennially late chip launches from companies like Intel aren&apos;t uncommon. That highlights the difficulty of launching a new chip, even when building around the dominant x86 chips with established hardware and software platforms built upon for decades.<br><br>In contrast, Nvidia&apos;s Grace and Grace+Hopper chips are a ground-up rethinking of many of the fundamental aspects of chip design with an innovative new chip-to-chip interconnect. Nvidia&apos;s use of the Arm instruction set also means there&apos;s a heavier lift for software optimizations and porting, and the company has an entirely new platform to build.<br><br>Jensen alluded to some of that in his extended response, saying, "We started with Superchips instead of chiplets because the things we want to build are so big, And both of these are in production today. So customers are being sampled, the software is being ported to it, and we&apos;re doing a lot of testing. During the keynote, I showed a few numbers, and I didn&apos;t want to burden the keynote with a lot of numbers, but a whole bunch of numbers will be available for people to enjoy. But the performance was really quite terrific."</p><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/PAndF9oYXu8ChgSu7gLMw4.png" alt="Grace" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/PgepAEP8uAsiD4iSRZLPg4.png" alt="Grace" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/vgoFp6UTP9qA9o5YLUcNL4.png" alt="Grace" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/TtsVcXJo9HKYWvEZhdnFF5.png" alt="Grace" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure></figure><p>And Nvidia&apos;s claims are impressive. For example, in the above album, you can see the Grace Hopper chip that Nvidia showed in the flesh for the first time at GTC (<a href="https://www.tomshardware.com/news/nvidia-unveils-144-core-grace-cpu-superchip-claims-arm-chip-15x-faster-than-amds-epyc-rome">more technical details here</a>).<br><br>During the presentation, Huang claimed the chips are 1.2X faster than the &apos;average&apos; next-gen x86 server chip in an HiBench Apache Spark memory-intensive benchmark and 1.3X faster in a Google microservices communication benchmark, all while drawing only 60% of the power.<br><br>Nvidia claims this allows data centers to deploy 1.7X more Grace servers into power-limited installments, with each providing 25% higher throughput. The company <a href="https://blogs.nvidia.com/blog/2023/03/21/grace-cpu-energy-efficiency/">also claims</a> Grace is 1.9X faster in computational fluid dynamics (CFD) workloads. </p><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/sscUzdFHJZtzBVkfY2rZ2E.png" alt="Grace" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/NfVctBd3RxrxtkTvU35cuD.png" alt="Grace" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure></figure><p>However, while the Grace chips are ultra-performant and efficient in some workloads, Nvidia isn&apos;t aiming them at the general-purpose server market. Instead, the company has tailored the chips for specific use cases, like AI and cloud workloads that favor superior single-threaded and memory processing performance in tandem with excellent power efficiency.<br><br>"[..]almost every single data center is now powered limited, and we designed Grace to be extraordinarily performant in a power-limited environment," Huang told us in response to our questions. "And in that case, you have to be both really high in performance, and you have to be really low in power, and just incredibly efficient. And so, the Grace system is about two times more power/performance efficient compared to the best of the latest generation CPUs."<br><br>"And it&apos;s designed for different design points, so that&apos;s very understandable," Huang continued. "For example, what I just described doesn&apos;t matter to most enterprises. It matters a lot to cloud service providers, and it matters a lot to data centers that are powered unlimited."</p><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/iv7xR6pFotCbLWYafkUwJC.png" alt="Grace" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/Rdx2YnQRirAFS6Y9ny2umB.png" alt="Grace" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/iTNizcnnZ9DzPdNoijV4cC.png" alt="Grace" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/7B6M3GbGErYPk8F8NjW28D.png" alt="Grace" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure></figure><p>Energy efficiency is becoming more of a concern than ever, with chips like the <a href="https://www.tomshardware.com/reviews/amd-4th-gen-epyc-genoa-9654-9554-and-9374f-review-96-cores-zen-4-and-5nm-disrupt-the-data-center">AMD EPYC Genoa we recently reviewed</a> and <a href="https://www.tomshardware.com/news/intel-launches-sapphire-rapids-fourth-gen-xeon-cpus-and-ponte-vecchio-max-gpu-series">Intel&apos;s Sapphire Rapids</a> now pulling up to 400 and 350 watts, respectively. That <a href="https://www.tomshardware.com/reviews/amd-4th-gen-epyc-genoa-9654-9554-and-9374f-review-96-cores-zen-4-and-5nm-disrupt-the-data-center/3">requires exotic new air cooling solutions</a> to contain the prodigious power draw at standard settings and liquid cooling for the highest-performance options.<br><br>In contrast, Grace&apos;s lower power draw will make the chips more forgiving to cool. As revealed at GTC for the first time, Nvidia&apos;s 144-core Grace package is 5" x 8" and can fit into passively-cooled modules that are surprisingly compact. These modules still rely upon air cooling, but two can be air-cooled in a single slim 1U chassis. </p><figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/sQtbRQwBpHpuNo2ebF5NiL.png" alt="Grace" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/4msVRFPgPsWhWTFWaziTwL.png" alt="Grace" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/5vBGSN2fzih98P2PAnFNCM.png" alt="Grace" /><figcaption><small role="credit">Tom's Hardware</small></figcaption></figure></figure><p>Nvidia also showed its Grace Hopper Superchip silicon for the first time at GTC. The Superchip combines the Grace CPU with a Hopper GPU on the same package. As you can see in the album above, two of these modules can also fit into a single server chassis. You can <a href="https://www.tomshardware.com/news/nvidia-details-grace-hopper-cpu-superchip-design-144-cores-on-4n-tsmc-process">read the deep-dive details about this design here</a>.<br><br>The big takeaway with this design is that the enhanced CPU+GPU memory coherency, fed by a fat low-latency chip-to-chip connection that&apos;s seven times the speed of the PCIe interface, allows the CPU and GPU to share information held in memory at a speed and efficiency that&apos;s impossible with previous designs.<br><br>Huang explained that this approach is ideal for AI, databases, recommender systems, and large language models (LLM), all of which are in incredible demand. By allowing the GPU to access the CPU&apos;s memory directly, data transfers are streamlined to boost performance.<br><br>Nvidia&apos;s Grace chips may be running a bit behind schedule, but the company has a bevy of partners, with Asus, Atos, Gigabyte, HPE, Supermicro, QCT, Wiston, and Zt all preparing OEM systems for the market. Those systems are now expected in the second half of the year, but Nvidia hasn&apos;t said whether or not they will come towards the beginning or end of the second half. </p><iframe src="https://content.jwplatform.com/players/dBMx1ASv.html" id="dBMx1ASv" title="How to Choose a CPU" width="960" height="540" frameborder="0" scrolling="auto" allowfullscreen></iframe>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
            </channel>
</rss>