Makefile 1.51 KB
Newer Older
1
include Makefile-awq
2
include Makefile-eetq
drbh's avatar
drbh committed
3
include Makefile-selective-scan
xuxzh1's avatar
last  
xuxzh1 committed
4
include Makefile-lorax-punica
5

6
unit-tests:
7
	pytest -s -vv -m "not private" tests
8

9
10
11
12
13
14
install-exllama:
	cd exllama_kernels && python setup.py install

install-exllamav2:
	cd exllamav2_kernels && python setup.py install

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
15
gen-server:
Nicolas Patry's avatar
Nicolas Patry committed
16
	# Compile protos
xuxzh1's avatar
last  
xuxzh1 committed
17
	pip install grpcio-tools==1.62.2 mypy-protobuf==3.6.0 'types-protobuf' --no-cache-dir
18
	mkdir text_generation_server/pb || true
xuxzh1's avatar
last  
xuxzh1 committed
19
20
	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
21
22
	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
23

xuxzh1's avatar
last  
xuxzh1 committed
24
install-server: gen-server
Nicolas Patry's avatar
Nicolas Patry committed
25
	pip install pip --upgrade
26
27
28
29
	pip install -r requirements_rocm.txt
	# pip install -e ".[bnb, accelerate, quantize, peft, outlines]"
	pip install -e ".[accelerate, quantize, peft, outlines]"

xuxzh1's avatar
last  
xuxzh1 committed
30
31
32
33
34
35
install: install-server
	echo "Installed server"

install-cuda: install-server install-flash-attention-v2-cuda install-vllm-cuda install-flash-attention

install-rocm: install-server install-flash-attention-v2-rocm  install-vllm-rocm
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
36

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