rust/library/portable-simd/crates/core_simd/examples
Caleb Zulawski 830b387e17 Merge commit 'e0e9a4517f9fc021283514da387e70a56061bd3e' into sync-portable-simd-2023-11-19 2023-11-26 08:50:06 -05:00
..
README.md Sync portable-simd to 2023 May 10 2023-05-11 12:13:00 -07:00
dot_product.rs Merge commit 'e0e9a4517f9fc021283514da387e70a56061bd3e' into sync-portable-simd-2023-11-19 2023-11-26 08:50:06 -05:00
matrix_inversion.rs Merge commit 'e0e9a4517f9fc021283514da387e70a56061bd3e' into sync-portable-simd-2023-11-19 2023-11-26 08:50:06 -05:00
nbody.rs Merge commit 'e0e9a4517f9fc021283514da387e70a56061bd3e' into sync-portable-simd-2023-11-19 2023-11-26 08:50:06 -05:00
spectral_norm.rs Merge commit 'e0e9a4517f9fc021283514da387e70a56061bd3e' into sync-portable-simd-2023-11-19 2023-11-26 08:50:06 -05:00

README.md

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.