2023-04-09 17:59:16 +00:00
|
|
|
include Makefile-flash-att
|
2023-07-18 14:21:18 +00:00
|
|
|
include Makefile-flash-att-v2
|
2023-07-04 07:39:25 +00:00
|
|
|
include Makefile-vllm
|
2023-03-03 16:56:27 +00:00
|
|
|
|
2023-04-20 09:07:40 +00:00
|
|
|
unit-tests:
|
2023-05-16 21:23:27 +00:00
|
|
|
pytest -s -vv -m "not private" tests
|
2023-04-20 09:07:40 +00:00
|
|
|
|
2022-10-08 10:30:12 +00:00
|
|
|
gen-server:
|
2022-10-22 18:00:15 +00:00
|
|
|
# Compile protos
|
2023-03-27 07:25:15 +00:00
|
|
|
pip install grpcio-tools==1.51.1 mypy-protobuf==3.4.0 'types-protobuf>=3.20.4' --no-cache-dir
|
2023-03-07 17:52:22 +00:00
|
|
|
mkdir text_generation_server/pb || true
|
2023-03-27 07:25:15 +00:00
|
|
|
python -m grpc_tools.protoc -I../proto --python_out=text_generation_server/pb \
|
|
|
|
--grpc_python_out=text_generation_server/pb --mypy_out=text_generation_server/pb ../proto/generate.proto
|
2023-03-07 17:52:22 +00:00
|
|
|
find text_generation_server/pb/ -type f -name "*.py" -print0 -exec sed -i -e 's/^\(import.*pb2\)/from . \1/g' {} \;
|
|
|
|
touch text_generation_server/pb/__init__.py
|
2022-10-08 10:30:12 +00:00
|
|
|
|
2022-10-18 13:19:03 +00:00
|
|
|
install-torch:
|
|
|
|
# Install specific version of torch
|
2023-01-24 18:52:39 +00:00
|
|
|
pip install torch --extra-index-url https://download.pytorch.org/whl/cu118 --no-cache-dir
|
2022-10-08 10:30:12 +00:00
|
|
|
|
2023-06-08 12:51:52 +00:00
|
|
|
install: gen-server install-torch
|
2022-10-22 18:00:15 +00:00
|
|
|
pip install pip --upgrade
|
2023-04-16 22:26:47 +00:00
|
|
|
pip install -r requirements.txt
|
2023-04-19 17:39:31 +00:00
|
|
|
pip install -e ".[bnb, accelerate]"
|
2022-10-08 10:30:12 +00:00
|
|
|
|
2022-10-22 18:00:15 +00:00
|
|
|
run-dev:
|
2023-04-19 17:39:31 +00:00
|
|
|
SAFETENSORS_FAST_GPU=1 python -m torch.distributed.run --nproc_per_node=2 text_generation_server/cli.py serve bigscience/bloom-560m --sharded
|
|
|
|
|
|
|
|
export-requirements:
|
2023-07-27 12:50:45 +00:00
|
|
|
poetry export -o requirements.txt -E bnb -E quantize --without-hashes
|