#neon #simd #dsp #arm #computer-vision #rust

aloe-simd-neon

A Rust crate providing NEON SIMD intrinsic emulation, offering optimized DSP operations and comprehensive arithmetic and bitwise functions for efficient vector processing on ARM architectures. This crate is a translation of the c++ juce module serving the same function.

1 unstable release

Uses new Rust 2024

new 0.1.2 Apr 4, 2025

#16 in #neon


Used in 3 crates (via aloe-simd)

GPL-3.0 license

73KB
1K SLoC

aloe-simd-neon

A Rust crate to facilitate efficient SIMD (Single Instruction, Multiple Data) computations using NEON intrinsics, targeting ARM architectures predominantly. This project emulates NEON operations in Rust, supporting types including both floating-point and integer operations with varying bit-widths.

Features

  • Comprehensive NEON intrinsic emulation including signed and unsigned integers (8-bit, 16-bit, 32-bit, 64-bit) and floating-point (single and double-precision) vectors.
  • Optimized Digital Signal Processing (DSP) operations for high-performance calculations.
  • Element-wise operations such as addition, subtraction, multiplication, and bitwise manipulation.
  • Functions for expanding scalars, vector load and store, lane-specific data manipulation, and complex arithmetic operations.

Usage

To use this crate, add the following to your Cargo.toml:

[dependencies]
aloe-simd-neon = "0.1.0"

Example

use aloe_simd_neon::SimdNeonI32;

let vector_a = SimdNeonI32::expand(5);
let vector_b = SimdNeonI32::expand(10);
let sum = SimdNeonI32::add(vector_a, vector_b);
println!("Sum: {:?}", sum);

For more intricate NEON operations, explore the API providing comprehensive bitwise operations, conditional comparisons, arithmetic operations suitable for high-performance applications in gaming, multimedia processing, and real-time computations.

Documentation

Detailed documentation and use cases can be found in the documentation online.


This README was generated by an AI model. It strives for accuracy and comprehensibility, serving as a practical guide, though may not reflect all real-world scenarios.

This crate is a translation of the JUCE module.

JUCE is a c++ software framework for developing high performance audio applications.

Usage falls under the GPLv3 as well as the JUCE commercial license.

See github.com/juce-framework/JUCE and the JUCE license page for details.

This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project. designed specifically for rust projects.

Dependencies

~13–27MB
~374K SLoC