Makefile 1.29 KB
Newer Older
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
1
install-server:
Nicolas Patry's avatar
Nicolas Patry committed
2
	cd server && make install
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
3

4
5
install-server-cpu:
	cd server && make install-server
6

Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
7
8
9
10
11
12
install-router:
	cd router && cargo install --path .

install-launcher:
	cd launcher && cargo install --path .

13
14
15
install-benchmark:
	cd benchmark && cargo install --path .

16
17
18
19
install: install-server install-router install-launcher


install-cpu: install-server-cpu install-router install-launcher
Nicolas Patry's avatar
Nicolas Patry committed
20
21
22
23
24

server-dev:
	cd server && make run-dev

router-dev:
25
	cd router && cargo run -- --port 8080
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
26

27
rust-tests: install-router install-launcher
28
29
	cargo test

30
31
32
33
install-integration-tests:
	cd integration-tests && pip install -r requirements.txt
	cd clients/python && pip install .

34
35
36
37
38
39
integration-tests: install-integration-tests
	pytest -s -vv -m "not private" integration-tests

update-integration-tests: install-integration-tests
	pytest -s -vv --snapshot-update integration-tests

40
python-server-tests:
41
	HF_HUB_ENABLE_HF_TRANSFER=1 pytest -s -vv -m "not private" server/tests
42
43
44
45
46

python-client-tests:
	pytest clients/python/tests

python-tests: python-server-tests python-client-tests
47

OlivierDehaene's avatar
OlivierDehaene committed
48
49
run-falcon-7b-instruct:
	text-generation-launcher --model-id tiiuae/falcon-7b-instruct --port 8080
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
50

OlivierDehaene's avatar
OlivierDehaene committed
51
52
run-falcon-7b-instruct-quantize:
	text-generation-launcher --model-id tiiuae/falcon-7b-instruct --quantize bitsandbytes --port 8080
53
54
55

clean:
	rm -rf target aml