2024-05-21 13:15:19 +00:00
.PHONY : deps_table_update modified_only_fixup extra_style_checks quality style fixup fix -copies test test -examples benchmark
2020-09-28 14:45:42 +00:00
2021-04-26 15:42:43 +00:00
# make sure to test the local checkout in scripts and not the pre-installed one (don't use quotes!)
export PYTHONPATH = src
2020-09-28 14:45:42 +00:00
2020-10-29 17:38:11 +00:00
check_dirs := examples tests src utils
2020-09-28 14:45:42 +00:00
2024-05-22 04:40:15 +00:00
exclude_folders := ""
2024-01-17 09:59:40 +00:00
2020-09-28 14:45:42 +00:00
modified_only_fixup :
2020-11-07 17:45:16 +00:00
$( eval modified_py_files := $( shell python utils/get_modified_files.py $( check_dirs) ) )
@if test -n " $( modified_py_files) " ; then \
2020-10-06 09:25:21 +00:00
echo " Checking/fixing $( modified_py_files) " ; \
2024-01-17 09:59:40 +00:00
ruff check $( modified_py_files) --fix --exclude $( exclude_folders) ; \
ruff format $( modified_py_files) --exclude $( exclude_folders) ; \
2020-09-28 14:45:42 +00:00
else \
2020-10-06 09:25:21 +00:00
echo "No library .py files were modified" ; \
2020-09-28 14:45:42 +00:00
fi
2019-12-22 20:31:12 +00:00
2020-11-24 18:22:25 +00:00
# Update src/transformers/dependency_versions_table.py
deps_table_update :
@python setup.py deps_table_update
2021-06-28 15:55:59 +00:00
deps_table_check_updated :
@md5sum src/transformers/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
2021-03-22 13:14:22 +00:00
# autogenerating code
autogenerate_code : deps_table_update
2021-11-03 21:43:19 +00:00
# Check that the repo is in a good state
2019-12-22 20:31:12 +00:00
2021-11-03 21:43:19 +00:00
repo-consistency :
2020-09-22 09:02:27 +00:00
python utils/check_copies.py
2024-09-24 13:54:07 +00:00
python utils/check_modular_conversion.py
2020-12-08 00:55:12 +00:00
python utils/check_table.py
2020-10-05 13:12:04 +00:00
python utils/check_dummies.py
2020-08-07 13:18:37 +00:00
python utils/check_repo.py
2021-04-05 00:41:34 +00:00
python utils/check_inits.py
2022-04-30 08:40:46 +00:00
python utils/check_config_docstrings.py
2023-02-07 16:49:30 +00:00
python utils/check_config_attributes.py
2023-01-26 14:33:47 +00:00
python utils/check_doctest_list.py
2022-09-14 18:06:49 +00:00
python utils/update_metadata.py --check-only
2023-10-04 13:13:37 +00:00
python utils/check_docstrings.py
2023-12-22 11:56:11 +00:00
python utils/check_support_list.py
2019-12-22 20:31:12 +00:00
2020-09-28 14:45:42 +00:00
# this target runs checks on all files
2021-11-03 21:43:19 +00:00
2020-09-25 15:37:40 +00:00
quality :
2024-03-22 09:11:59 +00:00
@python -c "from transformers import *" || ( echo '🚨 import failed, this means you introduced unprotected imports! 🚨' ; exit 1)
2023-11-16 16:43:19 +00:00
ruff check $( check_dirs) setup.py conftest.py
ruff format --check $( check_dirs) setup.py conftest.py
2022-05-16 17:24:20 +00:00
python utils/sort_auto_mappings.py --check_only
2022-07-07 12:17:58 +00:00
python utils/check_doc_toc.py
2024-07-30 17:56:10 +00:00
python utils/check_docstrings.py --check_all
2020-09-25 15:37:40 +00:00
2024-03-22 09:11:59 +00:00
2020-09-25 15:37:40 +00:00
# Format source code automatically and check is there are any problems left that need manual fixing
2019-12-21 14:50:39 +00:00
2021-03-22 13:14:22 +00:00
extra_style_checks :
2022-05-16 17:24:20 +00:00
python utils/sort_auto_mappings.py
2022-07-07 12:17:58 +00:00
python utils/check_doc_toc.py --fix_and_overwrite
2021-03-19 20:17:13 +00:00
2021-03-22 13:14:22 +00:00
# this target runs checks on all files and potentially modifies some of them
2021-11-03 21:43:19 +00:00
2021-03-19 20:17:13 +00:00
style :
2024-01-17 09:59:40 +00:00
ruff check $( check_dirs) setup.py conftest.py --fix --exclude $( exclude_folders)
ruff format $( check_dirs) setup.py conftest.py --exclude $( exclude_folders)
2021-03-22 13:14:22 +00:00
${ MAKE } autogenerate_code
2021-03-19 20:17:13 +00:00
${ MAKE } extra_style_checks
2020-09-28 14:45:42 +00:00
# Super fast fix and check target that only works on relevant modified files since the branch was made
2019-12-22 20:31:12 +00:00
2021-11-03 21:43:19 +00:00
fixup : modified_only_fixup extra_style_checks autogenerate_code repo -consistency
2020-09-25 15:37:40 +00:00
2020-09-22 09:02:27 +00:00
# Make marked copies of snippets of codes conform to the original
fix-copies :
python utils/check_copies.py --fix_and_overwrite
2024-09-24 13:54:07 +00:00
python utils/check_modular_conversion.py --fix_and_overwrite
2020-12-08 00:55:12 +00:00
python utils/check_table.py --fix_and_overwrite
2020-10-05 13:12:04 +00:00
python utils/check_dummies.py --fix_and_overwrite
2023-08-04 14:24:04 +00:00
python utils/check_doctest_list.py --fix_and_overwrite
2023-10-04 13:13:37 +00:00
python utils/check_docstrings.py --fix_and_overwrite
2020-09-22 09:02:27 +00:00
2019-12-22 20:31:12 +00:00
# Run tests for the library
test :
python -m pytest -n auto --dist= loadfile -s -v ./tests/
# Run tests for examples
test-examples :
2021-04-21 15:11:20 +00:00
python -m pytest -n auto --dist= loadfile -s -v ./examples/pytorch/
2020-08-27 16:25:16 +00:00
2024-05-21 13:15:19 +00:00
# Run benchmark
benchmark :
python3 benchmark/benchmark.py --config-dir benchmark/config --config-name generation --commit= diff backend.model= google/gemma-2b backend.cache_implementation= null,static backend.torch_compile= false,true --multirun
2021-03-30 06:28:02 +00:00
# Run tests for SageMaker DLC release
test-sagemaker : # install sagemaker dependencies in advance with pip install .[sagemaker]
TEST_SAGEMAKER = True python -m pytest -n auto -s -v ./tests/sagemaker
2021-03-16 12:41:47 +00:00
# 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
2023-05-16 18:23:10 +00:00
build-release :
rm -rf dist
rm -rf build
python setup.py bdist_wheel
python setup.py sdist
python utils/check_build.py