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