Makefile 1.11 KB
Newer Older
1
2
include Makefile-transformers
include Makefile-flash-att
3

4
5
6
unit-tests:
	python -m pytest tests

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
7
gen-server:
Nicolas Patry's avatar
Nicolas Patry committed
8
	# Compile protos
9
	pip install grpcio-tools==1.51.1 mypy-protobuf==3.4.0 'types-protobuf>=3.20.4' --no-cache-dir
10
	mkdir text_generation_server/pb || true
11
12
	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
13
14
	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
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
15

Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
16
17
install-torch:
	# Install specific version of torch
18
	pip install torch --extra-index-url https://download.pytorch.org/whl/cu118 --no-cache-dir
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
19

OlivierDehaene's avatar
OlivierDehaene committed
20
install: gen-server install-torch install-transformers
Nicolas Patry's avatar
Nicolas Patry committed
21
	pip install pip --upgrade
22
	pip install -r requirements.txt
23
	pip install -e ".[bnb, accelerate]"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
24

Nicolas Patry's avatar
Nicolas Patry committed
25
run-dev:
26
27
28
29
	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:
	poetry export -o requirements.txt -E bnb --without-hashes