summaryrefslogtreecommitdiff
path: root/ggml/src/ggml-cuda/template-instances/generate_cu_files.py
diff options
context:
space:
mode:
authorKawrakow <iwankawrakow@gmail.com>2024-10-22 11:34:49 +0200
committerGitHub <noreply@github.com>2024-10-22 11:34:49 +0200
commit462c6cd7b1b03843ab782e36c75da9bfea657c14 (patch)
treeb422b698b8373f7a8b29bb7b114a11bb9ba87dce /ggml/src/ggml-cuda/template-instances/generate_cu_files.py
parentdbf951df1594a3dec36eca9ab81a0f7ba81b11cd (diff)
Enable q6_0 for flash attention (#101)
Co-authored-by: Iwan Kawrakow <iwan.kawrakow@gmail.com>
Diffstat (limited to 'ggml/src/ggml-cuda/template-instances/generate_cu_files.py')
-rwxr-xr-xggml/src/ggml-cuda/template-instances/generate_cu_files.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ggml/src/ggml-cuda/template-instances/generate_cu_files.py b/ggml/src/ggml-cuda/template-instances/generate_cu_files.py
index 1186112e..4f7489d5 100755
--- a/ggml/src/ggml-cuda/template-instances/generate_cu_files.py
+++ b/ggml/src/ggml-cuda/template-instances/generate_cu_files.py
@@ -3,7 +3,7 @@
from glob import glob
import os
-TYPES_KV = ["GGML_TYPE_Q4_0", "GGML_TYPE_Q4_1", "GGML_TYPE_Q5_0", "GGML_TYPE_Q5_1", "GGML_TYPE_Q8_0", "GGML_TYPE_IQ4_NL", "GGML_TYPE_F16"]
+TYPES_KV = ["GGML_TYPE_Q4_0", "GGML_TYPE_Q4_1", "GGML_TYPE_Q5_0", "GGML_TYPE_Q5_1", "GGML_TYPE_Q8_0", "GGML_TYPE_IQ4_NL", "GGML_TYPE_Q6_0", "GGML_TYPE_F16"]
SOURCE_FATTN_VEC = """// This file has been autogenerated by generate_cu_files.py, do not edit manually.