Skip to content

Commit 75586ea

Browse files
committed
Delta.net chunked reimplemented
1 parent 61fbeef commit 75586ea

File tree

3 files changed

+521
-173
lines changed

3 files changed

+521
-173
lines changed

ggml/src/ggml-cpu/ggml-cpu.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2295,6 +2295,7 @@ static int ggml_get_n_tasks(struct ggml_tensor * node, int n_threads) {
22952295
case GGML_OP_POOL_2D:
22962296
case GGML_OP_POOL_2D_BACK:
22972297
case GGML_OP_DELTA_NET_RECURRENT:
2298+
case GGML_OP_DELTA_NET:
22982299
{
22992300
n_tasks = 1;
23002301
} break;
@@ -2312,7 +2313,6 @@ static int ggml_get_n_tasks(struct ggml_tensor * node, int n_threads) {
23122313
case GGML_OP_RWKV_WKV6:
23132314
case GGML_OP_GATED_LINEAR_ATTN:
23142315
case GGML_OP_RWKV_WKV7:
2315-
case GGML_OP_DELTA_NET:
23162316
{
23172317
n_tasks = n_threads;
23182318
} break;

0 commit comments

Comments
 (0)