mirror of
https://github.com/huggingface/diffusers.git
synced 2026-01-27 17:22:53 +03:00
* add poc for benchmarking workflow. * import * fix argument * fix: argument * fix: path * fix * fix * path * output csv files. * workflow cleanup * append token * add utility to push to hf dataset * fix: kw arg * better reporting * fix: headers * better formatting of the numbers. * better type annotation * fix: formatting * moentarily disable check * push results. * remove disable check * introduce base classes. * img2img class * add inpainting pipeline * intoduce base benchmark class. * add img2img and inpainting * feat: utility to compare changes * fix * fix import * add args * basepath * better exception handling * better path handling * fix * fix * remove * ifx * fix * add: support for controlnet. * image_url -> url * move images to huggingface hub * correct urls. * root_ckpt * flush before benchmarking * don't install accelerate from source * add runner * simplify Diffusers Benchmarking step * change runner * fix: subprocess call. * filter percentage values * fix controlnet benchmark * add t2i adapters. * fix filter columns * fix t2i adapter benchmark * fix init. * fix * remove safetensors flag * fix args print * fix * feat: run_command * add adapter resolution mapping * benchmark t2i adapter fix. * fix adapter input * fix * convert to L. * add flush() add appropriate places * better filtering * okay * get env for torch * convert to float * fix * filter out nans. * better coment * sdxl * sdxl for other benchmarks. * fix: condition * fix: condition for inpainting * fix: mapping for resolution * fix * include kandinsky and wuerstchen * fix: Wuerstchen * Empty-Commit * [Community] AnimateDiff + Controlnet Pipeline (#5928) * begin work on animatediff + controlnet pipeline * complete todos, uncomment multicontrolnet, input checks Co-Authored-By: EdoardoBotta <botta.edoardo@gmail.com> * update Co-Authored-By: EdoardoBotta <botta.edoardo@gmail.com> * add example * update community README * Update examples/community/README.md --------- Co-authored-by: EdoardoBotta <botta.edoardo@gmail.com> Co-authored-by: Patrick von Platen <patrick.v.platen@gmail.com> * EulerDiscreteScheduler add `rescale_betas_zero_snr` (#6024) * EulerDiscreteScheduler add `rescale_betas_zero_snr` * Revert "[Community] AnimateDiff + Controlnet Pipeline (#5928)" This reverts commit821726d7c0. * Revert "EulerDiscreteScheduler add `rescale_betas_zero_snr` (#6024)" This reverts commit3dc2362b5a. * add SDXL turbo * add lcm lora to the mix as well. * fix * increase steps to 2 when running turbo i2i * debug * debug * debug * fix for good * fix and isolate better * fuse lora so that torch compile works with peft * fix: LCMLoRA * better identification for LCM * change to cron job --------- Co-authored-by: Patrick von Platen <patrick.v.platen@gmail.com> Co-authored-by: Dhruv Nair <dhruv.nair@gmail.com> Co-authored-by: Aryan V S <contact.aryanvs@gmail.com> Co-authored-by: EdoardoBotta <botta.edoardo@gmail.com> Co-authored-by: Beinsezii <39478211+Beinsezii@users.noreply.github.com>
95 lines
2.6 KiB
Makefile
95 lines
2.6 KiB
Makefile
.PHONY: deps_table_update modified_only_fixup extra_style_checks quality style fixup fix-copies test test-examples
|
|
|
|
# make sure to test the local checkout in scripts and not the pre-installed one (don't use quotes!)
|
|
export PYTHONPATH = src
|
|
|
|
check_dirs := examples scripts src tests utils benchmarks
|
|
|
|
modified_only_fixup:
|
|
$(eval modified_py_files := $(shell python utils/get_modified_files.py $(check_dirs)))
|
|
@if test -n "$(modified_py_files)"; then \
|
|
echo "Checking/fixing $(modified_py_files)"; \
|
|
ruff check $(modified_py_files) --fix; \
|
|
ruff format $(modified_py_files);\
|
|
else \
|
|
echo "No library .py files were modified"; \
|
|
fi
|
|
|
|
# Update src/diffusers/dependency_versions_table.py
|
|
|
|
deps_table_update:
|
|
@python setup.py deps_table_update
|
|
|
|
deps_table_check_updated:
|
|
@md5sum src/diffusers/dependency_versions_table.py > md5sum.saved
|
|
@python setup.py deps_table_update
|
|
@md5sum -c --quiet md5sum.saved || (printf "\nError: the version dependency table is outdated.\nPlease run 'make fixup' or 'make style' and commit the changes.\n\n" && exit 1)
|
|
@rm md5sum.saved
|
|
|
|
# autogenerating code
|
|
|
|
autogenerate_code: deps_table_update
|
|
|
|
# Check that the repo is in a good state
|
|
|
|
repo-consistency:
|
|
python utils/check_dummies.py
|
|
python utils/check_repo.py
|
|
python utils/check_inits.py
|
|
|
|
# this target runs checks on all files
|
|
|
|
quality:
|
|
ruff check $(check_dirs) setup.py
|
|
ruff format --check $(check_dirs) setup.py
|
|
python utils/check_doc_toc.py
|
|
|
|
# Format source code automatically and check is there are any problems left that need manual fixing
|
|
|
|
extra_style_checks:
|
|
python utils/custom_init_isort.py
|
|
python utils/check_doc_toc.py --fix_and_overwrite
|
|
|
|
# this target runs checks on all files and potentially modifies some of them
|
|
|
|
style:
|
|
ruff check $(check_dirs) setup.py --fix
|
|
ruff format $(check_dirs) setup.py
|
|
${MAKE} autogenerate_code
|
|
${MAKE} extra_style_checks
|
|
|
|
# Super fast fix and check target that only works on relevant modified files since the branch was made
|
|
|
|
fixup: modified_only_fixup extra_style_checks autogenerate_code repo-consistency
|
|
|
|
# Make marked copies of snippets of codes conform to the original
|
|
|
|
fix-copies:
|
|
python utils/check_copies.py --fix_and_overwrite
|
|
python utils/check_dummies.py --fix_and_overwrite
|
|
|
|
# Run tests for the library
|
|
|
|
test:
|
|
python -m pytest -n auto --dist=loadfile -s -v ./tests/
|
|
|
|
# Run tests for examples
|
|
|
|
test-examples:
|
|
python -m pytest -n auto --dist=loadfile -s -v ./examples/
|
|
|
|
|
|
# Release stuff
|
|
|
|
pre-release:
|
|
python utils/release.py
|
|
|
|
pre-patch:
|
|
python utils/release.py --patch
|
|
|
|
post-release:
|
|
python utils/release.py --post_release
|
|
|
|
post-patch:
|
|
python utils/release.py --post_release --patch
|