Remove dead code related to an old symmetry feature.

This commit is contained in:
Ryan Dick
2024-02-28 11:29:52 -05:00
committed by Kent Keirsey
parent 9376b13435
commit 145bb45858
4 changed files with 0 additions and 103 deletions

View File

@ -455,15 +455,6 @@ class StableDiffusionGeneratorPipeline(StableDiffusionPipeline):
ip_adapter_unet_patcher=ip_adapter_unet_patcher,
)
latents = step_output.prev_sample
latents = self.invokeai_diffuser.do_latent_postprocessing(
postprocessing_settings=conditioning_data.postprocessing_settings,
latents=latents,
sigma=batched_t,
step_index=i,
total_step_count=len(timesteps),
)
predicted_original = getattr(step_output, "pred_original_sample", None)
if callback is not None: