#simd #masking #performance #numerical #rust

nightly aloe-simd-3p

A Rust crate for SIMD operations over 8-bit integer masks for high-efficiency numerical computations. This crate is a translation of the c++ juce module serving the same function.

1 unstable release

Uses new Rust 2024

new 0.1.1 Apr 4, 2025

#10 in #masking


Used in 5 crates (2 directly)

GPL-3.0 license

36KB
288 lines

aloe-simd-3p

aloe-simd-3p is a Rust crate designed for sophisticated numerical computations leveraging SIMD (Single Instruction, Multiple Data) parallelism. The crate exposes low-level SIMD functionalities encapsulated in types such as m8x16, which is a mask over 16 elements of 8-bit integers.

Features

  • SIMD Masking: Utilize the power of SIMD for masked operations on 8-bit integers, optimizing computational efficiency.
  • Advanced Numerical Computations: Suitable for tasks requiring simultaneous handling of large data sets, best used in performance-critical applications such as scientific computations, data analysis, and real-time simulations.

Installation

Add aloe-simd-3p to your project's Cargo.toml:

[dependencies]
aloe-simd-3p = "0.1.0"

Usage

Begin by importing the crate and leveraging the m8x16 type for data manipulation:

use aloe_simd_3p::m8x16;

fn main() {
    let mask: m8x16 = /* initialize mask */;
    // Use mask in SIMD operations
}

License

This project is licensed under the terms of the GNU General Public License v3.0.

Contribution

Contributions are welcome. Please open issues or pull requests in the GitHub repository.


This README was generated by an AI model and may not be 100% accurate, though it should be quite useful.

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