Makefile 1.3 KB
Newer Older
1
include Makefile-awq
2
include Makefile-eetq
drbh's avatar
drbh committed
3
include Makefile-selective-scan
4

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

8
9
10
11
12
13
14
15
16
install-vllm:
	cd vllm/ && python setup.py install

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
17
gen-server:
Nicolas Patry's avatar
Nicolas Patry committed
18
	# Compile protos
19
	pip install grpcio-tools==1.51.1 mypy-protobuf==3.4.0 'types-protobuf>=3.20.4' --no-cache-dir
20
	mkdir text_generation_server/pb || true
21
22
	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
23
24
	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
25

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

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
32

Nicolas Patry's avatar
Nicolas Patry committed
33
run-dev:
34
35
36
	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
37
	poetry export -o requirements_cuda.txt --without-hashes
fxmarty's avatar
fxmarty committed
38
	poetry export -o requirements_rocm.txt --without-hashes