text-generation-inference/server/text_generation_server/layers
Daniël de Kok c1638a56f1 Add support for Deepseek V2 (#2224)
Deepseek V2 is a MoE model from Deepseek. Relevant variations
compared to other models:

- Grouped top-K in expert selection.
- mscale in yarn is calculated using the `mscale` and `mscale_all_dim`
  configuration options.
- `mscale_all_dim` is also used in scaling attention softmax.
- Permuting of the query/key representations before applying rotary
  embeddings.
- Some projections cannot be sharded (`q_a_proj`, `kv_a_proj_with_mqa`).
  So, we need weight loads that supports quantized weights. To this
  end `{Weights,WeightLoader}.get_weight` was added.
- The query/key head dimensionality differs from that of the value,
  so we need to pad during attention.
- Heads with size 192, needs an extension to our paged attention
  fork and we need to ensure that the KV cache is allocated with the
  correct size.
- Shared experts.
2024-09-25 05:27:40 +00:00
..
attention Fixing rocm. (#2164) 2024-09-24 03:58:13 +00:00
awq Support AWQ quantization with bias (#2117) 2024-09-24 03:55:04 +00:00
gptq Add support for Deepseek V2 (#2224) 2024-09-25 05:27:40 +00:00
__init__.py Enable multiple LoRa adapters (#2010) 2024-09-24 03:55:04 +00:00
bnb.py Improve the handling of quantized weights (#2250) 2024-09-25 05:27:40 +00:00
conv.py Refactor layers. (#1866) 2024-07-17 05:36:58 +00:00
eetq.py Improve the handling of quantized weights (#2250) 2024-09-25 05:27:40 +00:00
exl2.py Add support for Deepseek V2 (#2224) 2024-09-25 05:27:40 +00:00
fp8.py Improve the handling of quantized weights (#2250) 2024-09-25 05:27:40 +00:00
layernorm.py Removing IPEX_AVAIL. (#2115) 2024-09-24 03:52:23 +00:00
linear.py Improve the handling of quantized weights (#2250) 2024-09-25 05:27:40 +00:00
lora.py Enable multiple LoRa adapters (#2010) 2024-09-24 03:55:04 +00:00
marlin.py Add support for Deepseek V2 (#2224) 2024-09-25 05:27:40 +00:00
medusa.py fix: use path inside of speculator config (#1935) 2024-07-17 05:36:58 +00:00
mlp.py MLPSpeculator. (#1865) 2024-07-17 05:36:58 +00:00
rotary.py Add support for Deepseek V2 (#2224) 2024-09-25 05:27:40 +00:00
speculative.py MLPSpeculator. (#1865) 2024-07-17 05:36:58 +00:00
tensor_parallel.py Improve the handling of quantized weights (#2250) 2024-09-25 05:27:40 +00:00