From d29c21ecbc1ec17c1a816a4d12820863c5438ea4 Mon Sep 17 00:00:00 2001 From: Kawrakow Date: Tue, 2 Sep 2025 07:04:39 +0200 Subject: [PATCH] Set default value of GGML_SCHED_MAX_COPIES to 1 (#751) Co-authored-by: Iwan Kawrakow --- ggml/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml/CMakeLists.txt b/ggml/CMakeLists.txt index ce90a42f..69b081d6 100644 --- a/ggml/CMakeLists.txt +++ b/ggml/CMakeLists.txt @@ -103,7 +103,7 @@ if (WIN32) endif() # ggml core -set(GGML_SCHED_MAX_COPIES "4" CACHE STRING "ggml: max input copies for pipeline parallelism") +set(GGML_SCHED_MAX_COPIES "1" CACHE STRING "ggml: max input copies for pipeline parallelism") set(GGML_MAX_CONTEXTS "" CACHE STRING "ggml: max model contexts (override only; defaults to 64 in the code)") # 3rd party libs / backends