From 3975dc6262e25c45a41e48619b80d9fabdaf645e Mon Sep 17 00:00:00 2001 From: sarah el kazdadi Date: Wed, 28 Feb 2024 12:46:51 +0100 Subject: [PATCH] feat(f128): expose f128 impl module --- src/fft128/{f128_impl.rs => f128_ops.rs} | 0 src/fft128/mod.rs | 6 +++--- 2 files changed, 3 insertions(+), 3 deletions(-) rename src/fft128/{f128_impl.rs => f128_ops.rs} (100%) diff --git a/src/fft128/f128_impl.rs b/src/fft128/f128_ops.rs similarity index 100% rename from src/fft128/f128_impl.rs rename to src/fft128/f128_ops.rs diff --git a/src/fft128/mod.rs b/src/fft128/mod.rs index b81e5f8..f47d3a3 100644 --- a/src/fft128/mod.rs +++ b/src/fft128/mod.rs @@ -1,4 +1,4 @@ -mod f128_impl; +pub mod f128_ops; /// 128-bit floating point number. #[allow(non_camel_case_types)] @@ -10,13 +10,13 @@ use aligned_vec::{avec, ABox}; use pulp::{as_arrays, as_arrays_mut, cast}; #[cfg(any(target_arch = "x86", target_arch = "x86_64"))] -use crate::fft128::f128_impl::x86::V3F128Ext; +use crate::fft128::f128_ops::x86::V3F128Ext; #[cfg(any(target_arch = "x86", target_arch = "x86_64"))] use pulp::{f64x4, x86::V3}; #[cfg(any(target_arch = "x86", target_arch = "x86_64"))] #[cfg(feature = "nightly")] -use crate::fft128::f128_impl::x86::{f64x16, V4F128Ext}; +use crate::fft128::f128_ops::x86::{f64x16, V4F128Ext}; #[cfg(any(target_arch = "x86", target_arch = "x86_64"))] #[cfg(feature = "nightly")] use pulp::{f64x8, x86::V4};