sync: update ggml submodule url

This commit is contained in:
leejet
2024-08-03 11:42:12 +08:00
parent 4a6e36edc5
commit 3d854f7917
3 changed files with 3 additions and 3 deletions

2
.gitmodules vendored
View File

@@ -1,3 +1,3 @@
[submodule "ggml"]
path = ggml
url = https://github.com/leejet/ggml.git
url = https://github.com/ggerganov/ggml.git

2
ggml

Submodule ggml updated: 89fd77041d...73c3287813

2
t5.hpp
View File

@@ -453,7 +453,7 @@ public:
struct ggml_tensor* forward(struct ggml_context* ctx, struct ggml_tensor* x) {
struct ggml_tensor* w = params["weight"];
x = ggml_norm_ext(ctx, x, eps, false);
x = ggml_rms_norm(ctx, x, eps);
x = ggml_mul(ctx, x, w);
return x;
}