From 6c95dfe829c22e57e86fc589a5070fca21934363 Mon Sep 17 00:00:00 2001 From: slaren Date: Sun, 8 Sep 2024 15:17:28 +0200 Subject: [PATCH] remove outdated comment --- src/llama-sampling.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/llama-sampling.cpp b/src/llama-sampling.cpp index 10261c991..41f48ec28 100644 --- a/src/llama-sampling.cpp +++ b/src/llama-sampling.cpp @@ -396,7 +396,6 @@ static struct llama_sampler * llama_sampler_dist_clone(const struct llama_sample } static void llama_sampler_dist_reset(struct llama_sampler * smpl) { - // is this correct? auto * ctx = (llama_sampler_dist *) smpl->ctx; ctx->rng = std::mt19937(ctx->seed); }