Entropick – Plug quantum/hardware RNGs into LLM token sampling
Swap software PRNG for hardware entropy in vLLM sampling, but niche use case with steep setup cost.
A Replacement for the C++ std. RNG Lib that employs SIMD
SIMD RNG for C++ faster than std::mt19937, but most projects don't need this speed.
C++ systems programmers, high-performance computing, Monte Carlo simulation developers
PCG (Permuted Congruential Generator) · Xoshiro · SFC64
Repository: https://github.com/whisprer/c-simd-rng-lib/
The goal was to solve a practical gap:
Most high-performance SIMD RNG implementations are either:
academic prototypes
single-architecture
non-portable
incomplete
or not packaged for real deployment
This library provides:
• AVX2 / AVX-512 accelerated paths (with graceful fallback) • Deterministic, reproducible streams • Clean API surface • Zero external runtime dependencies • Works across Win / Linux / macOS • Production-ready build setup
In bulk generation scenarios it significantly outperforms std::mt19937 and standard <random> engines, and benchmarks competitively (or faster) than other SIMD-enabled RNG libraries.
A separate benchmarking repository contains:
• Full comparison suite • Competing library benchmarks • Throughput numbers • Architectural breakdowns • Methodology + raw results
Benchmark repo: https://github.com/whisprer/benchmark/
The focus is high-throughput generation for simulations, Monte Carlo, procedural systems, and statistical workloads where large batches matter more than single draws.
Interested in feedback from folks working in HPC, simulation, game engines, or scientific computing.
Swap software PRNG for hardware entropy in vLLM sampling, but niche use case with steep setup cost.
Double-blind randomness via player commit, server secret, time-locked Drand. Technically sound but niche.
Google Voice and Burner already dominate this space with better carrier integrations.
Git version control for contracts when Word still uses Agreement_v4_FINAL.docx.
Beats simd-csv with pclmulqdq trick, but CSV parsing is a solved category.
Fastest open-source SIMD Unicode normalization with SQLite-style single-header distribution.