From b2a0939787c5e94d4b28c87caa75b687e70481ce Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Mon, 4 Sep 2023 22:48:12 +0300 Subject: [PATCH] Update llama.cpp --- llama.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama.cpp b/llama.cpp index 9f59092fc..537033d7f 100644 --- a/llama.cpp +++ b/llama.cpp @@ -455,7 +455,7 @@ static void ggml_graph_compute_helper(std::vector & buf, ggml_cgraph * # define llama_host_free(data) ggml_metal_host_free(data) #elif GGML_USE_CPU_HBM # define llama_host_malloc(n) hbw_malloc(n) -# define llama_host_free(data) if(data != NULL) hbw_free(data) +# define llama_host_free(data) if (data != NULL) hbw_free(data) #else # define llama_host_malloc(n) malloc(n) # define llama_host_free(data) free(data)