#cache #optimization #architecture #no-std #cache-optimizations

no-std cuneiform-fields

Field level [no_std] cache optimizations for Rust

3 unstable releases

0.1.1 Feb 3, 2021
0.1.0 Dec 31, 2019
0.0.0 Dec 29, 2019

#455 in Concurrency

Download history 5/week @ 2023-11-27 2/week @ 2023-12-04 17/week @ 2023-12-11 28/week @ 2023-12-18 7/week @ 2023-12-25 3/week @ 2024-01-08 10/week @ 2024-01-22 5/week @ 2024-02-05 40/week @ 2024-02-12 57/week @ 2024-02-19 27/week @ 2024-02-26 17/week @ 2024-03-04 45/week @ 2024-03-11

153 downloads per month
Used in 4 crates (3 directly)

Apache-2.0/MIT

12KB
169 lines

Field level cache optimizations for Rust (no_std)

Build Status Latest Version Rust Documentation

This crate provides cache line size fitting optimizations to fields in structs.

This crate aligns fields with #[repr(align(COHERENCE_LINE_SIZE))] to decrease the time between prefetch signals for data. COHERENCE_LINE_SIZE can be detected or decided based on the architecture by cuneiform itself.

[dependencies]
cuneiform-fields = "0.1"

Examples

Hermetic aligned fields

Align by hermetic cache line size detection mentioned in cuneiform readme:

use cuneiform_fields::prelude::*;

pub struct Hermetic {
    data: HermeticPadding<u8>,
    data_2: u16,
}

In the example above data will be aligned by hermetic alignment but field data_2 isn't going to be alignment optimized.

Architecture aligned fields

Align by cache line size detected by current Rust compiler architecture. If architecture isn't detected in known architectures it will fall back to default alignment:

use cuneiform_fields::prelude::*;

pub struct ArchSpecific {
    data: ArchPadding<u8>,
    data_2: u16,
}

In the example above data will be aligned by architecture alignment but field data_2 isn't going to be alignment optimized.

NOTE: Alignment values are not randomly chosen or incorporated directly. Values are considered and incorporated inside with the mindset of preventing false sharing or creating less warp points in exclusive caching.

For design choices, architecture and board systems and more information. Please visit Cuneiform GitHub.

Dependencies

~1.2–1.7MB
~35K SLoC