2022-10-18 13:19:03 +00:00
install-server :
2022-10-22 18:00:15 +00:00
cd server && make install
2022-10-18 13:19:03 +00:00
2023-06-08 12:51:52 +00:00
install-custom-kernels :
2023-06-12 13:24:53 +00:00
if [ " $$ BUILD_EXTENSIONS " = "True" ] ; then cd server/custom_kernels && python setup.py install; else echo "Custom kernels are disabled, you need to set the BUILD_EXTENSIONS environment variable to 'True' in order to build them. (Please read the docs, kernels might not work on all hardware)" ; fi
2023-06-08 12:51:52 +00:00
2023-05-15 21:36:30 +00:00
install-integration-tests :
cd integration-tests && pip install -r requirements.txt
2023-06-02 15:12:30 +00:00
cd clients/python && pip install .
2023-05-15 21:36:30 +00:00
2022-10-18 13:19:03 +00:00
install-router :
cd router && cargo install --path .
install-launcher :
cd launcher && cargo install --path .
2023-03-30 13:26:27 +00:00
install-benchmark :
cd benchmark && cargo install --path .
2023-06-08 12:51:52 +00:00
install : install -server install -router install -launcher install -custom -kernels
2022-10-22 18:00:15 +00:00
server-dev :
cd server && make run-dev
router-dev :
2023-03-07 17:52:22 +00:00
cd router && cargo run -- --port 8080
2022-10-18 13:19:03 +00:00
2023-05-15 21:36:30 +00:00
rust-tests : install -router install -launcher
2023-02-03 11:43:37 +00:00
cargo test
2023-05-15 21:36:30 +00:00
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
2023-04-27 17:16:35 +00:00
python-server-tests :
2023-05-16 21:23:27 +00:00
HF_HUB_ENABLE_HF_TRANSFER = 1 pytest -s -vv -m "not private" server/tests
2023-04-27 17:16:35 +00:00
python-client-tests :
pytest clients/python/tests
python-tests : python -server -tests python -client -tests
2023-02-03 11:43:37 +00:00
2022-10-18 13:19:03 +00:00
run-bloom-560m :
2023-03-07 17:52:22 +00:00
text-generation-launcher --model-id bigscience/bloom-560m --num-shard 2 --port 8080
2022-10-18 13:19:03 +00:00
2022-10-27 12:25:29 +00:00
run-bloom-560m-quantize :
2023-03-07 17:52:22 +00:00
text-generation-launcher --model-id bigscience/bloom-560m --num-shard 2 --quantize --port 8080
2022-10-27 12:25:29 +00:00
download-bloom :
2023-03-03 17:42:20 +00:00
HF_HUB_ENABLE_HF_TRANSFER = 1 text-generation-server download-weights bigscience/bloom
2022-10-27 12:25:29 +00:00
2022-10-18 13:19:03 +00:00
run-bloom :
2023-03-07 17:52:22 +00:00
text-generation-launcher --model-id bigscience/bloom --num-shard 8 --port 8080
2022-10-27 12:25:29 +00:00
run-bloom-quantize :
2023-06-08 12:51:52 +00:00
text-generation-launcher --model-id bigscience/bloom --num-shard 8 --quantize --port 8080