Faster floating point math with Rust's new API
pythonspeed.com
Faster floating point math with Rust's new API
1–2 of 2 posts
Re: Faster floating point math with Rust's new API
#2Signed integer addition is only associative when overflow is defined to wrap around like unsigned arithmetic. This condition is matched here, because only debug builds panic on overflow. However, it's a bit of a gray area that the article completely ignores.