Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fearless_simd/src/core_arch/fallback.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ impl Fallback {
pub fn new() -> Self {
Self { _private: () }
}
}
}
2 changes: 1 addition & 1 deletion fearless_simd/src/core_arch/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
#[cfg(target_arch = "aarch64")]
pub mod aarch64;

pub mod fallback;
#[cfg(target_arch = "x86_64")]
pub mod x86_64;
pub mod fallback;
12 changes: 6 additions & 6 deletions fearless_simd/src/generated.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@
//!
//! All files in this subdirectory are autogenerated by the `fearless_simd_gen` crate.

mod fallback;
#[cfg(all(feature = "std", target_arch = "aarch64"))]
mod neon;
#[cfg(target_arch = "wasm32")]
mod wasm;
mod fallback;
mod ops;
mod simd_trait;
mod simd_types;
#[cfg(target_arch = "wasm32")]
mod wasm;

pub use fallback::*;
#[cfg(all(feature = "std", target_arch = "aarch64"))]
pub use neon::*;
#[cfg(target_arch = "wasm32")]
pub use wasm::*;
pub use fallback::*;
pub use simd_trait::*;
pub use simd_types::*;
#[cfg(target_arch = "wasm32")]
pub use wasm::*;
Loading