1 unstable release
0.1.0 | May 7, 2023 |
---|
#1506 in Hardware support
1MB
139 lines
polynomial-simd
Performance comparison of polynomial evaluation with/without SIMD
How faster is it?
SIMD is ~2x faster than a simple loop:
echo "1 -1 2 -2 3 -3 4 -4 5 -5 6 -6 7 -7 8 -8 9 -9 10 -10
2" | cargo run --release
at: -3378745 (135 ns)
at_simd: -3378745 (65 ns)
How to install?
Just execute the command bellow and you are ready to go:
wget -qO- https://raw.githubusercontent.com/TiagoCavalcante/polynomial/main/scripts/install.sh | bash
Build yourself
Building it yourself is very easy:
git clone https://github.com/TiagoCavalcante/polynomial
cargo run --release