File tree 1 file changed +10
-5
lines changed
1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -1321,11 +1321,16 @@ mod prim_f16 {}
1321
1321
/// # Algebraic operators
1322
1322
///
1323
1323
/// Algebraic operators of the form `a.algebraic_*(b)` allow the compiler to reassociate individual
1324
- /// floating point operations for better vectorization. Because of the unpredictable nature of
1325
- /// compiler optimizations, the same inputs may produce different results even within a single
1326
- /// program run. **Unsafe code must not rely on any property of the return value for soundness.**
1327
- /// However, implementations will generally do their best to pick a reasonable tradeoff between
1328
- /// performance and accuracy of the result.
1324
+ /// floating point operations for better vectorization. The exact set of optimizations is
1325
+ /// unspecified but typically allows combining operations, rearranging series of operations based
1326
+ /// on mathematical properties, converting between division and reciprocal multiplication, and
1327
+ /// disregarding the sign of zero. This means that the results of elementary operations may have
1328
+ /// undefined precision, but will not invoke input-dependent undefined behavior.
1329
+ ///
1330
+ /// Because of the unpredictable nature of compiler optimizations, the same inputs may produce
1331
+ /// different results even within a single program run. **Unsafe code must not rely on any property
1332
+ /// of the return value for soundness.** However, implementations will generally do their best to
1333
+ /// pick a reasonable tradeoff between performance and accuracy of the result.
1329
1334
1330
1335
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1331
1336
mod prim_f32 { }
You can’t perform that action at this time.
0 commit comments