From a0323a989df46cacc0c17f5577ec44080b702f28 Mon Sep 17 00:00:00 2001 From: Jan Boon Date: Sat, 7 Feb 2026 05:03:21 +0000 Subject: [PATCH] sampling : comment on state use --- src/llama-sampler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/llama-sampler.cpp b/src/llama-sampler.cpp index 0aa000f319..0d1586508e 100644 --- a/src/llama-sampler.cpp +++ b/src/llama-sampler.cpp @@ -371,7 +371,7 @@ struct blue_noise_rng { seed = hash(s); const int n = (1 << bit_depth) - 1; - states.resize(n); + states.resize(n); // at 16-bit depth, this uses 128KB of state reset(); }