From cb233584cceed3c2ad481522153e06eaa56ca794 Mon Sep 17 00:00:00 2001 From: kalomaze <66376113+kalomaze@users.noreply.github.com> Date: Sat, 28 Oct 2023 23:40:23 -0500 Subject: [PATCH] minor whitespace fix --- llama.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama.cpp b/llama.cpp index 9b0a9b5b2..07ec721e2 100644 --- a/llama.cpp +++ b/llama.cpp @@ -7332,7 +7332,7 @@ void llama_sample_top_p(struct llama_context * ctx, llama_token_data_array * can if (p >= 1.0f) { return; } - + llama_sample_softmax(ctx, candidates); const int64_t t_start_sample_us = ggml_time_us();