CoolFace
Apppublic

hf-accelerate/model-memory-usage

sourceHugging Faceapache-2.0updated 3mo agoView on Hugging Face
1klikes
Makefile12 linesDownload Raw Back to root
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