Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cogvideox SP Dev Minor Fix #244

Merged
merged 33 commits into from
Sep 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
d360e07
adding cogvideox; debugging
dannyxiaocn Aug 21, 2024
90e93fb
Merge branch 'main' into cogvideox
dannyxiaocn Aug 21, 2024
62ed758
debugging nccl
dannyxiaocn Aug 21, 2024
189c9ef
debugging
dannyxiaocn Aug 21, 2024
217642b
impl cogvideox patch embed, but still not fix problem
dannyxiaocn Aug 22, 2024
4421282
runnable, but oom
dannyxiaocn Aug 23, 2024
e0ef26f
just for run on A100, apply_rope is problem for new diffusers
dannyxiaocn Aug 23, 2024
20f6448
minor fix
dannyxiaocn Aug 23, 2024
c2a1e30
Merge branch 'xdit-project:main' into cogvideox
dannyxiaocn Aug 26, 2024
c7ec0f7
fix cpu offload problem but super slow
dannyxiaocn Aug 26, 2024
994421c
Merge branch 'cogvideox' of https://github.com/dannyxiaocn/xDiT into …
dannyxiaocn Aug 26, 2024
1592e93
fixing
dannyxiaocn Aug 28, 2024
8a8a84f
fixing
dannyxiaocn Aug 28, 2024
799839e
Merge branch 'xdit-project:main' into cogvideox
dannyxiaocn Aug 29, 2024
e695541
runnable in performance(memory & speed), but still not correct for re…
dannyxiaocn Aug 29, 2024
a320e4a
pos_embed parallelized, but still bugs in final generated videos
dannyxiaocn Aug 30, 2024
510d604
Merge branch 'xdit-project:main' into cogvideox
dannyxiaocn Aug 30, 2024
f11a4fb
fixing conflict in framework
dannyxiaocn Aug 30, 2024
68ec178
Delete cogvideox.sh
dannyxiaocn Aug 30, 2024
150a684
minor fix
dannyxiaocn Aug 30, 2024
8d01fe5
Merge branch 'cogvideox' of https://github.com/dannyxiaocn/xDiT into …
dannyxiaocn Aug 30, 2024
47751b4
minor fix
dannyxiaocn Aug 30, 2024
38a0b41
readme
dannyxiaocn Aug 30, 2024
f3eccdd
update diffusers version
dannyxiaocn Aug 30, 2024
564cd95
version fix
dannyxiaocn Aug 30, 2024
f8130aa
example update
dannyxiaocn Aug 30, 2024
86d6f1c
Merge branch 'cogvideox' of https://github.com/dannyxiaocn/xDiT into …
dannyxiaocn Aug 30, 2024
4aaad00
example update
dannyxiaocn Aug 30, 2024
2ea56b4
fixing
dannyxiaocn Aug 30, 2024
b18a0df
fixing
dannyxiaocn Aug 30, 2024
44dc2ef
Merge branch 'xdit-project:main' into cogvideox
dannyxiaocn Sep 2, 2024
c15eed7
minor fix on cogvideo sp
dannyxiaocn Sep 2, 2024
69d6fcc
minor fix
dannyxiaocn Sep 2, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,4 @@ profile/
xfuser.egg-info/
dist/*
latte_output.mp4
latte.sh
cogvideox.sh
*.sh
2 changes: 1 addition & 1 deletion xfuser/core/distributed/runtime_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ def _video_input_size_change(
self.input_config.num_frames = num_frames or self.input_config.num_frames
self.input_config.batch_size = batch_size or self.input_config.batch_size
if self.cogvideox:
self._calc_cogvideox_patches_metadata
self._calc_cogvideox_patches_metadata()
else:
self._calc_patches_metadata()
self._reset_recv_buffer()
Expand Down