ruda-core 0.1.0

Shared types, device contracts and utilities for Ruda.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! CPU tensor storage, layouts and strided access shared by host implementations.

pub mod cast;
pub mod layout;
pub mod storage;
pub mod strided_index;

pub use layout::Layout;
pub use storage::HostTensor;

#[cfg(feature = "tensor-host-parallel")]
pub mod parallel;

pub mod dtype;