Interactive applications with Open Image Denoise (OIDN) (left of the splits). Efficient in-renderer deployment of denoising is crucial for the viability of real-time path tracing. It also enables faster iterations in look development and lighting where the final appearance including expensive global illumination needs to be judged. We propose a method to generate efficient shader dispatches from an ONNX description shown in red), using autotuning and profile guided optimization. We demonstrate our approach by generating Vulkan dispatches for OIDN. Timings in the graph are for the left image (7M animated triangles).

Image denoising is fundamental to Monte Carlo rendering. Recently, real-time path-traced applications have become viable, relying heavily on efficient denoising. Modern denoisers are often based on neural networks, most commonly variants of the U-Net architecture. While tooling for development and training of custom neural networks is well established in Python, existing deployment and interop strategies typically rely on external inference frameworks, incur host synchronization, data movement, or heavyweight dependencies, making them impractical for tightly integrated, real-time rendering pipelines. We present a light-weight and portable ONNX to Vulkan conversion framework that is designed for efficient, fully GPU-resident deployment of U-Net-based networks. We employ graph-based and profile-guided optimizations to determine optimal Vulkan dispatch schedules, including block sizes, data layouts, and kernel fusion decisions. Our method includes effective pruning of the vast search space, significantly reducing compile times. Using the Open Image Denoise (OIDN) network, we demonstrate runtime improvements over established inference frameworks such as TensorRT.

Karl Sassie, Johannes Hanika, Lucas Alber, Reiner Dolp, and Carsten Dachsbacher. 2026. Optimizing Vulkan Dispatch Schedules for Real-Time U-Net Denoising. Proc. ACM Comput. Graph. Interact. Tech. 9, 4, Article 53 (July 2026), 20 pages. https://doi.org/10.1145/3820016

BibTex
@article{sassie2026vulkanSchedulesForUNets,
  author = {Karl Sassie and Johannes Hanika and Lucas Alber and Reiner Dolp and Carsten Dachsbacher},
  title = {Optimizing Vulkan dispatch schedules for real-time {U-net} denoising},
  journal = {Proc. ACM Comput. Graph. Interact. Tech.},
  doi = {https://doi.org/10.1145/3820016},
  year = 2026
}