pounder_test/dsp/benches/cossin.rs

14 lines
460 B
Rust
Raw Normal View History

2020-12-12 02:08:11 +08:00
use core::f32::consts::PI;
2020-12-11 22:19:13 +08:00
use criterion::{black_box, criterion_group, criterion_main, Criterion};
use dsp::trig::cossin;
fn cossin_bench(c: &mut Criterion) {
2020-12-12 02:08:11 +08:00
let zi = -0x7304_2531_i32;
let zf = zi as f32 / i32::MAX as f32 * PI;
c.bench_function("cossin(zi)", |b| b.iter(|| cossin(black_box(zi))));
c.bench_function("zf.sin_cos()", |b| b.iter(|| black_box(zf).sin_cos()));
2020-12-11 22:19:13 +08:00
}
criterion_group!(benches, cossin_bench);
criterion_main!(benches);