Git Product home page Git Product logo

accurate's People

Contributors

bsteinb avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

pointerbender

accurate's Issues

This crate is super hard to find on crates.io

I searched for Kahan, floating point precision, sum, ... and it did not pop up.

It might be worth it to expend some time doing some crates.io SEO, e.g., expanding the readme with more information, maybe mentioning which algorithms are implemented in this crate, etc.

Algorithm Choice

Hi @bsteinb

thank you for this nice repository!

Could you maybe point me towards a resource on which algorithm to choose? I read the original papers, but of course every paper tries to sell their contribution and thus it is hard to gauge which algorithm is actually a good choice. If you would have any thoughts on this, or resources to point to, I would very much appreciate it.

Thank you
Lukas

Exact sums are not correctly rounded to even

Consider exactly representable f32 numbers 4194304.0 and 4194304.5. Their sum is 8388608.5, which is not exactly representable as an f32, so it needs to be rounded to the nearest even mantissa, which is 8388608. However accurate doesn't do this correctly:

let a: f32 = 4194304.0;
let b: f32 = 4194304.5;
println!("a = {:.1}", a);
println!("b = {:.1}", b);
println!("a + b = {:.1}", a + b);

use accurate::traits::SumAccumulator;
let s1 = accurate::sum::OnlineExactSum::zero().absorb([a, b]).sum();
let s2 = accurate::sum::i_fast_sum_in_place(&mut [a, b]);
println!("OnlineExactSum: {:.1}", s1);
println!("i_fast_sum: {:.1}", s2);

The above prints:

a = 4194304.0
b = 4194304.5
a + b = 8388608.0
OnlineExactSum: 8388609.0
i_fast_sum: 8388609.0

error[E0034]: multiple applicable items in scope

error[E0034]: multiple applicable items in scope
--> /home/parrot/.cargo/registry/src/github.com-1ecc6299db9ec823/accurate-0.3.0/src/sum/ifastsum.rs:78:32
|
78 | sm = sm.max(st.abs());
| ^^^ multiple abs found
|
note: candidate #1 is defined in the trait ieee754::Ieee754
--> /home/parrot/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.6/src/traits.rs:472:5
|
472 | fn abs(self) -> Self;
| ^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait num::Float
--> /home/parrot/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/float.rs:1191:5
|
1191 | fn abs(self) -> Self;
| ^^^^^^^^^^^^^^^^^^^^^
help: disambiguate the associated function for candidate #1
|
78 | sm = sm.max(ieee754::Ieee754::abs(st));
| ^^^^^^^^^^^^^^^^^^^^^^^^^
help: disambiguate the associated function for candidate #2
|
78 | sm = sm.max(num::Float::abs(st));
| ^^^^^^^^^^^^^^^^^^^

error: aborting due to previous error

For more information about this error, try rustc --explain E0034.
error: could not compile accurate.

To learn more, run the command again with --verbose.
warning: build failed, waiting for other jobs to finish...
error: build failed

Ubuntu 20.04
stable-x86_64-unknown-linux-gnu (default)
rustc 1.47.0 (18bf6b4f0 2020-10-07)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.