diff options
author | Georgi Gerganov <ggerganov@gmail.com> | 2023-05-19 20:14:51 +0300 |
---|---|---|
committer | Georgi Gerganov <ggerganov@gmail.com> | 2023-05-19 20:14:51 +0300 |
commit | 4b7e245adf63db675c3daab4a9bfddd451ef4097 (patch) | |
tree | 95078c19f38caabaea28ab1057a5e333317fb181 /llama.cpp | |
parent | 5ea43392731040b454c293123839b90e159cbb99 (diff) |
minor : fix compile warnings
Diffstat (limited to 'llama.cpp')
-rw-r--r-- | llama.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 { |