#array #simd #arrays #generic #numeric #numbers

numeric-array

Wrapper around generic-array that adds efficient numeric trait implementations

19 releases

Uses old Rust 2015

0.5.2 Oct 7, 2020
0.5.0 Apr 11, 2020
0.4.2 Nov 29, 2019
0.4.1 Jul 5, 2019
0.1.6 Sep 22, 2017

#1694 in Data structures

Download history 165/week @ 2023-11-23 199/week @ 2023-11-30 176/week @ 2023-12-07 235/week @ 2023-12-14 178/week @ 2023-12-21 184/week @ 2023-12-28 260/week @ 2024-01-04 191/week @ 2024-01-11 225/week @ 2024-01-18 252/week @ 2024-01-25 164/week @ 2024-02-01 295/week @ 2024-02-08 404/week @ 2024-02-15 322/week @ 2024-02-22 369/week @ 2024-02-29 223/week @ 2024-03-07

1,378 downloads per month
Used in 13 crates (3 directly)

MIT license

53KB
1.5K SLoC

numeric-array

numeric-array is a wrapper around generic-array that adds efficient numeric trait implementations, often times making use of autovectorized SIMD instructions and compile-time evaluations (not const-eval, but LLVM optimizations).

All stable core::ops traits are implemented for NumericArray itself, plus the thin NumericConstant type, which is required to differentiate constant values from NumericArray itself.

Additionally, most of num_traits are implemented, including Num itself. So you can even use a whole array as a generic number.

Example:

extern crate num_traits;
#[macro_use]
extern crate generic_array;
#[macro_use]
extern crate numeric_array;

use num_traits::Float;
use numeric_array::NumericArray;

fn main() {
    let a = narr![f32; 1, 2, 3, 4];
    let b = narr![f32; 5, 6, 7, 8];
    let c = narr![f32; 9, 1, 2, 3];

    // Compiles to a single vfmadd213ps instruction on my machine
    let d = a.mul_add(b, c);

    assert_eq!(d, narr![f32; 14, 13, 23, 35]);
}

When used with RUSTFLAGS = "-C opt-level=3 -C target-cpu=native", then Rust and LLVM are smart enough to autovectorize almost all operations into SIMD instructions, or even just evaluate them at compile time. The above example is actually evaluated at compile time, so if you were to view the assembly it would show the result only. Rust is pretty smart.

Therefore, this is ideal for situations where simple component-wise operations are required for arrays.

Dependencies

~285–580KB
~13K SLoC