diff options
Diffstat (limited to 'common/common.cpp')
-rw-r--r-- | common/common.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/common.cpp b/common/common.cpp index 6c298d2d..75dd78e6 100644 --- a/common/common.cpp +++ b/common/common.cpp @@ -2242,6 +2242,9 @@ static ggml_type kv_cache_type_from_str(const std::string & s) { if (s == "q5_1") { return GGML_TYPE_Q5_1; } + if (s == "q6_0") { + return GGML_TYPE_Q6_0; + } throw std::runtime_error("Invalid cache type: " + s); } |