2 unstable releases

0.4.0 Jan 3, 2024
0.2.0 Dec 22, 2023

#984 in Parser implementations

Download history 147/week @ 2023-12-31 349/week @ 2024-01-07 943/week @ 2024-01-14 634/week @ 2024-01-21 714/week @ 2024-01-28 406/week @ 2024-02-04 54/week @ 2024-02-11 406/week @ 2024-02-18 616/week @ 2024-02-25 994/week @ 2024-03-03 1156/week @ 2024-03-10 640/week @ 2024-03-17 1040/week @ 2024-03-24 610/week @ 2024-03-31 187/week @ 2024-04-07

2,499 downloads per month

MIT/Apache

44KB
1K SLoC

vector-expr

Vectorized math expression parser/evaluator.

Why?

Performance. Evaluation of math expressions involving many variables can incur significant overhead from traversing the expression tree or performing variable lookups. We amortize that cost by performing intermediate operations on vectors of input data at a time (with optional data parallelism via the rayon feature).

Example

use vector_expr::*;

fn binding_map(var_name: &str) -> BindingId {
    match var_name {
        "bar" => 0,
        "baz" => 1,
        "foo" => 2,
        _ => unreachable!(),
    }
}
let parsed = Expression::parse("2 * (foo + bar) * baz", &binding_map).unwrap();
let real = parsed.unwrap_real();

let bar = [1.0, 2.0, 3.0];
let baz = [4.0, 5.0, 6.0];
let foo = [7.0, 8.0, 9.0];
let bindings: &[&[f64]] = &[&bar, &baz, &foo];
let mut registers = Registers::new(3);
let output = real.evaluate(bindings, &mut registers);
assert_eq!(&output, &[64.0, 100.0, 144.0]);

License: MIT OR Apache-2.0

Dependencies

~3–4MB
~88K SLoC