<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>Qwen3 on KnightLi Blog</title>
        <link>https://knightli.com/en/tags/qwen3/</link>
        <description>Recent content in Qwen3 on KnightLi Blog</description>
        <generator>Hugo -- gohugo.io</generator>
        <language>en</language>
        <lastBuildDate>Sat, 11 Jul 2026 09:29:52 +0800</lastBuildDate><atom:link href="https://knightli.com/en/tags/qwen3/index.xml" rel="self" type="application/rss+xml" /><item>
        <title>RTX 3060 runs the best quantized version of Qwen3: how to choose 12GB video memory</title>
        <link>https://knightli.com/en/2026/07/11/rtx-3060-qwen3-best-quantization-guide/</link>
        <pubDate>Sat, 11 Jul 2026 09:29:52 +0800</pubDate>
        
        <guid>https://knightli.com/en/2026/07/11/rtx-3060-qwen3-best-quantization-guide/</guid>
        <description>&lt;p&gt;When RTX 3060 12GB runs Qwen3, it is most likely to fall into two misunderstandings: one is to only look at the number of model parameters, and the other is to think that the lower the quantization, the more suitable it is.&lt;/p&gt;
&lt;p&gt;For most local chat, code interpretation, and lightweight agent tasks, the safest first choices are:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;code&gt;Q6_K&lt;/code&gt; for **Qwen3-8B. **&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;It can usually reserve the necessary runtime and KV cache space in 12GB of video memory, and the output quality is more stable than the extreme low-bitwidth version. When the video memory is tighter and you want to retain more context, fall back to &lt;code&gt;Q5_K_M&lt;/code&gt;; &lt;code&gt;Q8_0&lt;/code&gt; can run, but leaves less margin for long contexts and other programs.&lt;/p&gt;
&lt;p&gt;This article discusses the desktop RTX 3060 12GB, GGUF format, and single-user local inference by default. If yours is RTX 3060 Laptop 6GB/8GB, skip directly to &amp;ldquo;How to downgrade the laptop version&amp;rdquo; later.&lt;/p&gt;
&lt;h2 id=&#34;lets-look-at-the-conclusion-first-which-one-should-i-choose-3060-12gb&#34;&gt;Let’s look at the conclusion first: Which one should I choose, 3060 12GB?
&lt;/h2&gt;&lt;table&gt;
  &lt;thead&gt;
      &lt;tr&gt;
          &lt;th&gt;Target&lt;/th&gt;
          &lt;th&gt;Recommendation models and quantification&lt;/th&gt;
          &lt;th&gt;Why&lt;/th&gt;
      &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
      &lt;tr&gt;
          &lt;td&gt;Default preferred&lt;/td&gt;
          &lt;td&gt;&lt;code&gt;Qwen3-8B Q6_K&lt;/code&gt;&lt;/td&gt;
          &lt;td&gt;Quality, speed, and memory margin are relatively balanced&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Less memory/longer context&lt;/td&gt;
          &lt;td&gt;&lt;code&gt;Qwen3-8B Q5_K_M&lt;/code&gt;&lt;/td&gt;
          &lt;td&gt;Leave more space for KV cache, the quality is still suitable for daily use&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Pay more attention to output quality&lt;/td&gt;
          &lt;td&gt;&lt;code&gt;Qwen3-8B Q8_0&lt;/code&gt;&lt;/td&gt;
          &lt;td&gt;Single users can try short context, but the 12GB reserve is small&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Want to improve model capabilities&lt;/td&gt;
          &lt;td&gt;&lt;code&gt;Qwen3-14B Q4_K_M&lt;/code&gt;&lt;/td&gt;
          &lt;td&gt;Can try, but context, concurrency and stability are more limited&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Want to try MoE&lt;/td&gt;
          &lt;td&gt;&lt;code&gt;Qwen3-30B-A3B&lt;/code&gt; Low quantization + CPU/GPU mixed offloading&lt;/td&gt;
          &lt;td&gt;Not suitable for the 12GB default solution, which puts greater pressure on model files and memory&lt;/td&gt;
      &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;If you only want to download one version and don’t want to go through repeated troubles, select &lt;code&gt;Qwen3-8B Q6_K&lt;/code&gt;.&lt;/p&gt;
