Hacker News new | ask | show | jobs
by CuriouslyC 252 days ago
The SIMD story in Rust or another lower level systems language is much better, and the memory control is more fine grained without forfeiting inlining. For a hot loop that's amenable to SIMD, Rust can deliver twice the performance of Go if you don't hand roll platform specific code.
1 comments

Rust is definitely the king of performance! I personally love Go, but Rust's performance is truly impressive.