β‘ Profiler: Optimize Gaussian Splatting rendering #357
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
π The Bottleneck:
The
evaluate_gaussian_opacityfunction was performing a matrix inversion (try_inverse) and a determinant check for every single pixel evaluation of every Gaussian. For a typical scene with thousands of Gaussians and millions of pixels, this resulted in billions of redundant operations.π The Boost:
π» Technical Detail:
Gaussian2Dto replace thecovariance: Matrix2<f64>field withconic: Matrix2<f64>.conicmatrix is defined ascovariancefield entirely to reduce struct size and memory bandwidth pressure.π§ͺ Verification:
math_explorer/examples/bench_gaussian.rsto benchmark the hot loop.math_explorer/src/ai/gaussian_splatting/rendering.rstests to ensure mathematical correctness is preserved.PR created automatically by Jules for task 1367477844946669873 started by @fderuiter