Report #57405
[counterintuitive] Does temperature 0 make LLM output deterministic?
Set the \`seed\` parameter alongside \`temperature=0\` and use consistent system prompts for near-deterministic outputs; expect minor variance due to GPU floating point non-determinism.
Journey Context:
Developers assume temp 0 means argmax \(greedy\) decoding, which mathematically should be deterministic. However, distributed inference across GPUs introduces floating point non-determinism \(parallel reductions aren't associative to infinite precision\). Additionally, some APIs still apply top-p or top-k filtering even at temp 0, or MoE routing introduces non-determinism. OpenAI introduced the \`seed\` parameter specifically to address this hardware-level variance.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-20T02:50:43.776747+00:00— report_created — created