summaryrefslogtreecommitdiff
path: root/common/common.h
diff options
context:
space:
mode:
authorJohannes Gäßler <johannesg@5d6.de>2023-08-22 22:47:05 +0200
committerGitHub <noreply@github.com>2023-08-22 22:47:05 +0200
commitc63bb1d16a70c03440671b76954bb767513cead8 (patch)
tree5562dd98e6a37a1bfe635bf25114e3bdb5660996 /common/common.h
parent3b6cfe7c927df178ca3c11643c3ec93e143471c9 (diff)
CUDA: use mul_mat_q kernels by default (#2683)
Diffstat (limited to 'common/common.h')
-rw-r--r--common/common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/common.h b/common/common.h
index c50a6edf..18fd951e 100644
--- a/common/common.h
+++ b/common/common.h
@@ -68,7 +68,7 @@ struct gpt_params {
size_t hellaswag_tasks = 400; // number of tasks to use when computing the HellaSwag score
bool low_vram = false; // if true, reduce VRAM usage at the cost of performance
- bool mul_mat_q = false; // if true, use experimental mul_mat_q kernels
+ bool mul_mat_q = true; // if true, use mul_mat_q kernels instead of cuBLAS
bool memory_f16 = true; // use f16 instead of f32 for memory kv
bool random_prompt = false; // do not randomize prompt if none provided
bool use_color = false; // use color to distinguish generations and inputs