Fix RMS norm in GGML (#191)

This commit is contained in:
Nebula 2023-03-15 19:29:25 -04:00 committed by GitHub
parent 12b9bd9b13
commit 1b96142bae
1 changed files with 1 additions and 0 deletions

1
ggml.c
View File

@ -9314,6 +9314,7 @@ void ggml_graph_compute(struct ggml_context * ctx, struct ggml_cgraph * cgraph)
node->n_tasks = n_threads;
} break;
case GGML_OP_NORM:
case GGML_OP_RMS_NORM:
{
node->n_tasks = n_threads;
} break;