soerenfi

Results 5 comments of soerenfi

So what are you guys using for profiling? I set up [Tracy](https://github.com/wolfpld/tracy) but It's not really usable due to the large amount of threads being created and destroyed with the...

Alright, it's done [here](https://github.com/soerenfi/WeekendRaytracer/blob/master/WeekendRaytracer/src/Renderer.cpp#L63). Added a thread pool and queue for the rendering jobs. Every Line of the image is submitted to the queue individually. Here is how it looks...

@Rilazy yeah, I saw that. For now I just compared CPU load between the approaches and varied the amount of threads in the pool. Profiler shows that the workers are...

I believe that is what @TheCherno is aiming to do, and if so, I am looking forward to it very much. Since Vulkan takes care of building BVHs and (HW-)accelerating...

I'll also add [this more simplified path tracing example](https://nvpro-samples.github.io/vk_mini_path_tracer/) that I'm about to dive into.