text-generation-inference/server/text_generation_server
Ubuntu 9a12941bef [WIP] Inference support for GPTQ (llama at least)
Let's start discussing implementation.

- Need to expose the quantization scripts (either included here or add
  doc on how to use https://github.com/qwopqwop200/GPTQ-for-LLaMa)
- Make sure GPTQ works for multiple models (priority to Falcon).

Currently it means that every place we use `get_{tensor|sharded}` to
check for quantization.

My idea is to reintegrate as much as possible into `utils/layer.py` by
expanding `load_multi` to be a bit more generic.
This might require some thinking, but ultimately the
`qweight,qzeros,scales,g_idx` should be in a single place, and
independant of bias presence.
2023-06-14 09:42:55 +02:00
..
models feat(server): pre-allocate past key values for flash causal LM (#412) 2023-06-12 18:30:29 +02:00
pb feat(server): clear cache on error (#143) 2023-03-28 11:29:35 +02:00
utils [WIP] Inference support for GPTQ (llama at least) 2023-06-14 09:42:55 +02:00
__init__.py feat(clients): Python client (#103) 2023-03-07 18:52:22 +01:00
cache.py feat(server): clear cache on error (#143) 2023-03-28 11:29:35 +02:00
cli.py feat(server): support trust_remote_code (#363) 2023-05-23 20:40:39 +02:00
interceptor.py feat(clients): Python client (#103) 2023-03-07 18:52:22 +01:00
server.py feat(server): support vectorized warpers in flash causal lm (#317) 2023-05-26 12:30:27 +02:00
tracing.py feat(clients): Python client (#103) 2023-03-07 18:52:22 +01:00