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

推荐订阅源

U
Unit 42
Vercel News
Vercel News
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
MyScale Blog
MyScale Blog
P
Proofpoint News Feed
量子位
Engineering at Meta
Engineering at Meta
B
Blog RSS Feed
博客园 - 【当耐特】
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
人人都是产品经理
人人都是产品经理
IT之家
IT之家
T
The Blog of Author Tim Ferriss
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Jina AI
Jina AI
博客园 - 三生石上(FineUI控件)

Latest from Tom's Hardware

YMTC Our experts review your astonishing PC builds and setups in Rig Rundown — from wall-mounted setups to a system… News outlets are blocking Wayback Machine from archiving their pages — 23 outlets concerned AI companies might abuse fair use and use it to train their models Mark Zuckerberg reportedly working on AI clone of himself — Meta insiders claim 3D photoreal animated Zuck will be able to engage with employees on his behalf Score a massive $700 off this 4K-ready Lenovo gaming PC with an RTX 5070 Ti, now just $1,899 — epic Legion Tower 5i pre-built ships with a 20-core Intel CPU, 32GB DDR5 and a 2TB SSD Pay $1,349.99 for Gigabyte's Aero X16 laptop and save $300 on this 32GB beast with RTX 5070 graphics —… Veteran Windows dev shows off AI running on 47-year-old PDP11 with 6 MHz CPU and 64KB of RAM — 'gloriously absurd' project runs transformer model written in PDP-11 assembly language Half of all US employees now use artificial intelligence at work, crossing landmark threshold for first time — Gallup data shows daily and weekly usage hitting all-time high of 28% in Q1 2026, with 65% feeling positive about its impact on productivity China has spent 3.6 times more than the US on chipmaking subsidies over the past decade — $142 billion and counting, easily outweighs CHIPS Act FAA approves military use of drone-killing laser weapons in US airspace — decision comes after it was decided ‘systems do not present an increased risk to the flying public’ Nvidia says AI cuts 10-month, eight-engineer GPU design task to overnight job — company is still 'a long way' from AI designing chips without human input Small Missouri town ousts half its city council after $6 billion AI data center approval — petition calls for mayor's removal as frustration (and violence) over AI data centers mounts New tech can see a CPU's transistors in action — terahertz radiation can potentially steal data as a chip is… Intel's Nova Lake CPUs gear up to seize AMD’s 3D V-Cache gaming throne — early leak points to up to 52 cores, blazing DDR5-8000 support, and massive 175W TDP Acer Predator GX850 SFX power supply review: Solid electrical performance with good efficiency NZXT to cough up $3.45 million over 'predatory' Flex PC rental scheme in RICO class-action settlement — in-debt customers to get up to $5,000 of relief, eligible renters to be granted ownership Bulbous 15x fan PC case side panel dubbed the ‘Superdome’ lowers temps by 20 degrees —  $600 worth of Noctua fans arrayed in 3D-printed structure Approvals for Nvidia and AMD AI chip exports to China stall under government bottleneck —  20% staff turnover… Espresso Lite 15 Review: An entry-level portable monitor with a splash of color Save a massive $700 on this 4K-ready HP gaming PC with a 9800X3D and RTX 5070 Ti, now just $2,499 — discounted HP Omen 35L pre-built powerhouse ships with 32GB DDR5 RAM and a 1TB SSD 'CopprLink' destroys every eGPU standard in new test, achieves near-native-level performance with an RTX 5090 — setup requires $2,300 worth of additional hardware Website backup crippled by 1.6MB Friends GIF that was replicated 246,173 times, breaking Linux's EXT4 filesystem limit — Jennifer Aniston's 'happy dance' animation ate up 377 gigabytes of data due to security policy Why we spent 50+ hours retesting Intel’s Core Ultra 270K Plus and 250K Plus Just $284.99 for 32GB of Team T-Create Classic DDR5-6000 RAM is the cheapest going right now — this double-dipping… Grab MSI’s RTX 5080 gaming laptop for just over $2,000 — offers fast 240 Hz QHD+ display, dual storage slots, and expandable DDR5 memory Lenovo hikes Legion Go 2 handheld gaming PC to almost $3,000 for 2 TB model — Handheld now costs more than AMD's Strix Halo devices despite relatively weaker Z2 Extreme chip Iran's forced nationwide internet blackout becomes second-longest on record as it passes 1,000 hours offline — possessing Starlink terminals punishable by death, country using 'military-grade jamming' against service Tiny 3-inch cube PCs bring a splash of color to the passive PC market with red, orange, green and blue options — Intel Twin Lake-powered Kubb Mini PCs start at $500 Veteran Microsoft engineer says original Task Manager was only 80KB so it could run smoothly on 90s computers — original utility used a smart technique to determine whether it was the only running instance Tech enthusiast gets Doom to run on a 40-year-old printer controller — ancient Agfa Compugraphic 9000PS came with a Motorola 68020 onboard for fast processing
Valve engineer shocks Linux community with game-changing ...
Hassam Nasir · 2026-04-12 · via Latest from Tom's Hardware
Valve
(Image credit: Valve)

