Skip to content

Commit

Permalink
feat(f128): expose f128 impl module
Browse files Browse the repository at this point in the history
  • Loading branch information
sarah el kazdadi committed Feb 28, 2024
1 parent dae396f commit 3975dc6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions src/fft128/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
mod f128_impl;
pub mod f128_ops;

/// 128-bit floating point number.
#[allow(non_camel_case_types)]
Expand All @@ -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};
Expand Down

0 comments on commit 3975dc6

Please sign in to comment.