πŸ“‹ Model Description


quantized_by: bartowski pipeline_tag: text-generation basemodelrelation: quantized base_model: openai/gpt-oss-20b

Llamacpp imatrix Quantizations of gpt-oss-20b by openai

Using llama.cpp release b6096 for quantization.

Original model: https://huggingface.co/openai/gpt-oss-20b

All quants made using imatrix option with combinedallmedium dataset from Ed Addario here

Run them in LM Studio

Run them directly with llama.cpp, or any other llama.cpp based project

All quants keep the feed forward networks at mxfp4 for optimal performance, which does mean the size differences are negligible unfortunately, but being provided just because.

Prompt format

No chat template specified so default is used. This may be incorrect, check original model card for details.

<|start|>system<|message|>You are ChatGPT, a large language model trained by OpenAI.
Knowledge cutoff: 2024-06
Current date: 2025-08-05

Reasoning: medium

Valid channels: analysis, commentary, final. Channel must be included for every message.<|end|><|start|>developer<|message|># Instructions

{system_prompt}<|end|><|start|>user<|message|>{prompt}<|end|><|start|>assistant

Download a file (not the whole branch) from below:

Use this one:

FilenameQuant typeFile SizeSplitDescription
gpt-oss-20b-MXFP4.ggufMXFP412.1GBfalseFull MXFP4 weights, recommended for this model.
The reason is, the FFN (feed forward networks) of gpt-oss do not behave nicely when quantized to anything other than MXFP4, so they are kept at that level for everything.

The rest of these are provided for your own interest in case you feel like experimenting, but the size savings is basically non-existent so I would not recommend running them, they are provided simply for show:

FilenameQuant typeFile SizeSplitDescription
gpt-oss-20b-Q6KL.ggufQ6KL12.04GBfalseUses Q80 for embed and output weights. Q6K with all FFN kept at MXFP4MOE.
gpt-oss-20b-Q6K.ggufQ6K12.04GBfalseQ6K with all FFN kept at MXFP4MOE.
gpt-oss-20b-Q5KL.ggufQ5KL11.91GBfalseUses Q80 for embed and output weights. Q5K with all FFN kept at MXFP4MOE.
gpt-oss-20b-Q4KL.ggufQ4KL11.89GBfalseUses Q80 for embed and output weights. Q4K with all FFN kept at MXFP4MOE.
gpt-oss-20b-Q2KL.ggufQ2KL11.85GBfalseUses Q80 for embed and output weights. Q2K with all FFN kept at MXFP4MOE.
gpt-oss-20b-Q3KXL.ggufQ3KXL11.78GBfalseUses Q80 for embed and output weights. Q3KL with all FFN kept at MXFP4_MOE.
gpt-oss-20b-Q5KM.ggufQ5KM11.73GBfalseQ5KM with all FFN kept at MXFP4MOE.
gpt-oss-20b-Q5KS.ggufQ5KS11.72GBfalseQ5KS with all FFN kept at MXFP4MOE.
gpt-oss-20b-Q4KM.ggufQ4KM11.67GBfalseQ4KM with all FFN kept at MXFP4MOE.
gpt-oss-20b-Q4KS.ggufQ4KS11.67GBfalseQ4KS with all FFN kept at MXFP4MOE.
gpt-oss-20b-Q41.ggufQ4111.59GBfalseQ41 with all FFN kept at MXFP4MOE.
gpt-oss-20b-IQ4NL.ggufIQ4NL11.56GBfalseIQ4NL with all FFN kept at MXFP4MOE.
gpt-oss-20b-IQ4XS.ggufIQ4XS11.56GBfalseIQ4XS with all FFN kept at MXFP4MOE.
gpt-oss-20b-Q3KM.ggufQ3KM11.56GBfalseQ3KM with all FFN kept at MXFP4MOE.
gpt-oss-20b-IQ3M.ggufIQ3M11.56GBfalseIQ3M with all FFN kept at MXFP4MOE.
gpt-oss-20b-IQ3XS.ggufIQ3XS11.56GBfalseIQ3XS with all FFN kept at MXFP4MOE.
gpt-oss-20b-IQ3XXS.ggufIQ3XXS11.56GBfalseIQ3XXS with all FFN kept at MXFP4MOE.
gpt-oss-20b-Q2K.ggufQ2K11.56GBfalseQ2K with all FFN kept at MXFP4MOE.
gpt-oss-20b-Q3KS.ggufQ3KS11.55GBfalseQ3KS with all FFN kept at MXFP4MOE.
gpt-oss-20b-IQ2M.ggufIQ2M11.55GBfalseIQ2M with all FFN kept at MXFP4MOE.
gpt-oss-20b-IQ2S.ggufIQ2S11.55GBfalseIQ2S with all FFN kept at MXFP4MOE.
gpt-oss-20b-Q40.ggufQ4011.52GBfalseQ40 with all FFN kept at MXFP4MOE.
gpt-oss-20b-IQ2XS.ggufIQ2XS11.51GBfalseIQ2XS with all FFN kept at MXFP4MOE.
gpt-oss-20b-IQ2XXS.ggufIQ2XXS11.51GBfalseIQ2XXS with all FFN kept at MXFP4MOE.
gpt-oss-20b-Q3KL.ggufQ3KL11.49GBfalseQ3KL with all FFN kept at MXFP4MOE.

