From e8d77ab896070e8374e50666c98c44855974b5d6 Mon Sep 17 00:00:00 2001 From: Neo Zhang Jianyu Date: Thu, 14 Mar 2024 20:46:57 +0800 Subject: [PATCH] fix format Co-authored-by: Georgi Gerganov --- llama.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama.cpp b/llama.cpp index 48e717d5b6806..6a58e202b4da8 100644 --- a/llama.cpp +++ b/llama.cpp @@ -12853,7 +12853,7 @@ struct llama_context * llama_new_context_with_model( if (backend == nullptr) { int id_list[GGML_SYCL_MAX_DEVICES]; ggml_sycl_get_gpu_list(id_list, GGML_SYCL_MAX_DEVICES); - LLAMA_LOG_ERROR("%s: failed to initialize SYCL%d (index %d)backend\n", __func__, id_list[i], i); + LLAMA_LOG_ERROR("%s: failed to initialize SYCL%d (index %d) backend\n", __func__, id_list[i], i); llama_free(ctx); return nullptr; }