Skip to content

Commit 5778ffc

Browse files
committed
fix
1 parent 8024e66 commit 5778ffc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/maxdiffusion/pipelines/ltx2/ltx2_pipeline.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1621,8 +1621,8 @@ def convert_to_vel(lat, x0):
16211621

16221622
# Re-stack based on strategy for next iteration
16231623
if do_cfg and do_stg:
1624-
latents_jax = jnp.concatenate([latents_step] * 3, axis=0)
1625-
audio_latents_jax = jnp.concatenate([audio_latents_step] * 3, axis=0)
1624+
latents_jax = jnp.concatenate([latents_step] * 4, axis=0)
1625+
audio_latents_jax = jnp.concatenate([audio_latents_step] * 4, axis=0)
16261626
elif do_cfg or do_stg:
16271627
latents_jax = jnp.concatenate([latents_step] * 2, axis=0)
16281628
audio_latents_jax = jnp.concatenate([audio_latents_step] * 2, axis=0)

0 commit comments

Comments
 (0)