Embed/output weights

Some of these quants (Q3KXL, Q4KL etc) are the standard quantization method with the embeddings and output weights quantized to Q8_0 instead of what they would normally default to.

Downloading using huggingface-cli


Click to view download instructions

First, make sure you have hugginface-cli installed:

pip install -U "huggingface_hub[cli]"

Then, you can target the specific file you want:

huggingface-cli download bartowski/openaigpt-oss-20b-GGUF --include "openaigpt-oss-20b-Q4KM.gguf" --local-dir ./

If the model is bigger than 50GB, it will have been split into multiple files. In order to download them all to a local folder, run:

huggingface-cli download bartowski/openaigpt-oss-20b-GGUF --include "openaigpt-oss-20b-Q8_0/*" --local-dir ./

You can either specify a new local-dir (openaigpt-oss-20b-Q80) or download them all in place (./)

ARM/AVX information

Previously, you would download Q4044/48/8_8, and these would have their weights interleaved in memory in order to improve performance on ARM and AVX machines by loading up more data in one pass.

Now, however, there is something called "online repacking" for weights. details in this PR. If you use Q40 and your hardware would benefit from repacking weights, it will do it automatically on the fly.

As of llama.cpp build b4282 you will not be able to run the Q40XX files and will instead need to use Q4_0.

Additionally, if you want to get slightly better quality for , you can use IQ4NL thanks to this PR which will also repack the weights for ARM, though only the 4_4 for now. The loading time may be slower but it will result in an overall speed incrase.


