about summary refs log tree commit diff
path: root/src/libstd/sys/unix/stack_overflow.rs
diff options
context:
space:
mode:
authorUlrik Sverdrup <bluss@users.noreply.github.com>2016-03-15 00:01:12 +0100
committerUlrik Sverdrup <bluss@users.noreply.github.com>2016-03-18 17:31:41 +0100
commit2dbac1fb8ed43cbcd160855803d50a51c38b8cee (patch)
treeaf284454253d8c401a31b4ad4b3f0bfb1ffa3f67 /src/libstd/sys/unix/stack_overflow.rs
parent235d77457d80b549dad3ac36d94f235208a1eafb (diff)
downloadrust-2dbac1fb8ed43cbcd160855803d50a51c38b8cee.tar.gz
rust-2dbac1fb8ed43cbcd160855803d50a51c38b8cee.zip
Add intrinsics for float arithmetic with `fast` flag enabled
`fast` a.k.a UnsafeAlgebra is the flag for enabling all "unsafe"
(according to llvm) float optimizations.

See LangRef for more information http://llvm.org/docs/LangRef.html#fast-math-flags

Providing these operations with less precise associativity rules (for
example) is useful to numerical applications.

For example, the summation loop:

    let sum = 0.;
    for element in data {
        sum += *element;
    }

Using the default floating point semantics, this loop expresses the
floats must be added in a sequence, one after another. This constraint
is usually completely unintended, and it means that no autovectorization
is possible.
Diffstat (limited to 'src/libstd/sys/unix/stack_overflow.rs')
0 files changed, 0 insertions, 0 deletions