102 lines
1.8 KiB
Rust
102 lines
1.8 KiB
Rust
#![cfg_attr(not(test), no_std)]
|
|
#![cfg_attr(feature = "nightly", feature(asm, core_intrinsics))]
|
|
|
|
use core::ops::{Add, Mul, Neg};
|
|
|
|
fn abs<T>(x: T) -> T
|
|
where
|
|
T: PartialOrd + Default + Neg<Output = T>,
|
|
{
|
|
if x >= T::default() {
|
|
x
|
|
} else {
|
|
-x
|
|
}
|
|
}
|
|
|
|
// These are implemented here because core::f32 doesn't have them (yet).
|
|
// They are naive and don't handle inf/nan.
|
|
// `compiler-intrinsics`/llvm should have better (robust, universal, and
|
|
// faster) implementations.
|
|
|
|
fn copysign<T>(x: T, y: T) -> T
|
|
where
|
|
T: PartialOrd + Default + Neg<Output = T>,
|
|
{
|
|
if (x >= T::default() && y >= T::default())
|
|
|| (x <= T::default() && y <= T::default())
|
|
{
|
|
x
|
|
} else {
|
|
-x
|
|
}
|
|
}
|
|
|
|
#[cfg(not(feature = "nightly"))]
|
|
fn max<T>(x: T, y: T) -> T
|
|
where
|
|
T: PartialOrd,
|
|
{
|
|
if x > y {
|
|
x
|
|
} else {
|
|
y
|
|
}
|
|
}
|
|
|
|
#[cfg(not(feature = "nightly"))]
|
|
fn min<T>(x: T, y: T) -> T
|
|
where
|
|
T: PartialOrd,
|
|
{
|
|
if x < y {
|
|
x
|
|
} else {
|
|
y
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "nightly")]
|
|
fn max(x: f32, y: f32) -> f32 {
|
|
core::intrinsics::maxnumf32(x, y)
|
|
}
|
|
|
|
#[cfg(feature = "nightly")]
|
|
fn min(x: f32, y: f32) -> f32 {
|
|
core::intrinsics::minnumf32(x, y)
|
|
}
|
|
|
|
// Multiply-accumulate vectors `x` and `a`.
|
|
//
|
|
// A.k.a. dot product.
|
|
// Rust/LLVM optimize this nicely.
|
|
fn macc<T>(y0: T, x: &[T], a: &[T]) -> T
|
|
where
|
|
T: Add<Output = T> + Mul<Output = T> + Copy,
|
|
{
|
|
x.iter()
|
|
.zip(a)
|
|
.map(|(x, a)| *x * *a)
|
|
.fold(y0, |y, xa| y + xa)
|
|
}
|
|
|
|
pub mod accu;
|
|
mod atan2;
|
|
mod complex;
|
|
mod cossin;
|
|
pub mod iir;
|
|
pub mod iir_int;
|
|
pub mod lockin;
|
|
pub mod lowpass;
|
|
pub mod pll;
|
|
pub mod rpll;
|
|
pub mod unwrap;
|
|
|
|
pub use accu::Accu;
|
|
pub use atan2::atan2;
|
|
pub use complex::Complex;
|
|
pub use cossin::cossin;
|
|
|
|
#[cfg(test)]
|
|
pub mod testing;
|