Skip to content

Commit 9648bff

Browse files
committed
notify the user about which implementation is being used
1 parent 7148649 commit 9648bff

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

denoiser.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -372,6 +372,7 @@ struct KLOptimalScheduler : SigmaScheduler {
372372
* as a reference.
373373
*/
374374

375+
LOG_INFO("KL Optimal with sigma_min close to zero");
375376
for (uint32_t i = 0; i <= n; ++i) {
376377

377378
float t = static_cast<float>(i) / static_cast<float>(n);
@@ -388,6 +389,7 @@ struct KLOptimalScheduler : SigmaScheduler {
388389
* as a reference.
389390
*/
390391

392+
LOG_INFO("KL Optimal with sigma_min greater than zero");
391393
for (uint32_t i = 0; i < n; ++i) {
392394

393395
float t = static_cast<float>(i) / static_cast<float>(n - 1);

0 commit comments

Comments
 (0)