Skip to content

Commit de45665

Browse files
committed
Fix non-hashable static argument in run_diffusion_loop
1 parent 6ba53e3 commit de45665

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/maxdiffusion/pipelines/ltx2/ltx2_pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1365,7 +1365,7 @@ def __call__(
13651365
batch_size,
13661366
self.transformer.scan_layers,
13671367
self.scheduler.step,
1368-
tuple(self.config.logical_axis_rules),
1368+
tuple(tuple(rule) if isinstance(rule, list) else rule for rule in self.config.logical_axis_rules),
13691369
)
13701370

13711371
# 8. Decode Latents

0 commit comments

Comments
 (0)