-
Notifications
You must be signed in to change notification settings - Fork 5.9k
refactor: move model helper function in pipeline to a mixin class #6571
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
Merged
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
130be1d
move model helper function in pipeline to EfficiencyMixin
ultranity ec74982
deduplicate functions replaced by EfficiencyMixin
ultranity 4a7fc38
add mixin to rdm & restore audioldm2 & fix quality checks
ultranity cc4f805
rebase on main branch
ultranity fc71e97
init PipelineEfficiencyFunctionTesterMixin
ultranity 95f53e6
rename EfficiencyMixin to LatentDiffusionMixin
ultranity 6c11d6a
add LDM_component test for pipeline with LatentDiffusionMixin
ultranity 48d8b67
Merge branch 'main' into efficiency_pipe_util
yiyixuxu 4602bac
rename EfficiencyMixin to StableDiffusionMixin
ultranity 7373eb0
Merge branch 'main' into efficiency_pipe_util
ultranity ebfd3a7
Add more SDFunctionTesterMixin to cover different UNet type
ultranity 066c14d
add StableDiffusionMixin to InstaFlowPipeline
ultranity fdc43c5
remove StableDiffusionMixin from UniDiffuserPipeline
ultranity 0099144
Update tests/pipelines/test_pipelines_common.py
yiyixuxu 4a294ec
make SDFunctionTesterMixin run on non-image diffsuion pipeline
ultranity b3c3de0
fix fuse_projection by check is_cross_attention when init
ultranity 9920fc9
Merge branch 'main' into efficiency_pipe_util
ultranity 7cdff34
Merge branch 'main' into efficiency_pipe_util
sayakpaul 994299c
use get_dummy_inputs for test_vae_tiling and test_freeu
ultranity a076831
fix I2V gen test error
ultranity 661b1b5
Merge branch 'main' into efficiency_pipe_util
ultranity 0fd684b
add missing StableDiffusionMixin
ultranity 4bf6b55
Merge branch 'main' into efficiency_pipe_util
ultranity File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would leave this as is in the Pipeline for now and not add to the Mixin.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I apologize some of those changes should be spilt into a single commit(like: remove unnecessary overload ...), but as they have been inherited from DiffusionPipeline those function
enable_sequential_cpu_offload
,_execution_device
,enable_attention_slicing
could be removed without changing any behaviour?