21 releases
0.8.1 | Apr 30, 2024 |
---|---|
0.7.8 | Dec 10, 2023 |
0.7.6 | Aug 6, 2023 |
0.7.5 | May 14, 2023 |
0.2.0 | Nov 21, 2021 |
#882 in Math
115KB
2.5K
SLoC
lav
Lane-Associated Vector (LAV): Portable SIMD vector trait as GAT of SIMD lane trait.
NOTE: This crate requires nightly Rust.
Features
- SIMD lane trait
Real
abstracting overf32
andf64
. - SIMD vector trait
SimdReal<Real, N>
abstracting overSimd<f32, N>
andSimd<f64, N>
. - Generic associated type (GAT)
Real::Simd<N>
as part of SIMD lane traitReal
implementing SIMD vector traitSimdReal<Self, N>
for itself as lane type where the GAT is generic over the number of SIMD vector lanesN
. - Supports AoS/SoA/AoSoA via
Real::as_simd
/Real::as_simd_mut
abstracting overas_simd
/as_simd_mut
off32
andf64
slices. - Lanewise approximate equality test wrt to epsilon and ULP SIMD vectors.
ApproxEq
trait complementingPartialEq
.no_std
without loss of functionality by enabling thelibm
feature.
This example
uses SIMD generically over floating-point types while hiding it from the user.
See the release history to keep track of the development.
Documentation Builds
# Build and open documentation inclusive dependencies.
cargo doc --open
# Rebuild this crate's documentation with KaTeX.
cargo tex
# Refresh opened documentation.
With cargo tex
defined in .cargo/config.toml. Note that navigating the
documentation requires web access as KaTeX is embedded via remote CDN.
License
Copyright © 2021-2024 Rouven Spreckels rs@qu1x.dev
Licensed under the terms of the MPL-2.0
.
The MPL allows the integration of MPL-licensed code into proprietary codebases, as long as the MPL-licensed components remain accessible under the terms of the MPL.
Contribution
Unless you explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Covered Software by You shall be licensed as above, without any additional terms or conditions.
Dependencies
~105KB