#simd #simd-performance #vector-graphics #alignment #parallelism #simd-vector #graphics

aloe-simd-core

A high-performance SIMD core library for Rust, enabling efficient vectorized operations with aligned data structures and mask types. 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

#5 in #simd-performance


Used in 3 crates (via aloe-simd)

GPL-3.0 license

37KB
308 lines

Aloe-SIMD-Core

Welcome to the aloe-simd-core crate, a high-performance SIMD library designed for efficient vectorized operations in Rust. This crate provides foundational structures and traits for working with SIMD (Single Instruction, Multiple Data) operations, leveraging Rust's powerful type system and alignment capabilities.

Key Features

  • Aligned Structures: Supports 16-byte alignment for optimized memory access patterns with the Align16 struct.
  • Vector Types: Provides various SIMD vector types including I32FloatSimd4, F32Simd4, I64DoubleSimd2, F64Simd2, and more for both integer and floating-point operations.
  • Mask Types: Implements HasMaskType for various primitives, facilitating operations like blending and masking within vector computations.
  • Logarithmic Functions: Includes utility functions such as log2 for determining the base-2 logarithm of an integer.

Traits

HasMaskType

Defines an associated mask type for each primitive and complex number, crucial for enabling conditional operations in SIMD programming.

PrimitiveType

Associates a primitive type with complex numbers, allowing seamless integration with Rust's native types.

Usage

This crate is perfect for developers seeking to implement numerical computations or graphics programming where performance gains are critical. Integrate it into your projects for a robust, high-speed processing foundation.

Installation

Simply add aloe-simd-core to your Cargo.toml:

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

Notes

Please note that this README.md file was generated by an AI model and may not be 100% accurate. However, it should be a reliable starting point.

Repository

For further details, documentation, and examples, visit the GitHub repository.

License

aloe-simd-core is provided under the GPL-3.0 license, enforcing restrictions on linkable proprietary software.

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