nvidia rtx perf. back

Board: Home Board index Raytracing General Development

(L) [2019/09/05] [ost by mpeterson] [nvidia rtx perf.] Wayback!

as the discussion is going on, day by day, here is a statement: 10grays is a tech. possible limit for non-realistic scenes: that is: a single triangle
without shading. in practice you get something around 1-3 grays and cannot do something useful with it without any filtering as post-proc.
these numbers were already achieved years ago (7 to 8 years) with our highly optimized ray-tracers => so there is really nothing new to the problem today.
the quality everyone expects needs much more compute-power ! end of statement.
(L) [2019/09/05] [ost by jbikker] [nvidia rtx perf.] Wayback!

[SMILEY :)]

Well the RTX hardware does help, but the 10G figure is not realistic, unless you store only intersection distances for the rays. I currently store barycentrics, t, prim index and instance index, which peaks at 4G on 2080, probably 5G on 2080ti. That is without any shading, like you said, but it still allows me to render roughly 4x faster than before overall. That is mostly because my shading code is built for realtime, i.e. one ubershader with limited functionality (Disney). For a production renderer I imagine the relative gains are smaller, except if the pre-RTX ray tracing was bad.

4G is using the latest Lighthouse 2, https://github.com/jbikker/lighthouse2 .
(L) [2019/09/07] [ost by mpeterson] [nvidia rtx perf.] Wayback!

>> jbikker wrote: ↑Thu Sep 05, 2019 5:31 pm

4G is using the latest Lighthouse 2, https://github.com/jbikker/lighthouse2 .

yes, i had a look and browsed thru the code. good work as always. mp

back