fast_ode 1.0.0

Fast Runge-Kutta implementation for solving ordinary differential equations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14

cargo test b_harmonic -- --nocapture
cargo bench tests::b_harmonic -- --exact

cargo rustc --release -- --emit=llvm-ir --emit=asm
cargo rustc --release -- -C target-cpu=native
export RUSTFLAGS='-C target-cpu=native'

export RUSTFLAGS="-C target-cpu=native -C profile-generate=/tmp/pgo-data"
cargo bench tests::b_coupled
llvm-profdata merge -o /tmp/pgo-data/merged.profdata /tmp/pgo-data

export RUSTFLAGS="-C target-cpu=native -C profile-use=/tmp/pgo-data/merged.profdata"
cargo bench tests::b_coupled