From 790f702d0ce40380b0beaad6b575c671b8d46926 Mon Sep 17 00:00:00 2001 From: Zonghang Li Date: Wed, 15 Jan 2025 16:55:21 +0400 Subject: [PATCH] report k and W --- common/common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/common.cpp b/common/common.cpp index d60c8220..98791e97 100644 --- a/common/common.cpp +++ b/common/common.cpp @@ -1326,7 +1326,7 @@ static void assign_device( final_solution = best_solution; } - LOG_INF("Global best solution found for k = %d\n", final_k); + LOG_INF("Global best solution found for k = %d, W = %d\n", final_k, n_layer / final_k); for (uint32_t m = 0; m < n_world; ++m) { const char * device_name = dev_info_set[m].device_name; GGML_ASSERT(final_solution[m] == w[m] && final_solution[m + n_world] == n[m]);