mirror of
https://github.com/mii443/llama.cpp.git
synced 2025-08-22 15:05:34 +00:00
Fix RMS norm in GGML (#191)
This commit is contained in:
1
ggml.c
1
ggml.c
@ -9314,6 +9314,7 @@ void ggml_graph_compute(struct ggml_context * ctx, struct ggml_cgraph * cgraph)
|
|||||||
node->n_tasks = n_threads;
|
node->n_tasks = n_threads;
|
||||||
} break;
|
} break;
|
||||||
case GGML_OP_NORM:
|
case GGML_OP_NORM:
|
||||||
|
case GGML_OP_RMS_NORM:
|
||||||
{
|
{
|
||||||
node->n_tasks = n_threads;
|
node->n_tasks = n_threads;
|
||||||
} break;
|
} break;
|
||||||
|
Reference in New Issue
Block a user