Compare commits

...

3 Commits

Author SHA1 Message Date
leejet
de298c225b fix(ci): trigger builds for ggml updates 2026-08-12 23:43:42 +08:00
leejet
fabe481212
sync: update ggml (#1873) 2026-08-12 23:40:28 +08:00
LostRuins Concedo
06c359f17a
fix: replace free_compute_buffer with runner_done in vae (#1872) 2026-08-12 23:39:57 +08:00
3 changed files with 5 additions and 3 deletions

View File

@ -23,6 +23,7 @@ on:
"**/*.c",
"**/*.cpp",
"**/*.cu",
"ggml",
"examples/server/frontend",
"examples/server/frontend/**",
]
@ -40,6 +41,7 @@ on:
"**/*.c",
"**/*.cpp",
"**/*.cu",
"ggml",
"examples/server/frontend",
"examples/server/frontend/**",
]

2
ggml

@ -1 +1 @@
Subproject commit 3f85508cddcba4e4a8a22414af379816f7945222
Subproject commit 8e800cef2948046cc47f9db6090491c6128ca42c

View File

@ -156,7 +156,7 @@ public:
output = _compute(n_threads, input, false);
}
free_compute_buffer();
runner_done();
if (output.empty()) {
LOG_ERROR("vae encode compute failed");
@ -207,7 +207,7 @@ public:
output = _compute(n_threads, input, true);
}
free_compute_buffer();
runner_done();
if (output.empty()) {
LOG_ERROR("vae decode compute failed");