summaryrefslogtreecommitdiff
path: root/llama.cpp
diff options
context:
space:
mode:
authorJohannes Gäßler <johannesg@5d6.de>2023-08-30 21:46:19 +0200
committerGitHub <noreply@github.com>2023-08-30 21:46:19 +0200
commit8afe2280009ecbfc9de2c93b8f41283dc810609a (patch)
treed18aa1ddc7afcd715e7028dfad94a53de12c05b2 /llama.cpp
parent71d6975559acfd6c8407a4ef8275a9979c737765 (diff)
CUDA: mul_mat_q=true llama_context_params default (#2912)
Diffstat (limited to 'llama.cpp')
-rw-r--r--llama.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llama.cpp b/llama.cpp
index fcd6f276..95ee6ffe 100644
--- a/llama.cpp
+++ b/llama.cpp
@@ -5287,7 +5287,7 @@ struct llama_context_params llama_context_default_params() {
/*.progress_callback =*/ nullptr,
/*.progress_callback_user_data =*/ nullptr,
/*.low_vram =*/ false,
- /*.mul_mat_q =*/ false,
+ /*.mul_mat_q =*/ true,
/*.f16_kv =*/ true,
/*.logits_all =*/ false,
/*.vocab_only =*/ false,