"git@developer.sourcefind.cn:chenpangpang/ComfyUI.git" did not exist on "95d796fc85608272a9bf06a8c6c1f45912179118"
Commit 036a2207 authored by comfyanonymous's avatar comfyanonymous
Browse files

Fix k_diffusion math being off by a tiny bit during txt2img.

parent 8883cb0f
......@@ -650,7 +650,10 @@ class KSampler:
self.model_k.latent_image = latent_image
self.model_k.noise = noise
noise = noise * sigmas[0]
if max_denoise:
noise = noise * torch.sqrt(1.0 + sigmas[0] ** 2.0)
else:
noise = noise * sigmas[0]
k_callback = None
total_steps = len(sigmas) - 1
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment