Skip to main content
GameDev.net gamedev.net
Research Paper

This is an academic paper or technical research. Key findings may require technical background to fully understand.

Explore Research Radar

PRO Tired of ads? Read GameDev.net ad-free and help keep the community independent with GameDev Pro — $3/month.

arXiv cs.GR
arXiv cs.GR Research
· 2 months ago • Nicholas Fry, Ignacio Alzugaray, Mark Pupilli, Paul H. J. Kelly, Andrew J. Davison

Rendering 3D Gaussians on a Graph Processor

Briefing

Researchers have built the first 3D Gaussian renderer for an Intelligence Processing Unit, using 1,472 independent tiles with only on-chip SRAM. Each tile owns a screen-space region, and Gaussian primitives are routed across the chip with Manhattan-distance hops on a north-east-west-south grid before being fanned out to overlapping neighbors. The work is aimed at real-world 3D Gaussian maps from captured sequences, so it’s not just a toy architecture demo.

For graphics programmers, the interesting part is the execution model: the renderer is designed around the IPU’s bulk synchronous parallel approach, with inter-tile communication fixed at compile time. That makes locality the main optimization target. Instead of leaning on large caches or DRAM bandwidth, the implementation tries to keep data moving between nearby tiles and exploit the spatial structure of the splat workload.

The team also digs into the hard limits of an SRAM-only renderer: inter-tile bandwidth, per-tile memory capacity, and load imbalance when Gaussian density is uneven. Those are exactly the kinds of bottlenecks that show up in real engine work when a technique scales from a paper demo to messy content. The quality/performance tradeoff here is especially relevant for anyone evaluating whether a new representation can survive constrained hardware.

The broader takeaway is that this could inform more than just IPUs. The work raises the possibility that direct communication between GPU streaming multiprocessors, or other on-chip producer/consumer paths, could reduce DRAM traffic in future kernels. For...

“The first implementation of a 3D Gaussian renderer on an Intelligence Processing Unit.”

— Nicholas Fry et al. · Core claim of the work
Original source
Read on arXiv cs.GR
At a glance
what
First implementation of a 3D Gaussian renderer on an Intelligence Processing Unit with 1,472 SRAM-only tiles.
who
Nicholas Fry, Ignacio Alzugaray, Mark Pupilli, Paul H. J. Kelly, and Andrew J. Davison.
when
Submitted 17 Jul 2026; published in Eurographics Symposium on Rendering 2026.
impact
Shows how Gaussian splatting can be structured around local tile communication, with implications for GPU kernels and on-chip rendering.
Signal Mixed

Promising technique, but constrained by bandwidth and memory limits.

Discuss

Follow graphics updates

See relevant stories in your personalized news feed.

Sign in to follow

Continue on GameDev.net

Useful next steps related to this story.

Game development news without the noise

One useful weekly briefing. No daily flood.

Sending your confirmation email…

Discussion

Loading comments...

Recommended resources

Graphics Programming Resources

See full guide
Real-Time Rendering, Fourth Edition cover
Editor pick Community pick

Real-Time Rendering, Fourth Edition

Amazon · Book

Real-Time Rendering combines fundamental principles with guidance on the latest techniques to provide a complete reference on three-dimensional interactive computer graphics. It will help you increase speed and improve image quality and learn the features and limitations of acceleration algorithms and graphics APIs. This latest fourth edition has been updated to include a chapter on virtual reality and augmented reality and covers new topics such as visual appearance, global illumination, and curves and curved surfaces. It is for anyone serious about computer graphics who wants to learn about algorithms that create synthetic images fast enough that the viewer can interact with a virtual environment.

GameDev.net may earn a commission if you purchase through these links. This helps fund the site at no extra cost to you.

Programming with wgpu in Rust cover
Editor pick

Programming with wgpu in Rust

Amazon · Book

Unlock the full power of modern graphics programming with wgpu and Rust. This comprehensive guide takes you from foundational GPU concepts to advanced real-time rendering and compute techniques—equipping you to build fast, safe, and cross-platform graphics applications. Written for intermediate to advanced Rust developers, this book provides clear explanations, hands-on examples, and detailed insights into how GPUs process and render data. You’ll explore everything from the fundamentals of buffers, shaders, and pipelines to advanced topics like deferred rendering, shadow mapping, and GPU compute workloads.

GameDev.net may earn a commission if you purchase through these links. This helps fund the site at no extra cost to you.

GameDev.net may earn a commission if you purchase through these links. This helps fund the site at no extra cost to you.

Story Timeline (3 sources)

Story covered over 1 day • First reported by arXiv cs.GR