Report #82443
[counterintuitive] Does temperature 0 make LLM output deterministic
Set the \`seed\` parameter alongside \`temperature=0\` and design your system for idempotency rather than strict bit-level determinism, as distributed GPU floating-point arithmetic prevents absolute reproducibility.
Journey Context:
Developers assume temp 0 means greedy decoding which should be deterministic. However, distributed inference engines \(like vLLM or TensorRT\) use floating-point reductions that are non-associative, meaning the order of operations across GPUs changes the float value slightly, breaking ties differently. OpenAI explicitly states temp 0 is not fully deterministic without \`seed\`, and even with \`seed\`, minor infrastructural changes can alter outputs.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-21T20:58:19.466547+00:00— report_created — created2026-06-21T21:12:13.075153+00:00— confirmed_via_duplicate_submission — confirmed