Makefile 1.54 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
drbh's avatar
drbh committed
7
include Makefile-lorax-punica
Nicolas Patry's avatar
Nicolas Patry committed
8
include Makefile-exllamav2
9
include Makefile-flashinfer
10

11
unit-tests:
12
	pytest -s -vv -m "not private" tests
13

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
14
gen-server:
Nicolas Patry's avatar
Nicolas Patry committed
15
	# Compile protos
16
	pip install grpcio-tools==1.62.2 mypy-protobuf==3.6.0 'types-protobuf' --no-cache-dir
17
	mkdir text_generation_server/pb || true
OlivierDehaene's avatar
OlivierDehaene committed
18
19
	python -m grpc_tools.protoc -I../proto/v3 --python_out=text_generation_server/pb \
		--grpc_python_out=text_generation_server/pb --mypy_out=text_generation_server/pb ../proto/v3/generate.proto
20
21
	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
22

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

28

xuxzh1's avatar
xuxzh1 committed
29
install: install-rocm
30
31
	echo "Installed server"

32
33
install-cuda: install-server install-flash-attention-v2-cuda install-flash-attention
	pip install -e ".[attention,bnb,marlin,moe]"
OlivierDehaene's avatar
OlivierDehaene committed
34
	pip install nvidia-nccl-cu12==2.22.3
35

xuxzh1's avatar
xuxzh1 committed
36
install-rocm: install-server
37

Nicolas Patry's avatar
Nicolas Patry committed
38
run-dev:
39
40
41
	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:
42
	poetry export -o requirements_cuda.txt --without-hashes
fxmarty's avatar
fxmarty committed
43
	poetry export -o requirements_rocm.txt --without-hashes
44
	poetry export -o requirements_intel.txt --without-hashes