From 3207a4e2e8b80fae9a1986ff983f993cfe739d34 Mon Sep 17 00:00:00 2001 From: DandinPower Date: Mon, 6 Oct 2025 10:31:43 +0800 Subject: [PATCH] fix: fix the syntax error --- src/llama.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/llama.cpp b/src/llama.cpp index ef29611d..e332f855 100644 --- a/src/llama.cpp +++ b/src/llama.cpp @@ -18293,7 +18293,7 @@ static void llama_recv_tensors(zmq::socket_t & socket, struct llama_ubatch * uba } std::string start_compute_time = get_iso8601_ms_timestamp(); - decompress(sparse_array, batch_embd) + decompress(sparse_array, batch_embd); std::string end_compute_time = get_iso8601_ms_timestamp(); free_sparse_array(sparse_array);