Makefile 1.27 KB
Newer Older
1
include Makefile-flash-att
2
include Makefile-flash-att-v2
3
include Makefile-vllm
4
include Makefile-awq
5
include Makefile-eetq
drbh's avatar
drbh committed
6
include Makefile-selective-scan
7

8
unit-tests:
9
	pytest -s -vv -m "not private" tests
10

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

OlivierDehaene's avatar
OlivierDehaene committed
20
21
22
install-megablocks:
	pip install git+https://github.com/OlivierDehaene/megablocks@181709df192de9a941fdf3a641cdc65a0462996e

23
install: gen-server
Nicolas Patry's avatar
Nicolas Patry committed
24
	pip install pip --upgrade
fxmarty's avatar
fxmarty committed
25
	pip install -r requirements_cuda.txt
OlivierDehaene's avatar
OlivierDehaene committed
26
	pip install -e ".[bnb, accelerate, quantize, peft, outlines]"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
27

Nicolas Patry's avatar
Nicolas Patry committed
28
run-dev:
29
30
31
	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:
fxmarty's avatar
fxmarty committed
32
33
	poetry export -o requirements_cuda.txt --extras bnb --without-hashes
	poetry export -o requirements_rocm.txt --without-hashes