parenchyma 0.0.33

A high-performance computing (HPC) framework
1
2
3
4
5
6
use ndarray::{Array, IxDyn};

/// Represents a native array.
///
/// note: named `Memory` for consistency across frameworks.
pub type NativeMemory<T> = Array<T, IxDyn>;