We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7148649 commit 9648bffCopy full SHA for 9648bff
denoiser.hpp
@@ -372,6 +372,7 @@ struct KLOptimalScheduler : SigmaScheduler {
372
* as a reference.
373
*/
374
375
+ LOG_INFO("KL Optimal with sigma_min close to zero");
376
for (uint32_t i = 0; i <= n; ++i) {
377
378
float t = static_cast<float>(i) / static_cast<float>(n);
@@ -388,6 +389,7 @@ struct KLOptimalScheduler : SigmaScheduler {
388
389
390
391
392
+ LOG_INFO("KL Optimal with sigma_min greater than zero");
393
for (uint32_t i = 0; i < n; ++i) {
394
395
float t = static_cast<float>(i) / static_cast<float>(n - 1);
0 commit comments