From c7013407192287f43958926cee7a092dba2ba585 Mon Sep 17 00:00:00 2001 From: Lizonghang <870644199@qq.com> Date: Sun, 19 Jan 2025 10:09:27 +0400 Subject: [PATCH] set minimal disk speed to 500Mbps --- common/common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/common.cpp b/common/common.cpp index dcd1bff5..a45210ac 100644 --- a/common/common.cpp +++ b/common/common.cpp @@ -829,7 +829,7 @@ static void assign_device( uint32_t * n_gpu_layers, struct llama_model * model, const struct llama_context_params cparams, - float min_disk_read_speed = 0.1f) { // minimum disk I/O speed: 100 MB/s + float min_disk_read_speed = 0.5f) { // minimum disk I/O speed: 500 MB/s GGML_ASSERT(dev_info_set != nullptr); GGML_ASSERT(n_layer_window != nullptr); GGML_ASSERT(my_rank == 0);