From eea5033d36bdaa2a6596b2ce31ffe938fdcf7316 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20J=C3=B6rdens?= Date: Fri, 22 Jan 2021 11:38:38 +0100 Subject: [PATCH] dsp bench: fix --- dsp/benches/trig.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsp/benches/trig.rs b/dsp/benches/trig.rs index 19b6cce..df17a65 100644 --- a/dsp/benches/trig.rs +++ b/dsp/benches/trig.rs @@ -1,6 +1,6 @@ use core::f32::consts::PI; use criterion::{black_box, criterion_group, criterion_main, Criterion}; -use dsp::trig::{atan2, cossin}; +use dsp::{atan2, cossin}; fn atan2_bench(c: &mut Criterion) { let xi = (10 << 16) as i32;