Skip to content

Commit a0a4127

Browse files
authored
Bound
1 parent 6031724 commit a0a4127

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/diffusers/models/transformers/transformer_qwenimage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ def forward(self, video_fhw, txt_seq_lens, device):
218218
self.rope_cache[rope_key] = self._compute_video_freqs(frame, height, width, idx)
219219
video_freq = self.rope_cache[rope_key]
220220
else:
221-
video_freq = self._compute_video_freqs.__wrapped__(frame, height, width, idx)
221+
video_freq = self._compute_video_freqs.__wrapped__(self, frame, height, width, idx)
222222
video_freq = video_freq.to(device)
223223
vid_freqs.append(video_freq)
224224

0 commit comments

Comments
 (0)