Skip to content

Commit 10c7496

Browse files
committed
up
1 parent 75f2598 commit 10c7496

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/diffusers/models/transformers/transformer_qwenimage.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -250,9 +250,7 @@ def _compute_video_freqs(self, frame, height, width, idx=0):
250250
freqs_width = freqs_pos[2][:width].view(1, 1, width, -1).expand(frame, height, width, -1)
251251

252252
freqs = torch.cat([freqs_frame, freqs_height, freqs_width], dim=-1).reshape(seq_lens, -1)
253-
freqs = freqs.clone().contiguous()
254-
255-
return freqs
253+
return freqs.clone().contiguous()
256254

257255

258256
class QwenDoubleStreamAttnProcessor2_0:

0 commit comments

Comments
 (0)