From 5b46c4e848f0c75ff0ee5e66800d8c08baeb346b Mon Sep 17 00:00:00 2001 From: Lizonghang <870644199@qq.com> Date: Sat, 28 Dec 2024 10:09:43 +0400 Subject: [PATCH] correct GB to GiB --- common/profiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/profiler.cpp b/common/profiler.cpp index 402fdad8..48b90626 100644 --- a/common/profiler.cpp +++ b/common/profiler.cpp @@ -1581,7 +1581,7 @@ void device_print_props(struct device_info * dev_info_set, int n, struct llama_m } LOG_INF("\n"); - LOG_INF("| Physical Mem Total (GB) "); + LOG_INF("| Physical Mem Total (GiB) "); for (int i = 0; i < n; ++i) { LOG_INF("| %-10.2f ", dev_info_set[i].memory.total_physical); }