blepping
blepping
the common sampler code has: ```python if disable_noise: noise = torch.zeros(latent_image.size(), dtype=latent_image.dtype, layout=latent_image.layout, device="cpu") else: batch_inds = latent["batch_index"] if "batch_index" in latent else None noise = comfy.sample.prepare_noise(latent_image, seed, batch_inds) ```...
currently no global RNG seed gets set _at all_ with the built in samplers (advanced KSampler, SamplerCustom) if `add_noise` is not enabled. this means anything using the global RNG (i.e....
currently the extension crashes on every startup and every time the browser refreshes the session on Linux due to the font directories it looks for not existing and it doesn't...
the `normalize()` in `latent_utils.py` never actually has an effect because `target_min` and `target_max` are never passed - so it normalizes to the same min/max as the latent it was passed....
Fix issue where using DisableNoise or disabling add_noise results in non-deterministic generations
ComfyUI currently has a bug where disabling `add_noise` in samplers or using a `DisableNoise` node simply does not seed the RNG at all, resulting in non-deterministic generations. #4518 aims to...
The main thing this pull adds is support for 5D latents so Tiled Diffusion can be used with video models and the ability to schedule the Tiled Diffusion effect. Some...