diff options
author | Nebula <infinitewormhole@gmail.com> | 2023-03-15 19:29:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-15 19:29:25 -0400 |
commit | 9b4a15b17d8395eb075379b140fcd0b0283f4ef6 (patch) | |
tree | 2c7ce42c531559d72b95dff33621306b55b75fe2 | |
parent | 6eac39ba953acaeec396cea2969dbf413907e2ec (diff) |
Fix RMS norm in GGML (#191)
-rw-r--r-- | ggml.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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; |