simba icon indicating copy to clipboard operation
simba copied to clipboard

Set of mathematical traits to facilitate the use of SIMD-based AoSoA (Array of Struct of Array) storage pattern.

Results 32 simba issues
Sort by recently updated
recently updated
newest added

See https://github.com/dimforge/nalgebra/issues/1330. This is a breaking change.

The base assumption is that `min(a, b) == min(b, a)`, and same for `max`. This is not true when values are not comparable (= when `PartialOrd::partial_cmp` would return `None`) because,...

Making this issue to let the maintainers know that the version on github is not matching that of the version on [crates.io](https://crates.io/crates/simba). Hopefully this is just a quick update and...

Fixes #33 Does not have acceleration for trigonometric functions due to https://github.com/rust-lang/portable-simd/issues/6 Follows the `packed_simd` implementation closely, but masks are called `maskx` not `mx` Has a few more things than...

SimdPartialOrd is blanket implemented for _any_ `T: SimdValue + PartialOrd`. I am working on the [`num_dual`](https://lib.rs/num_dual) crate, trying to make its dual number algebra work like a scalar does for...