From 2ddaab8fae34b4f01d2f2029eb18f3676e41ab56 Mon Sep 17 00:00:00 2001 From: Matt Huszagh Date: Wed, 16 Dec 2020 16:57:18 -0800 Subject: [PATCH] dsp: fix bench import path --- dsp/benches/cossin.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsp/benches/cossin.rs b/dsp/benches/cossin.rs index 9f88e1b..4e23774 100644 --- a/dsp/benches/cossin.rs +++ b/dsp/benches/cossin.rs @@ -1,6 +1,6 @@ use core::f32::consts::PI; use criterion::{black_box, criterion_group, criterion_main, Criterion}; -use dsp::cossin::cossin; +use dsp::trig::cossin; fn cossin_bench(c: &mut Criterion) { let zi = -0x7304_2531_i32;