text-generation-inference/server/text_generation_server/models
Daniël de Kok a401c83c35
Fix GPTQ for models which do not have float16 at the default dtype (simpler) (#1953)
# What does this PR do?

Fix GPTQ for models which do not have float16 at the default dtype

Before this change GPTQ models would not work if the model's default
data type is not `float16`. For example, Gemma GPTQ models would fail
because the default dtype of Gemma is `bfloat16`. There are two issues:

If the default `dtype` is not `float16`, the quantizer's `float16`
parameters get converted to that dtype. The kernels cannot deal
with non-`float16` types. The same applies to inputs of quantized ops.

This is resolved by setting the dtype of gptq/awq-quantized models to
`float16`.

Simpler version of #1951.

**Draft:** just testing...

## Before submitting
- [ ] This PR fixes a typo or improves the docs (you can dismiss the
other checks if that's the case).
- [x] Did you read the [contributor
guideline](https://github.com/huggingface/transformers/blob/main/CONTRIBUTING.md#start-contributing-pull-requests),
      Pull Request section?
- [ ] Was this discussed/approved via a Github issue or the
[forum](https://discuss.huggingface.co/)? Please add a link
      to it if that's the case.
- [ ] Did you make sure to update the documentation with your changes?
Here are the
[documentation
guidelines](https://github.com/huggingface/transformers/tree/main/docs),
and
[here are tips on formatting
docstrings](https://github.com/huggingface/transformers/tree/main/docs#writing-source-documentation).
- [ ] Did you write any new necessary tests?


## Who can review?

Anyone in the community is free to review the PR once the tests have
passed. Feel free to tag
members/contributors who may be interested in your PR.

<!-- Your PR will be replied to more quickly if you can figure out the
right person to tag with @


@OlivierDehaene OR @Narsil

 -->
2024-05-27 14:41:28 +02:00
..
custom_modeling Fix (flash) Gemma prefix and enable tests 2024-05-27 09:58:06 +02:00
__init__.py Fix GPTQ for models which do not have float16 at the default dtype (simpler) (#1953) 2024-05-27 14:41:28 +02:00
bloom.py MI300 compatibility (#1764) 2024-05-17 15:30:47 +02:00
cache_manager.py Refactor layers. (#1866) 2024-05-13 12:44:30 +02:00
causal_lm.py MLPSpeculator. (#1865) 2024-05-14 12:33:18 +02:00
flash_causal_lm.py Improving the logging system. (#1938) 2024-05-23 15:40:40 +02:00
flash_cohere.py MLPSpeculator. (#1865) 2024-05-14 12:33:18 +02:00
flash_dbrx.py MLPSpeculator. (#1865) 2024-05-14 12:33:18 +02:00
flash_gemma.py Fix (flash) Gemma prefix and enable tests 2024-05-27 09:58:06 +02:00
flash_gpt2.py MI300 compatibility (#1764) 2024-05-17 15:30:47 +02:00
flash_llama.py Fixing codellama loads by using purely AutoTokenizer. (#1947) 2024-05-24 12:40:39 +02:00
flash_mistral.py Fix TGI issues with ROCm (#1921) 2024-05-18 01:50:52 +08:00
flash_mixtral.py MLPSpeculator. (#1865) 2024-05-14 12:33:18 +02:00
flash_neox.py MLPSpeculator. (#1865) 2024-05-14 12:33:18 +02:00
flash_phi.py MLPSpeculator. (#1865) 2024-05-14 12:33:18 +02:00
flash_qwen2.py MLPSpeculator. (#1865) 2024-05-14 12:33:18 +02:00
flash_rw.py MLPSpeculator. (#1865) 2024-05-14 12:33:18 +02:00
flash_santacoder.py MLPSpeculator. (#1865) 2024-05-14 12:33:18 +02:00
flash_starcoder2.py MLPSpeculator. (#1865) 2024-05-14 12:33:18 +02:00
galactica.py MLPSpeculator. (#1865) 2024-05-14 12:33:18 +02:00
globals.py MI300 compatibility (#1764) 2024-05-17 15:30:47 +02:00
gpt_neox.py MLPSpeculator. (#1865) 2024-05-14 12:33:18 +02:00
idefics2.py MLPSpeculator. (#1865) 2024-05-14 12:33:18 +02:00
idefics_causal_lm.py Adding Llava-Next (Llava 1.6) with full support. (#1709) 2024-04-09 21:32:00 +02:00
idefics.py MLPSpeculator. (#1865) 2024-05-14 12:33:18 +02:00
llava_next.py MLPSpeculator. (#1865) 2024-05-14 12:33:18 +02:00
mamba.py Fix TunableOp bug (#1920) 2024-05-17 18:21:51 +02:00
model.py Use the generation config. (#1808) 2024-04-25 19:41:50 +02:00
mpt.py MLPSpeculator. (#1865) 2024-05-14 12:33:18 +02:00
opt.py MLPSpeculator. (#1865) 2024-05-14 12:33:18 +02:00
pali_gemma.py Pali gemma modeling (#1895) 2024-05-16 06:58:47 +02:00
phi.py MLPSpeculator. (#1865) 2024-05-14 12:33:18 +02:00
rw.py MLPSpeculator. (#1865) 2024-05-14 12:33:18 +02:00
santacoder.py MLPSpeculator. (#1865) 2024-05-14 12:33:18 +02:00
seq2seq_lm.py MLPSpeculator. (#1865) 2024-05-14 12:33:18 +02:00
t5.py MLPSpeculator. (#1865) 2024-05-14 12:33:18 +02:00
types.py chore: add pre-commit (#1569) 2024-02-16 11:58:58 +01:00
vlm_causal_lm.py Pali gemma modeling (#1895) 2024-05-16 06:58:47 +02:00