sync: update ggml

This commit is contained in:
leejet 2024-03-02 19:49:41 +08:00
parent a17ae7b7d2
commit a65c410463
3 changed files with 11 additions and 8 deletions

2
ggml

@ -1 +1 @@
Subproject commit b94c066ad4de62bda2a10a80131d4cd8112f7c65
Subproject commit 9cc5cb27f97821482fbb99aea1e590e55bf89151

View File

@ -846,7 +846,7 @@ public:
return NULL;
}
// it's performing a compute, check if backend isn't cpu
if (!ggml_backend_is_cpu(backend) && tensor->backend == GGML_BACKEND_CPU) {
if (!ggml_backend_is_cpu(backend) && tensor->backend == GGML_BACKEND_TYPE_CPU) {
// pass input tensors to gpu memory
auto backend_tensor = ggml_dup_tensor(compute_ctx, tensor);

View File

@ -76,6 +76,9 @@ enum sd_type_t {
SD_TYPE_IQ3_XXS = 18,
SD_TYPE_IQ1_S = 19,
SD_TYPE_IQ4_NL = 20,
SD_TYPE_IQ3_S = 21,
SD_TYPE_IQ2_S = 22,
SD_TYPE_IQ4_XS = 23,
SD_TYPE_I8,
SD_TYPE_I16,
SD_TYPE_I32,