hf-accelerate/model-memory-usage
1k
1check_dirs := src2 3# this target runs checks on all files4quality:5 black --required-version 23 --check $(check_dirs)6 ruff $(check_dirs)7 8# Format source code automatically and check is there are any problems left that need manual fixing9style:10 black --required-version 23 $(check_dirs)11 ruff $(check_dirs) --fix12 