Advertisement

You're blocking ads, which pay for BlenderNation. Read about other ways to support us.

[non-Blender] Disney's Hyperion Renderer

4

Hyperion is Disney's physically based path tracer renderer. They present an overview of their results and a enjoyable 'Practical Guide to Path Tracing'.

Hyperion is a streaming ray-tracer, capable of performing multi-bounce GI on production-scale scenes without resorting to shading caches or instancing. To achieve this, we introduce a novel two-stage ray sorting framework. First, we sort large, potentially out-of-core ray batches to ensure coherence. Working with large batches is essential to extract coherent ray groups from complex scenes. Second, we sort ray hits for deferred shading with out-of-core textures. For each batch we achieve perfectly coherent shading with sequential texture reads, eliminating the need for a texture cache. Our approach is simple to implement and compatible with most scene traversal strategies.

About the Author

Avatar image for Bart Veldhuizen
Bart Veldhuizen

I have a LONG history with Blender - I wrote some of the earliest Blender tutorials, worked for Not a Number and helped run the crowdfunding campaign that open sourced Blender (the first one on the internet!). I founded BlenderNation in 2006 and have been editing it every single day since then ;-) I also run the Blender Artists forum and I'm Head of Community at Sketchfab.

4 Comments

  1. Wow! Amazing explanation. Does Cycles use the same method? Capable of performing multi-bounce GI with grouping the rays that hit the same object in the same region of space.

    • Nope, that last part about the grouping was mostly to reference Hyperion and it's out-of-core rendering (rendering on the GPU a scene too large to fit in the GPU) method.

      Cycles doesn't even do out-of-core, you can tell because Blender will just tank if you try to render a scene that takes up too much GPU memory. All the other information is pretty much the basics of any path tracer. If you can fit the scene in GPU memory or render on the CPU, you can just store the scene in a traditional acceleration data-structure and skip grouping rays.

  2. I like the old Disney style, but shouldn't that title image say Disney's Practical Guide, with an apostrophe? I don't think it really explained why grouping makes processing quicker; it's still a big bunch of separate rays so what does it matter if they're similar?

Leave A Reply

To add a profile picture to your message, register your email address with Gravatar.com. To protect your email address, create an account on BlenderNation and log in when posting a message.

Advertisement

×