Next gen lighting technologies - voxelised, traced, and everything else *spawn*

All those are just patents, people seem to full-fill their dreams based on some patents. I have seen it alot lately. Just because they patent something doesn't mean they will actually enforce or use it.
 
CRYENGINE 5.6 brings over 1,000 changes to the engine and includes production-proven features which have been used to deliver Hunt: Showdown. This major release is designed to put more power in your hands and make game creation quicker and easier. We can’t wait to see what you can achieve with our engine.
 
CPU / GPU hybrid RT in World of Tanks (no DXR):
CPU does BVH using Embree, tracing on GPU.
BVH for 30 Tanks (each 50000 trianlges) takes 1.5ms on CPU.
GPU does 1 rpp (vehicle shadows only - probaly also sun only) and denoising for area light.

(BTW, pretty well explained in german without marketing BS :) )
 
CPU does BVH using Embree, tracing on GPU.
BVH

Now it hit me. This is the future of next gen console games.
Remember how CELL promised to usher in a new era of simulation/AI/physics heavy games? Remember most of it's horsepower ended up going into offloading tasks from the GPU that just could barely get the tasks devs were aiming for at 720p...
Yeah, prepare for another 6 years of that again.
 
So ray traced shadows only on "intact vehicles (not destroyed ones)". Nice compromise to avoid any performance loss.
 
Last edited:
Now it hit me. This is the future of next gen console games.
Remember how CELL promised to usher in a new era of simulation/AI/physics heavy games? Remember most of it's horsepower ended up going into offloading tasks from the GPU that just could barely get the tasks devs were aiming for at 720p...
Yeah, prepare for another 6 years of that again.
There has been a lot of talk about moving the intersection closer to the CPU side of things on the APU. But I'm not necessarily sure, and we haven't seen that type of design before. Obviously for nvidia it's RT needs to be on the GPU, since it has no other way to get it closer to the CPU. But perhaps intersection hardware might be better closer to the CPU, I dunno.

Being closer to the CPU I'm not sure has it's advantages either. But if you have spare cycles on CPU, perhaps it could do intersection. Many Ray Tracing farms are still CPU based as I understand it.

There are some here that could provide much better commentary on it.
 
CPU / GPU hybrid RT in World of Tanks (no DXR):
CPU does BVH using Embree, tracing on GPU.
BVH for 30 Tanks (each 50000 trianlges) takes 1.5ms on CPU.
GPU does 1 rpp (vehicle shadows only - probaly also sun only) and denoising for area light.

(BTW, pretty well explained in german without marketing BS :) )
Yup, one of the better videos on ray tracing and acceleration structures.
 
Yup, one of the better videos on ray tracing and acceleration structures.
This is the video in English



They do the BVH on the CPU, is this the same in DXR too?
Also they limit the RT shadows to intact tanks (damaged models don't cast RT shadows), I wonder about the reason for this intact tank limitation, what's the difference between an intact tank and a damaged one RT wise? more BVH work on the CPU?
 
They do the BVH on the CPU, is this the same in DXR too?
DXR will call on the driver to perform the function. I'm not entirely sure if its possible to have the driver perform the calculation over the CPU, because which GPU vendor would write that type of driver?
edit: answer below.
CPU fallback layer.
 
Last edited:
Now it hit me. This is the future of next gen console games.
I knew somebody would say this. 7TF + CPU BVH build = 10 TF, haha :)

They do the BVH on the CPU, is this the same in DXR too?
No, NV certainly does it on GPU. I remember Exodus talk mentioning 4 ms IIRC, but they have been hidden with async compute.

what's the difference between an intact tank and a damaged one RT wise? more BVH work on the CPU?
Sounds they use prebuild BVH for intact models, and likely only refit that + building top level AS. But i don't know.

In any case, building or refitting bottom level AS is a task very well suited to GPU. Also CPU SIMD, but i assume GPU to be 20x faster. Bottom level can be a problem to saturate the GPU, and i think that's one reason why hiding it async works so well.
Downside of CPU build would be skinning has to be done on CPU as well, but with 8 cores + AVX256 that's surely an option, especially on consoles having unified memory. If so however, hope on mesh shaders shrinks maybe.
 
BVH creation and updates are handled on CPU by the driver on NV RT capable h/w (Pascal and Turing).
So even when async call is submitted to update the BVH, it still occurs on the CPU?
Interesting.
Shoot, how are people supposed to figure this stuff out? Doesn't that indirectly tie your RT performance with your CPU?
 
BVH creation and updates are handled on CPU by the driver on NV RT capable h/w (Pascal and Turing).
Yeah I remember Battlefeild V requiring a much higher CPU to drive the DXR reflections.

I have to mention, what World Of Tanks is doing reminds me a lot of NVIDIA's Hybrid Frustrum Traced Shadows (HFTS) released in games like Watch Dogs 2, Battlefront 2 and Division.
 
Back
Top