AMD Capsaicin Framework
Capsaicin is a Direct3D12 framework for real-time graphics research which implements the GI-1.0 technique and a reference path-tracer.
We are announcing that AMD GI-1.2 and AMD Capsaicin Framework v1.3 are now available. GI-1.2 is an updated version of GI-1.1 which itself is based on GI-1.0 - our real-time Global Illumination solution.
In AMD GI-1.2, the bounce lighting approximation has been improved with a feature called multibounce.
A limitation in GI-1.1 was that certain scenarios appeared darker than the path-traced scenes due to the 2nd-level cache only sampling direct light, effectively only modelling two bounces of light. The use of temporal radiance feedback, reusing the computed GI of previous frames as well as the direct light contribution, recovers some energy, but not enough to compare to the path-traced version.
Multibounce attempts to mitigate this by adding another bounce into the hash grid cache. This new hash grid cell extends the ray path, allowing GI-1.2 to capture light from further bounces.

An area where this has most effect is in reflections where the reflector isn’t in view. Below is an image comparison of the Sponza scene with reflections isolated.
After the 1st hash grid cells have been created from rays traced from the screen probes, additional rays are traced from those hash grid cells, or 1st bounce cells, and another level of hash grid cells are created at the hit points of those rays, called the 2nd bounce cells. The 1st bounce cells get the direct light contribution, as well as an indirect light contribution from the 2nd bounce cells, while the 2nd bounce cells only get a direct light contribution.
These steps describe the multibounce algorithm in AMD GI-1.2.
GI-1.2 first extends the ray path.

GI-1.2 then performs direct light evaluation.
Then radiance accumulation and filtering are performed.

The 2nd bounce cells are then resolved into 1st bounce cells.
The 1st bounce cells are then resolved into screen probes.
For more details about multibounce, check out the corresponding master’s thesis or the GI-1.1 paper and the technical report on GI-1.0.
If you want to see the AMD GI-1.2 algorithm in action or want to play with it, you can download it from the AMD Capsaicin Framework page.
AMD Capsaicin Framework is our internal research framework for real-time graphics which we have been using to develop AMD GI-1 and the most recent GI-1.2. With this release we have also added several new features to the framework which can be used standalone or along with GI-1.2.
With the latest v1.3 release we now have HDR display support with automatic run-time detection and enablement of end-to-end HDR capabilities. We also now have DPI awareness to support the latest displays. Capsaicin now also uses AMD FidelityFX™ Super Resolution for real-time upscaling and TAA with run-time selection of the AMD FSR version, including the latest FSR 4 on AMD RDNA™ 4 architecture GPUs.
Capsaicin v1.3 also comes with a variety of internal framework improvements, features and bugfixes. For a more comprehensive list see the AMD Capsaicin Framework page for further details.