Show HN: Reflex – a GGUF/CUDA inference engine tuned for cold-start latency Lateos AI released Reflex, an open-source GGUF-native Rust and CUDA inference engine that compiles every CUDA kernel ahead-of-time with nvcc at build time to eliminate the multi-second JIT tax on first use. On an RTX A6000, Reflex's system1 subcommand scored three candidates for the prompt "The capital of France is" in 8524.253 ms from process start to result, assigning " Paris" a probability of 0.997350 versus 0.002239 for " London" and 0.000411 for " Berlin". The project targets cold-start workloads such as serverless/FaaS, single-shot CLI calls, batch jobs and edge devices, and its system1 path currently supports dense and MoE Qwen3 only, while generate supports Qwen3, the Qwen3.5 hybrid mixer and DeepSeek-V2/V3 MLA. A high-performance, GGUF-native Rust & CUDA inference engine optimized for cold-start latency and real-time "System 1" agent decision loops — process launch to first token, not sustained server throughput. Every CUDA kernel is compiled ahead-of-time by nvcc at build time and shipped inside the binary — never compiled at runtime via NVRTC — so there's no multi-second JIT tax on first use, the way there is with a runtime-compilation design. That's the whole bet: be the fastest way to turn a cold process into one output token, then get out of the way. Requires the CUDA toolkit nvcc on PATH , or CUDA PATH / CUDA HOME set and an NVIDIA GPU. REFLEX SKIP CUDA=1 cargo build skips kernel compilation for editing/type-checking on a machine without CUDA no subcommand will actually run kernels in that mode . git clone https://github.com/lateos-ai/reflex.git cd reflex cargo build --release Prove the AOT pipeline works end to end on your GPU: cargo run --release --bin reflex -- smoke Run a real forward pass against a GGUF file: cargo run --release --bin reflex -- generate