Skip to content

Commit 3d854f7

Browse files
committed
sync: update ggml submodule url
1 parent 4a6e36e commit 3d854f7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.gitmodules

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[submodule "ggml"]
22
path = ggml
3-
url = https://github.com/leejet/ggml.git
3+
url = https://github.com/ggerganov/ggml.git

ggml

Submodule ggml updated from 89fd770 to 73c3287

t5.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ class T5LayerNorm : public UnaryBlock {
453453

454454
struct ggml_tensor* forward(struct ggml_context* ctx, struct ggml_tensor* x) {
455455
struct ggml_tensor* w = params["weight"];
456-
x = ggml_norm_ext(ctx, x, eps, false);
456+
x = ggml_rms_norm(ctx, x, eps);
457457
x = ggml_mul(ctx, x, w);
458458
return x;
459459
}

0 commit comments

Comments
 (0)