3 releases (breaking)

0.3.0 Apr 17, 2022
0.2.0 Oct 28, 2021
0.1.0 Sep 28, 2021

#1260 in Data structures

Download history 229/week @ 2024-12-09 227/week @ 2024-12-16 108/week @ 2024-12-23 108/week @ 2024-12-30 208/week @ 2025-01-06 263/week @ 2025-01-13 231/week @ 2025-01-20 96/week @ 2025-01-27 273/week @ 2025-02-03 274/week @ 2025-02-10 189/week @ 2025-02-17 243/week @ 2025-02-24 120/week @ 2025-03-03 267/week @ 2025-03-10 243/week @ 2025-03-17 226/week @ 2025-03-24

875 downloads per month
Used in 6 crates (3 directly)

MIT/Apache

15KB
329 lines

ndcopy

Fast N-dimensional array memcpy.

Speed is achieved by copying slices row-by-row. Rust code is much faster at copying slices than trying to index N-dimensional coordinates for every value index.

Example Code

use ndcopy::ndshape::{ConstShape, ConstShape3u32};
use ndcopy::copy3;

type SrcShape = ConstShape3u32<50, 50, 50>;
type DstShape = ConstShape3u32<25, 25, 25>;
let src = [1u8; SrcShape::USIZE];
let mut dst = [0u8; DstShape::USIZE];

let copy_shape = [20; 3];
let src_min = [1, 2, 3];
let dst_min = [2, 3, 4];
copy3(
    copy_shape,
    &src,
    &SrcShape {},
    src_min,
    &mut dst,
    &DstShape {},
    dst_min,
);

License: MIT OR Apache-2.0

Dependencies

~73KB