Skip to content

Commit b3132c2

Browse files
committed
Add rough expectations to algebraic operator docs.
Requested by @tgross35 on rust-lang#136457 (comment)
1 parent 61498c5 commit b3132c2

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

library/core/src/primitive_docs.rs

+10-5
Original file line numberDiff line numberDiff line change
@@ -1321,11 +1321,16 @@ mod prim_f16 {}
13211321
/// # Algebraic operators
13221322
///
13231323
/// 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.
13291334
13301335
#[stable(feature = "rust1", since = "1.0.0")]
13311336
mod prim_f32 {}

0 commit comments

Comments
 (0)