&lt;h2 id=&#34;why-not-just-go-to-14b-or-30b-a3b&#34;&gt;Why not just go to 14B or 30B-A3B?
&lt;/h2&gt;&lt;p&gt;Qwen3-8B has about 8.2B parameters, the official native context is 32K, and can be extended to longer contexts through YaRN. For RTX 3060 12GB, the key advantage of the 8B model is not &amp;ldquo;the strongest&amp;rdquo;, but the ability to put the model, runtime overhead and part of the KV cache into the video memory.&lt;/p&gt;
&lt;p&gt;&lt;code&gt;Qwen3-14B Q4_K_M&lt;/code&gt; has higher quality potential, but the quantized file itself already squeezes 12GB noticeably. Even if the model loads, long prompts, thinking modes, long output, or larger contexts are more likely to strain video memory. It&amp;rsquo;s more suitable for people who are willing to sacrifice context and speed for single-round answer quality.&lt;/p&gt;
&lt;p&gt;&lt;code&gt;Qwen3-30B-A3B&lt;/code&gt; is a MoE model with fewer parameters per activation, but full weights still need to be loaded. MoE can reduce some of the computing pressure and cannot turn dozens of GB model files into 12GB video memory models. On the 3060, you can use CPU memory with some GPU offloading to conduct experiments, but the speed, memory usage, and parameter adjustment complexity will increase.&lt;/p&gt;
&lt;p&gt;Therefore, the &amp;ldquo;best quantized version&amp;rdquo; is not the version with the largest file size, nor the version with the most parameters, but the version that can run stably under your common context length, has sufficient output quality, and is less prone to OOM.&lt;/p&gt;
&lt;h2 id=&#34;how-to-choose-between-q6_k-q5_k_m-and-q8_0&#34;&gt;How to choose between Q6_K, Q5_K_M and Q8_0
&lt;/h2&gt;&lt;p&gt;Three common options can be understood as:&lt;/p&gt;
&lt;table&gt;
  &lt;thead&gt;
      &lt;tr&gt;
          &lt;th&gt;Quantify&lt;/th&gt;
          &lt;th&gt;Recommendations on RTX 3060 12GB&lt;/th&gt;
      &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
      &lt;tr&gt;
          &lt;td&gt;&lt;code&gt;Q5_K_M&lt;/code&gt;&lt;/td&gt;
          &lt;td&gt;Give it priority when you need more KV cache, often post long codes, or want to open a higher context.&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;&lt;code&gt;Q6_K&lt;/code&gt;&lt;/td&gt;
          &lt;td&gt;The default recommendation for most people, with a balance between quality and memory usage.&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;&lt;code&gt;Q8_0&lt;/code&gt;&lt;/td&gt;
          &lt;td&gt;Closer to high accuracy, but with less memory margin; you can try it when you have a short context and only run one model.&lt;/td&gt;
      &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Quantization selection cannot be understood only in terms of &amp;ldquo;the higher the bit width, the better&amp;rdquo;. For local inference, the memory margin will directly affect the context length, batch processing, first token delay and operational stability. &lt;code&gt;Q8_0&lt;/code&gt; If you are forced to lower the context very low, the actual experience may not be better than &lt;code&gt;Q6_K&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;It is recommended to test in the following order first:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;With &lt;code&gt;Q6_K&lt;/code&gt;, the context is set to 8192.&lt;/li&gt;
