1
0
mirror of https://github.com/huggingface/diffusers.git synced 2026-01-29 07:22:12 +03:00
This commit is contained in:
Charles
2025-08-21 16:21:02 +02:00
committed by GitHub
parent 603172465f
commit a0a4127905

View File

@@ -218,7 +218,7 @@ class QwenEmbedRope(nn.Module):
self.rope_cache[rope_key] = self._compute_video_freqs(frame, height, width, idx)
video_freq = self.rope_cache[rope_key]
else:
video_freq = self._compute_video_freqs.__wrapped__(frame, height, width, idx)
video_freq = self._compute_video_freqs.__wrapped__(self, frame, height, width, idx)
video_freq = video_freq.to(device)
vid_freqs.append(video_freq)