rust/crates/core_simd/examples
Miguel Raz Guzmán Macedo 4615805ec2 add remainder dot_product and cleanup
cleanup dot_product and README.md
2022-12-03 16:12:00 -08:00
..
dot_product.rs add remainder dot_product and cleanup 2022-12-03 16:12:00 -08:00
matrix_inversion.rs replace horizontal_* with reduce_* 2022-03-11 14:49:06 -08:00
nbody.rs replace horizontal_* with reduce_* 2022-03-11 14:49:06 -08:00
README.md add remainder dot_product and cleanup 2022-12-03 16:12:00 -08:00
spectral_norm.rs replace horizontal_* with reduce_* 2022-03-11 14:49:06 -08:00

stdsimd examples

This crate is a port of example uses of stdsimd, mostly taken from the packed_simd crate.

The examples contain, as in the case of dot_product.rs, multiple ways of solving the problem, in order to show idiomatic uses of SIMD and iteration of performance designs.

Run the tests with the command

cargo run --example dot_product

and verify the code for dot_product.rs on your machine.