From 81f347c19d8a20e0d5cf81c1c1b76e342e29a462 Mon Sep 17 00:00:00 2001 From: l3utterfly Date: Thu, 3 Aug 2023 17:13:12 +0800 Subject: [PATCH] fixed trailing whitespaces --- llama.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/llama.cpp b/llama.cpp index 4a3cc35be..e88ac9342 100644 --- a/llama.cpp +++ b/llama.cpp @@ -3744,17 +3744,17 @@ size_t llama_get_state_size(const struct llama_context * ctx) { } /** copy state data into either a buffer or file depending on the passed in context - * + * * file context: * llama_file file("/path", "wb"); * llama_data_file_context data_ctx(&file); * llama_copy_state_data(ctx, &data_ctx); - * + * * buffer context: * std::vector buf(max_size, 0); * llama_data_buffer_context data_ctx(&buf.data()); * llama_copy_state_data(ctx, &data_ctx); - * + * */ void llama_copy_state_data(struct llama_context * ctx, llama_data_context * data_ctx) { // copy rng