From 456aedc4615ed5eff33809b2aa1d5f41329e443b Mon Sep 17 00:00:00 2001 From: xaedes Date: Fri, 21 Apr 2023 17:49:52 +0200 Subject: [PATCH] fix comment --- llama.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama.cpp b/llama.cpp index 6bc5199d4..9a773d201 100644 --- a/llama.cpp +++ b/llama.cpp @@ -2318,7 +2318,7 @@ size_t llama_copy_state_data(struct llama_context * ctx, uint8_t * dest) { return written; } -// Copies the state to the specified destination address +// Sets the state reading from the specified source address size_t llama_set_state_data(struct llama_context * ctx, const uint8_t * src) { size_t rng_size; char rng_buf[64*1024];