&lt;li&gt;Observe the memory usage, generation speed and stability.&lt;/li&gt;
&lt;li&gt;When often dealing with long codes and long documents, change to &lt;code&gt;Q5_K_M&lt;/code&gt; and compare again.&lt;/li&gt;
&lt;li&gt;If you only want to do a short Q&amp;amp;A and there is still memory left, try &lt;code&gt;Q8_0&lt;/code&gt; again.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id=&#34;llamacpp-recommended-configuration&#34;&gt;llama.cpp recommended configuration
&lt;/h2&gt;&lt;p&gt;Qwen officially recommends using the newer &lt;code&gt;llama.cpp&lt;/code&gt; for full Qwen3 support. Here’s a practical starting point for the RTX 3060 12GB:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;3
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;4
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;5
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;6
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;7
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;8
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;9
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;./llama-cli &lt;span class=&#34;se&#34;&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  -hf Qwen/Qwen3-8B-GGUF:Q6_K &lt;span class=&#34;se&#34;&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  --jinja &lt;span class=&#34;se&#34;&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  -ngl &lt;span class=&#34;m&#34;&gt;99&lt;/span&gt; &lt;span class=&#34;se&#34;&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  -c &lt;span class=&#34;m&#34;&gt;8192&lt;/span&gt; &lt;span class=&#34;se&#34;&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  -n &lt;span class=&#34;m&#34;&gt;1024&lt;/span&gt; &lt;span class=&#34;se&#34;&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  --temp 0.6 &lt;span class=&#34;se&#34;&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  --top-k &lt;span class=&#34;m&#34;&gt;20&lt;/span&gt; &lt;span class=&#34;se&#34;&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  --top-p 0.95
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;The meaning of several parameters:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;-ngl 99&lt;/code&gt;: Try to put the offloadable layer on the GPU. If the video memory is insufficient or startup fails, gradually reduce it.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;-c 8192&lt;/code&gt;: Start with 8K context first, don&amp;rsquo;t set 32K at the beginning.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;-n 1024&lt;/code&gt;: Limit the length of a single generation to prevent long output from continuously occupying resources.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;--jinja&lt;/code&gt;: Organize input according to model chat template. Qwen3 does not recommend handwriting a random format.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;When you want to do services, you can use:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;3
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;4
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;5
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;6
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;./llama-server &lt;span class=&#34;se&#34;&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  -hf Qwen/Qwen3-8B-GGUF:Q6_K &lt;span class=&#34;se&#34;&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  --jinja &lt;span class=&#34;se&#34;&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  -ngl &lt;span class=&#34;m&#34;&gt;99&lt;/span&gt; &lt;span class=&#34;se&#34;&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  -c &lt;span class=&#34;m&#34;&gt;8192&lt;/span&gt; &lt;span class=&#34;se&#34;&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  --port &lt;span class=&#34;m&#34;&gt;8080&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;After starting, look at &lt;code&gt;nvidia-smi&lt;/code&gt; first. If the video memory is nearly full, the system response becomes slow, or an error is reported when the prompt is long for the first time, first reduce the context or switch to &lt;code&gt;Q5_K_M&lt;/code&gt;, and do not blindly continue to add layers.&lt;/p&gt;
&lt;h2 id=&#34;how-do-ollama-users-choose&#34;&gt;How do Ollama users choose?
&lt;/h2&gt;&lt;p&gt;Ollama can be run directly:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;ollama run qwen3:8b
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;It is more suitable for people who want to use it quickly and don&amp;rsquo;t want to deal with GGUF files. But there are two points to note:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;The actual corresponding quantified version behind the label may be updated with the warehouse, and you cannot infer which GGUF it must be just based on &lt;code&gt;qwen3:8b&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Ollama&amp;rsquo;s default context settings may not be suitable for your task. When long context is required, &lt;code&gt;num_ctx&lt;/code&gt; should be adjusted explicitly and attention should be paid to video memory changes.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;If you want precise control over &lt;code&gt;Q5_K_M&lt;/code&gt;, &lt;code&gt;Q6_K&lt;/code&gt;, or &lt;code&gt;Q8_0&lt;/code&gt;, it&amp;rsquo;s often more intuitive to import GGUFs in &lt;code&gt;llama.cpp&lt;/code&gt;, LM Studio, or manually.&lt;/p&gt;
&lt;h2 id=&#34;how-to-downgrade-rtx-3060-laptop-6gb8gb&#34;&gt;How to downgrade RTX 3060 Laptop 6GB/8GB
&lt;/h2&gt;&lt;p&gt;The video memory of notebook RTX 3060 is usually 6GB or 8GB, and the 12GB conclusion cannot be copied.&lt;/p&gt;
&lt;table&gt;
  &lt;thead&gt;
      &lt;tr&gt;
          &lt;th&gt;Video memory&lt;/th&gt;
          &lt;th&gt;suggestion&lt;/th&gt;
      &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
      &lt;tr&gt;
          &lt;td&gt;8GB&lt;/td&gt;
          &lt;td&gt;Prioritize &lt;code&gt;Qwen3-4B Q6_K/Q8_0&lt;/code&gt;; if you want to try 8B, choose a lower bit width and lower the context&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;6GB&lt;/td&gt;
          &lt;td&gt;Prefer &lt;code&gt;Qwen3-4B Q4_K_M/Q5_K_M&lt;/code&gt;, or smaller models&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;12GB&lt;/td&gt;
          &lt;td&gt;&lt;code&gt;Qwen3-8B Q6_K&lt;/code&gt; is the default preferred, &lt;code&gt;Q5_K_M&lt;/code&gt; leaves more context, &lt;code&gt;Q8_0&lt;/code&gt; is only suitable for short context attempts&lt;/td&gt;
      &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Notebooks also need to consider power consumption and heat dissipation. Even if the video memory is the same, the continuous generation speed may be significantly lower than that of a desktop card; first run with a short prompt for 10 to 20 minutes, and then judge whether the configuration is really suitable for daily use.&lt;/p&gt;
