From ad6eaffd3cec88cea0dbcaa209d43e58ccd09a48 Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Thu, 9 Apr 2026 22:33:30 +0800 Subject: [PATCH] updated docs, adjusted acestep threads --- embd_res/kcpp_docs.embd | 2 +- otherarch/acestep/backend.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/embd_res/kcpp_docs.embd b/embd_res/kcpp_docs.embd index 942d2b0ea..3c77c11c3 100644 --- a/embd_res/kcpp_docs.embd +++ b/embd_res/kcpp_docs.embd @@ -1529,7 +1529,7 @@ "example": { "input": "hello world, how are you today?", "voice": "kobo", - "speaker_json":"", + "instruction":"", }, "schema": { "properties": { diff --git a/otherarch/acestep/backend.h b/otherarch/acestep/backend.h index 39b797832..2e4026a08 100644 --- a/otherarch/acestep/backend.h +++ b/otherarch/acestep/backend.h @@ -32,6 +32,7 @@ static BackendPair backend_init(const char * label) { bp.cpu_backend = bp.backend; ggml_backend_cpu_set_n_threads(bp.backend, n_threads); } else { + n_threads = (n_threads>4?4:n_threads); bp.cpu_backend = ggml_backend_init_by_type(GGML_BACKEND_DEVICE_TYPE_CPU, NULL); ggml_backend_cpu_set_n_threads(bp.cpu_backend, n_threads); }