File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 5757// Uniform distribution for floating point numbers in the range [min, max)
5858// Guaranteed to draw a single value from the RNG
5959// Note that it's not deterministic in the same sense as the others, as it
60- // relies on std::fma which may have different implementations on
61- // different hardware platforms .
62- // It is "slightly " deterministic in that it will produce the same output
63- // sequence when run on the same type of FPU and floating point mode .
60+ // relies on floating point arithmetic which may have produce different
61+ // results depending on compiler options .
62+ // It is "almost " deterministic in that it will produce the same output
63+ // sequence when run without -ffast-math or similar optimizations .
6464//
6565//
6666// You can find unit tests in the official repo:
You can’t perform that action at this time.
0 commit comments