ongames.cc">Intel quietly bumps the price up of the best CPUs it's made in years to 'reflect current market dynamics'" style="max-width:100%;border-radius:12px;margin-bottom:25px">
Intel quietly bumps the price up of the best CPUs it's made in years to 'reflect current market dynamics'
If you take a gander inside your gaming PC and randomly point at any component in there, you’re almost certainly going to land on something that’s noticeably more expensive than it was just 12 months ago. And if that so happens to be an Intel Core Ultra 200S Plus chip, then that’s included too, as the recommended retail price has quietly jumped up.
As reported by HardwareLuxx, the Core Ultra 7 270K Plus and Core 5 250K Plus, as well as their iGPU-less F-variants, have gained tens of dollars on what Intel calls the ‘Recommended Customer Price’. In the case of the 270K Plus, it’s now $339 to $349, with its smaller sibling now $219 to $229.
That’s a minimum increase of $40 and $20, respectively, and while it’s not a huge leap in the grand scheme of things, a 13%/10% rise isn’t merely pennies, either.
You can probably guess why the prices have risen, but HardwareLuxx contacted Intel anyway and received the following response: “The recent pricing updates reflect current market dynamics, including rising supply chain costs and strong demand for our Intel Core Ultra 200S Plus processors. These updates are in line with recent price increases for other Intel product families based on similar factors.”
It’s worth noting that while Intel itself makes the Foveros interposer base tile in the 200K Plus chips, and packages everything together, it’s TSMC that makes everything else: the compute tile, the IO tile, and the graphics chiplet. That means if TSMC decides that all its nodes now cost a little more to run, it’s Intel (well, us) that has to pay the extra.
Gaming performance
Cyberpunk 2077 (1080p RT Ultra + DLSS Balanced)
Avg FPS
1% Low FPS
| Product | Value |
|---|---|
| Intel Core Ultra 7 270K Plus | 119 Avg FPS, 98 1% Low FPS |
| Intel Core Ultra 9 285K | 118 Avg FPS, 95 1% Low FPS |
| Intel Core Ultra 7 265K | 117 Avg FPS, 90 1% Low FPS |
| AMD Ryzen 9 9950X3D | 111 Avg FPS, 67 1% Low FPS |
| AMD Ryzen 7 9800X3D | 112 Avg FPS, 76 1% Low FPS |
| AMD Ryzen 7 9700X | 99 Avg FPS, 59 1% Low FPS |
(function() { // Global animation function for slideshow re-use window.fvAnimateCharts = function(chartWrapper) { if (!chartWrapper) return; function animateBars(chartElement) { if (!chartElement) return; var bars = chartElement.querySelectorAll(‘.fv-bar, .fv-stacked-segment’); bars.forEach(function(bar, index) { // Reset to 0 first to ensure animation triggers bar.style.width = ‘0%’; bar.style.transition = ‘none’; var targetWidth = bar.dataset.targetWidth; if (targetWidth === undefined) return; // Force reflow void bar.offsetWidth; setTimeout(function() { bar.style.transition = ‘opacity 0.2s ease, width 0.8s ease-out’; bar.style.width = targetWidth + ‘%’; }, index * 50 + 50); // Reduced initial delay }); } function animateLineChart(chartElement) { if (!chartElement) return; var lineSvg = chartElement.querySelector(‘svg’); if (!lineSvg) return; var paths = lineSvg.querySelectorAll(‘.riv-line-path’); paths.forEach(function(p, i) { if (typeof p.getTotalLength === ‘function’) { var len = p.getTotalLength(); p.style.transition = ‘none’; p.style.strokeDasharray = len; p.style.strokeDashoffset = len; p.getBoundingClientRect(); setTimeout(function() { p.style.transition = ‘stroke-dashoffset 1s ease-out ‘ + (i * 0.1) + ‘s, stroke-width 0.2s, opacity 0.2s’; p.style.strokeDashoffset = ‘0’; }, 100); } }); var dots = lineSvg.querySelectorAll(‘.riv-dot’); dots.forEach(function(dot, i) { dot.style.opacity = ‘0’; setTimeout(function() { dot.style.transition = ‘opacity 0.3s ease’; dot.style.opacity = ‘1’; }, 500 + i * 10); }); } // Execute var charts = chartWrapper.querySelectorAll(‘.fv-chart-item’); charts.forEach(function(chart) { // If in carousel/dropdown mode, hidden charts are display:none. // We only animate what is visible. if (window.getComputedStyle(chart).display === ‘none’) return; var chartType = chart.dataset.chartType; if (chartType === ‘Line’) { animateLineChart(chart); } else if (chartType !== ‘Pie’) { animateBars(chart); } }); }; function initialize(uniqueId, isSlideshow) { var root = document.getElementById(uniqueId); // In slideshow mode, ‘root’ will be null because the container has ‘-slideshow’ suffix. // We handle that logic below. if (!root && !isSlideshow) return; // Setup internal interactions (Carousel/Dropdown/LineChart) for a specific chart wrapper function setupWrapper(chartWrapper) { if (!chartWrapper) return; // Legend interactions chartWrapper.querySelectorAll(‘.riv-line-legend’).forEach(function(legend) { var chartId = legend.dataset.chart; var chart = chartWrapper.querySelector(‘[id=”‘ + chartId + ‘”]’); if (!chart) return; var lines = chart.querySelectorAll(‘.riv-line-path’); var dots = chart.querySelectorAll(‘.riv-dot’); var legendItems = legend.querySelectorAll(‘.riv-legend-item’); legendItems.forEach(function(item) { var productName = item.dataset.product; var safeProductName = productName.replace(/”/g, ‘”‘); var line = chart.querySelector(‘.riv-line-path[data-product=”‘ + safeProductName + ‘”]’); var productDots = chart.querySelectorAll(‘.riv-dot[data-product=”‘ + safeProductName + ‘”]’); if (line && !line.dataset.origStroke) { line.dataset.origStroke = line.getAttribute(‘stroke-width’) || ‘2’; } var highlight = function() { if (legend.querySelector(‘.isolated’)) return; lines.forEach(function(l) { l.style.opacity = ‘0.2’; l.setAttribute(‘stroke-width’, l.dataset.origStroke); }); dots.forEach(function(d) { d.style.opacity = ‘0.2’; }); legendItems.forEach(function(i) { i.style.opacity = ‘0.3’; i.style.transition = ‘opacity 0.2s’; }); if (line) { line.style.opacity = ‘1’; line.setAttribute(‘stroke-width’, ‘4’); } productDots.forEach(function(d) { d.style.opacity = ‘1’; }); item.style.opacity = ‘1’; }; var clearHighlight = function() { if (legend.querySelector(‘.isolated’)) return; lines.forEach(function(l) { l.style.opacity = ‘1’; l.setAttribute(‘stroke-width’, l.dataset.origStroke); }); dots.forEach(function(d) { d.style.opacity = ‘1’; }); legendItems.forEach(function(i) { i.style.opacity = ‘1’; }); }; var toggleIsolate = function() { var isIsolated = item.classList.contains(‘isolated’); legendItems.forEach(function(i) { i.classList.remove(‘isolated’); }); if (isIsolated) { lines.forEach(function(l) { l.style.opacity = ‘1’; l.setAttribute(‘stroke-width’, l.dataset.origStroke); }); dots.forEach(function(d) { d.style.opacity = ‘1’; }); legendItems.forEach(function(i) { i.style.opacity = ‘1’; }); } else { item.classList.add(‘isolated’); lines.forEach(function(l) { l.style.opacity = ‘0.2’; l.setAttribute(‘stroke-width’, l.dataset.origStroke); }); dots.forEach(function(d) { d.style.opacity = ‘0.2’; }); legendItems.forEach(function(i) { i.style.opacity = ‘0.3’; i.style.transition = ‘opacity 0.2s’; }); if (line) { line.style.opacity = ‘1’; line.setAttribute(‘stroke-width’, ‘4’); } productDots.forEach(function(d) { d.style.opacity = ‘1’; }); item.style.opacity = ‘1’; } }; item.addEventListener(‘mouseenter’, highlight); item.addEventListener(‘focus’, highlight); item.addEventListener(‘mouseleave’, clearHighlight); item.addEventListener(‘blur’, clearHighlight); item.addEventListener(‘click’, toggleIsolate); if (line) { line.style.cursor = ‘pointer’; line.addEventListener(‘mouseenter’, highlight); line.addEventListener(‘mouseleave’, clearHighlight); line.addEventListener(‘click’, toggleIsolate); } }); }); // Carousel & Dropdown Logic var charts = chartWrapper.querySelectorAll(‘.fv-chart-item’); var dropdown = chartWrapper.querySelector(‘.fv-dropdown-title’); var prevBtn = chartWrapper.querySelector(‘.fv-carousel-nav-btn.prev’); var nextBtn = chartWrapper.querySelector(‘.fv-carousel-nav-btn.next’); var carouselTitle = chartWrapper.querySelector(‘.fv-carousel-title-controls .fv-benchmark-title’); var counter = chartWrapper.querySelector(‘.fv-carousel-counter’); // Text Elements var subheadEl = chartWrapper.querySelector(‘.fv-chart-subhead’); var captionEl = chartWrapper.querySelector(‘.rv-chart-caption’); var footerContentEl = chartWrapper.querySelector(‘.fv-footer-content’); var bottomBarEl = chartWrapper.querySelector(‘.fv-bottom-bar’); var logoEl = chartWrapper.querySelector(‘.fv-logo’); if (charts.length > 1 && (dropdown || prevBtn)) { var currentChartIndex = 0; var titles = []; if (dropdown) { titles = Array.from(dropdown.options).map(function(o) { return o.text; }); } else { charts.forEach(function(c) { titles.push(c.getAttribute(‘data-title’) || ”); }); } function showInternalChart(index) { if (index = charts.length) index = 0; currentChartIndex = index; charts.forEach(function(c, i) { c.style.display = i === index ? ‘block’ : ‘none’; if (i === index) { var cType = c.dataset.chartType; if (cType === ‘Line’) { // Line chart animations if needed } else if (cType !== ‘Pie’) { window.fvAnimateCharts(chartWrapper); } } }); if (dropdown) dropdown.value = index; if (carouselTitle && titles[index]) carouselTitle.textContent = titles[index]; if (counter) counter.textContent = (index + 1) + ‘ of ‘ + charts.length; // Update Subhead and Caption var activeChart = charts[index]; if (activeChart) { var newSubhead = activeChart.getAttribute(‘data-subhead’); var newCaption = activeChart.getAttribute(‘data-caption’); if (subheadEl) subheadEl.textContent = newSubhead || ”; if (captionEl) captionEl.textContent = newCaption || ”; if (footerContentEl) { if (newCaption && newCaption.trim().length > 0) { footerContentEl.style.display = ‘block’; if (bottomBarEl) bottomBarEl.style.display = ‘flex’; } else { footerContentEl.style.display = ‘none’; if (bottomBarEl && !logoEl) { bottomBarEl.style.display = ‘none’; } } } } } if (dropdown) dropdown.addEventListener(‘change’, function(e) { showInternalChart(parseInt(e.target.value)); }); if (prevBtn) prevBtn.addEventListener(‘click’, function() { showInternalChart(currentChartIndex – 1); }); if (nextBtn) nextBtn.addEventListener(‘click’, function() { showInternalChart(currentChartIndex + 1); }); } // Initial Animation window.fvAnimateCharts(chartWrapper); } if (false) { var slideshowContainer = document.getElementById(uniqueId + ‘-slideshow’); if (slideshowContainer) { var slides = slideshowContainer.querySelectorAll(‘.fv-slide’); slides.forEach(function(slide) { setupWrapper(slide.querySelector(‘.fv-chart-wrapper’)); }); } } else { setupWrapper(root); } } if (document.readyState === ‘loading’) { document.addEventListener(‘DOMContentLoaded’, function() { initialize(‘fv-chart-1774017896252-8iiwm1e3o’, false); }); } else { initialize(‘fv-chart-1774017896252-8iiwm1e3o’, false); } })();
The only bit of good news in all of this is that both CPUs are still well worth considering, even at their highest recommended consumer price. You can buy an AMD Ryzen 7 9700X for $305 at Amazon, but the 270K Plus is a superior product: faster in games, and much better for heavy multithreaded workloads.
Of course, the downside to buying any new Intel processor is that the LGA 1851 has already reached its end, and if you buy a 270K Plus, there’s nothing better to replace it. Not now, not in the future. You’ll need to buy a new motherboard if you want to upgrade to a Nova Lake chip.
Whereas with an AM5 Ryzen chip, of course, whatever motherboard you’ve currently got will almost certainly take a Zen 6 processor, and perhaps even one more generation. At the very least, you can easily replace a Ryzen 5 7600X, for example, with a hot-snotting Ryzen 7 9800X3D.
Still, at least neither company has decided to go all DRAM on us and quadruple the price tag.
