Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

I really want a standards body to standardize a positized version of floating point numbers. Everything about the encoding of posits (i.e. NaR, no -0.0, exponent encoding) is so much nicer. The tapered precision part of posits is IMO the least interesting part.


Add "simple and consistent rounding" to that list!

There's a tentative standard btw: https://posithub.org/docs/posit_standard-2.pdf


the twos complement thing is really elegant (-p == (posit -(int p))) in c notation


relatedly, having the same ordering as signed ints just makes everything so much easier. You can just use your integer radix sort to sort your floats without having to deal with sign and nans first!


So do floats if you don't care about NaN


They do not; if you sort as unsigned ints then negative floats sort above positive ones, and if you sort as signed ints then the negative range is reversed. IEEE floats are sign-magnitude, not twos-complement.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: