From 784524053d986255e383dae45235e4f76c6792a7 Mon Sep 17 00:00:00 2001 From: Aman Gupta Date: Fri, 1 Aug 2025 01:22:58 +0800 Subject: [PATCH] Fix params bug in diffusion example (#14993) --- common/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/common.h b/common/common.h index 45cf07b15..b8b01a7e9 100644 --- a/common/common.h +++ b/common/common.h @@ -225,7 +225,7 @@ struct common_params_diffusion { bool visual_mode = false; float eps = 0; // epsilon for timesteps - int32_t block_length = 32; // block length for generation + int32_t block_length = 0; // block length for generation int32_t algorithm = 4; // default algorithm: low-confidence float alg_temp = 0.0f; // algorithm temperature