summaryrefslogtreecommitdiff
path: root/llama.cpp
diff options
context:
space:
mode:
authorGeorgi Gerganov <ggerganov@gmail.com>2023-05-19 20:14:51 +0300
committerGeorgi Gerganov <ggerganov@gmail.com>2023-05-19 20:14:51 +0300
commit4b7e245adf63db675c3daab4a9bfddd451ef4097 (patch)
tree95078c19f38caabaea28ab1057a5e333317fb181 /llama.cpp
parent5ea43392731040b454c293123839b90e159cbb99 (diff)
minor : fix compile warnings
Diffstat (limited to 'llama.cpp')
-rw-r--r--llama.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llama.cpp b/llama.cpp
index 1f9d3784..1802d231 100644
--- a/llama.cpp
+++ b/llama.cpp
@@ -941,7 +941,7 @@ static void llama_model_load_internal(
size_t ctx_size;
size_t mmapped_size;
ml->calc_sizes(&ctx_size, &mmapped_size);
- fprintf(stderr, "%s: ggml ctx size = %6.2f KB\n", __func__, ctx_size/1024.0);
+ fprintf(stderr, "%s: ggml ctx size = %6.2f MB\n", __func__, ctx_size/1024.0/1024.0);
// print memory requirements
{