Click to view Q40X_X information (deprecated

I'm keeping this section to show the potential theoretical uplift in performance from using the Q4_0 with online repacking.


Click to view benchmarks on an AVX2 system (EPYC7702)

modelsizeparamsbackendthreadstestt/s% (vs Q4_0)
qwen2 3B Q4_01.70 GiB3.09 BCPU64pp512204.03 Β± 1.03100%
qwen2 3B Q4_01.70 GiB3.09 BCPU64pp1024282.92 Β± 0.19100%
qwen2 3B Q4_01.70 GiB3.09 BCPU64pp2048259.49 Β± 0.44100%
qwen2 3B Q4_01.70 GiB3.09 BCPU64tg12839.12 Β± 0.27100%
qwen2 3B Q4_01.70 GiB3.09 BCPU64tg25639.31 Β± 0.69100%
qwen2 3B Q4_01.70 GiB3.09 BCPU64tg51240.52 Β± 0.03100%
qwen2 3B Q4KM1.79 GiB3.09 BCPU64pp512301.02 Β± 1.74147%
qwen2 3B Q4KM1.79 GiB3.09 BCPU64pp1024287.23 Β± 0.20101%
qwen2 3B Q4KM1.79 GiB3.09 BCPU64pp2048262.77 Β± 1.81101%
qwen2 3B Q4KM1.79 GiB3.09 BCPU64tg12818.80 Β± 0.9948%
qwen2 3B Q4KM1.79 GiB3.09 BCPU64tg25624.46 Β± 3.0483%
qwen2 3B Q4KM1.79 GiB3.09 BCPU64tg51236.32 Β± 3.5990%
qwen2 3B Q408_81.69 GiB3.09 BCPU64pp512271.71 Β± 3.53133%
qwen2 3B Q408_81.69 GiB3.09 BCPU64pp1024279.86 Β± 45.63100%
qwen2 3B Q408_81.69 GiB3.09 BCPU64pp2048320.77 Β± 5.00124%
qwen2 3B Q408_81.69 GiB3.09 BCPU64tg12843.51 Β± 0.05111%
qwen2 3B Q408_81.69 GiB3.09 BCPU64tg25643.35 Β± 0.09110%
qwen2 3B Q408_81.69 GiB3.09 BCPU64tg51242.60 Β± 0.31105%
Q408_8 offers a nice bump to prompt processing and a small bump to text generation

Which file should I choose?


Click here for details

A great write up with charts showing various performances is provided by Artefact2 here

The first thing to figure out is how big a model you can run. To do this, you'll need to figure out how much RAM and/or VRAM you have.

If you want your model running as FAST as possible, you'll want to fit the whole thing on your GPU's VRAM. Aim for a quant with a file size 1-2GB smaller than your GPU's total VRAM.

If you want the absolute maximum quality, add both your system RAM and your GPU's VRAM together, then similarly grab a quant with a file size 1-2GB Smaller than that total.

Next, you'll need to decide if you want to use an 'I-quant' or a 'K-quant'.

If you don't want to think too much, grab one of the K-quants. These are in format 'QXKX', like Q5KM.

If you want to get more into the weeds, you can check out this extremely useful feature chart:

llama.cpp feature matrix

But basically, if you're aiming for below Q4, and you're running cuBLAS (Nvidia) or rocBLAS (AMD), you should look towards the I-quants. These are in format IQXX, like IQ3M. These are newer and offer better performance for their size.

These I-quants can also be used on CPU, but will be slower than their K-quant equivalent, so speed vs performance is a tradeoff you'll have to decide.

Credits

Thank you kalomaze and Dampf for assistance in creating the imatrix calibration dataset.

Thank you ZeroWw for the inspiration to experiment with embed/output.

Thank you to LM Studio for sponsoring my work.

Want to support my work? Visit my ko-fi page here: https://ko-fi.com/bartowski

πŸ“‚ GGUF File List

πŸ“ Filename πŸ“¦ Size ⚑ Download
openai_gpt-oss-20b-IQ2_M.gguf
LFS Q2
10.75 GB Download
openai_gpt-oss-20b-IQ2_S.gguf
LFS Q2
10.75 GB Download
openai_gpt-oss-20b-IQ2_XS.gguf
LFS Q2
10.72 GB Download
openai_gpt-oss-20b-IQ2_XXS.gguf
LFS Q2
10.72 GB Download
openai_gpt-oss-20b-IQ3_M.gguf
LFS Q3
10.77 GB Download
openai_gpt-oss-20b-IQ3_XS.gguf
LFS Q3
10.77 GB Download
openai_gpt-oss-20b-IQ3_XXS.gguf
LFS Q3
10.77 GB Download
openai_gpt-oss-20b-IQ4_NL.gguf
LFS Q4
10.77 GB Download
openai_gpt-oss-20b-IQ4_XS.gguf
LFS Q4
10.77 GB Download
openai_gpt-oss-20b-MXFP4.gguf
LFS
11.28 GB Download
openai_gpt-oss-20b-Q2_K.gguf
LFS Q2
10.77 GB Download
openai_gpt-oss-20b-Q2_K_L.gguf
LFS Q2
11.03 GB Download
openai_gpt-oss-20b-Q3_K_L.gguf
LFS Q3
10.7 GB Download
openai_gpt-oss-20b-Q3_K_M.gguf
LFS Q3
10.77 GB Download
openai_gpt-oss-20b-Q3_K_S.gguf
LFS Q3
10.76 GB Download
openai_gpt-oss-20b-Q3_K_XL.gguf
LFS Q3
10.97 GB Download
openai_gpt-oss-20b-Q4_0.gguf
Recommended LFS Q4
10.73 GB Download
openai_gpt-oss-20b-Q4_1.gguf
LFS Q4
10.8 GB Download
openai_gpt-oss-20b-Q4_K_L.gguf
LFS Q4
11.07 GB Download
openai_gpt-oss-20b-Q4_K_M.gguf
LFS Q4
10.87 GB Download
openai_gpt-oss-20b-Q4_K_S.gguf
LFS Q4
10.87 GB Download
openai_gpt-oss-20b-Q5_K_L.gguf
LFS Q5
11.09 GB Download
openai_gpt-oss-20b-Q5_K_M.gguf
LFS Q5
10.92 GB Download
openai_gpt-oss-20b-Q5_K_S.gguf
LFS Q5
10.92 GB Download
openai_gpt-oss-20b-Q6_K.gguf
LFS Q6
11.21 GB Download
openai_gpt-oss-20b-Q6_K_L.gguf
LFS Q6
11.21 GB Download
openai_gpt-oss-20b-Q8_0.gguf
LFS Q8
11.28 GB Download
openai_gpt-oss-20b-bf16.gguf
LFS FP16
12.85 GB Download
openai_gpt-oss-20b-imatrix.gguf
LFS
26.78 MB Download