fearless_simd 0.4.0

Safer and easier SIMD
Documentation
// Copyright 2024 the Fearless_SIMD Authors
// SPDX-License-Identifier: Apache-2.0 OR MIT

//! Access to architecture-specific intrinsics.

#![expect(
    missing_docs,
    clippy::new_without_default,
    reason = "TODO: https://github.com/linebender/fearless_simd/issues/40"
)]

#[cfg(target_arch = "aarch64")]
pub mod aarch64;

pub mod fallback;
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
pub mod x86;

#[cfg(all(target_arch = "wasm32", target_feature = "simd128"))]
pub mod wasm32;