&lt;h2 id=&#34;dont-ignore-kv-cache-and-thinking-patterns&#34;&gt;Don’t ignore KV cache and thinking patterns
&lt;/h2&gt;&lt;p&gt;Just because the model file can be put into the video memory does not mean that the real task will run smoothly. Qwen3&amp;rsquo;s context, historical conversations and generated content will all form a KV cache; the longer the context, the higher the graphics memory usage.&lt;/p&gt;
&lt;p&gt;Especially for the following types of tasks, it is recommended to give priority to &lt;code&gt;Q5_K_M&lt;/code&gt; or reduce &lt;code&gt;-c&lt;/code&gt;:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Post multiple source codes, logs or long documents at one time;&lt;/li&gt;
&lt;li&gt;long continuous conversations;&lt;/li&gt;
&lt;li&gt;Enable think mode and allow very long output;&lt;/li&gt;
&lt;li&gt;The local API serves multiple requests simultaneously.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The 3060 12GB is more suitable for single-user, short to medium context local assistants. If the target is more than 32K contexts, multi-person concurrency or large-scale RAG, it is usually more time-saving to upgrade the graphics memory or switch to cloud inference than to continue compression.&lt;/p&gt;
&lt;h2 id=&#34;record-these-four-items-during-the-actual-measurement&#34;&gt;Record these four items during the actual measurement
&lt;/h2&gt;&lt;p&gt;Don&amp;rsquo;t just look at tokens/s. Test with the same prompt word and record:&lt;/p&gt;
&lt;table&gt;
  &lt;thead&gt;
      &lt;tr&gt;
          &lt;th&gt;project&lt;/th&gt;
          &lt;th&gt;What to see&lt;/th&gt;
      &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
      &lt;tr&gt;
          &lt;td&gt;Video memory&lt;/td&gt;
          &lt;td&gt;Is it nearly full? Is there any remaining space for the KV cache?&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;First token delay&lt;/td&gt;
          &lt;td&gt;Do you need to wait too long under a long prompt?&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Generation speed&lt;/td&gt;
          &lt;td&gt;Tokens/s under the same prompt and the same output length&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;stability&lt;/td&gt;
          &lt;td&gt;Is it OOM, slowing down or slowing down the system after continuous running?&lt;/td&gt;
      &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;code&gt;Q6_K&lt;/code&gt; that can stably complete your common tasks is usually more worthy of long-term retention than &lt;code&gt;Q8_0&lt;/code&gt; that occasionally has slightly higher quality but frequently bursts the video memory.&lt;/p&gt;
&lt;h2 id=&#34;summarize&#34;&gt;Summarize
&lt;/h2&gt;&lt;p&gt;For RTX 3060 12GB, Qwen3’s default answer is clear: select &lt;strong&gt;&lt;code&gt;Qwen3-8B Q6_K&lt;/code&gt;&lt;/strong&gt; first. It is suitable for local chat, code explanation, lightweight Agent and single-user API; if you need more context margin, change to &lt;code&gt;Q5_K_M&lt;/code&gt;; only try &lt;code&gt;Q8_0&lt;/code&gt; when the context is short and the video memory is sufficient.&lt;/p&gt;
&lt;p&gt;Don&amp;rsquo;t expect &amp;ldquo;30B-A3B only activates a few parameters at a time&amp;rdquo; to fit into 12GB of video memory as easily as 8B. MoE reduces part of the computation and does not eliminate the memory requirements of the complete model weights, KV cache, and runtime.&lt;/p&gt;
&lt;p&gt;refer to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/QwenLM/Qwen3&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Qwen3 official warehouse&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://huggingface.co/Qwen/Qwen3-8B&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Qwen3-8B model card&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://huggingface.co/Qwen/Qwen3-8B-GGUF&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Qwen3-8B-GGUF&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://knightli.com/en/2026/05/01/qwen3-6-local-vram-quantization-table/&#34; &gt;Local deployment Qwen3.6 video memory table&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
        </item>
        
    </channel>
</rss>