VRAM usage has become an increasingly unavoidable issue in games as they grow more graphically intensive over time. Pushing the visual fidelity requires more assets to be stored in VRAM, which makes it harder for cards with 8GB (or less) memory to run games smoothly. For Linux at least, Natalie Vock has just proposed a new solution that alleviates this issue, providing a notable performance boost for games by optimizing VRAM usage.

Vock is part of Valve's Linux graphics driver team; she's developed new kernel patches and two specific utilities to address the VRAM usage issue. These fixes basically talk to the OS and let it know that the game currently running in the foreground gets to call dibs on the VRAM. If the VRAM starts to fill up, any VRAM consumed by background tasks needs to spill over into system RAM before the game does.

Previously, whenever a game consumed too much VRAM, Linux would move its data (evict it) to system memory to prevent crashes. This is because, generally speaking, the Linux kernel doesn't have a clear idea of which program to prioritize; it might evict the game to allocate VRAM to a background browser window. When this happens, you'll experience inconsistent frame pacing and stutters in-game.

Vock tested Cyberpunk 2077 with an 8GB GPU and saw 1.37GB of memory spilling into the GTT, which stands for Graphics Translation Table and is responsible for telling the GPU to look for something in system RAM. The game was only consuming around 6GB of VRAM; despite having an 8GB pool, it could have maximized instead. Vock's fixes specifically target this via new patches proposed to the Linux kernel.

Cybperunk 2077 VRAM usage in Linux with Vock's VRAM fixes versus without

(Image credit: pixelcluster)

The main solution she developed is called dmemcg-booster (Device Memory Control Groups), which tells Linux what program needs to be "protected" at any given moment, meaning it can't be evicted from the VRAM and thrown into the GTT. If a background task requires VRAM, it will be the one forced to move to slower system memory to ensure the game keeps running without interruption.

This is more about optimizing VRAM usage than outright reducing it. If you had a 12 GB card, for instance, you'd never notice the drawbacks of just 8 GB of VRAM because there's enough buffer for poorly prioritized background programs. Now, even a GPU with less VRAM can run at its full potential. Case in point: with the fixes applied, Cyberpunk 2077 started using almost 7.4GB of VRAM, and GTT dropped to just 650MB.

Cybperunk 2077 VRAM usage in Linux with Vock's VRAM fixes versus without

(Image credit: pixelcluster)

The other component is called plasma-foreground-booster, and it can automatically tell KDE which window is in front so that it can prioritize VRAM usage for that window. These patches are currently being integrated into CatchyOS and are awaiting merge into the main Linux kernel. You can download and use these patches yourself inside any distro, but keep in mind they'll only work on AMD GPUs because Nvidia drivers have closed-source memory management.

Get Tom's Hardware's best news and in-depth reviews, straight to your inbox.

Google Preferred Source

Follow Tom's Hardware on Google News, or add us as a preferred source, to get our latest news, analysis, & reviews in your feeds.

Hassam Nasir is a die-hard hardware enthusiast with years of experience as a tech editor and writer, focusing on detailed CPU comparisons and general hardware news. When he’s not working, you’ll find him bending tubes for his ever-evolving custom water-loop gaming rig or benchmarking the latest CPUs and GPUs just for fun.