Skip to content

Commit 9ca7201

Browse files
committed
up
1 parent 1744f62 commit 9ca7201

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/diffusers/modular_pipelines/flux/before_denoise.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -608,8 +608,7 @@ def __call__(self, components: FluxModularPipeline, state: PipelineState) -> Pip
608608
height = 2 * (int(block_state.height) // (components.vae_scale_factor * 2))
609609
width = 2 * (int(block_state.width) // (components.vae_scale_factor * 2))
610610
latent_ids = FluxPipeline._prepare_latent_image_ids(None, height // 2, width // 2, device, dtype)
611-
print(f"{latent_ids.shape=}, {img_ids.shape=}")
612-
611+
613612
if img_ids is not None:
614613
latent_ids = torch.cat([latent_ids, img_ids], dim=0)
615614

0 commit comments

Comments
 (0)