tenferro-gpu 0.1.0

CubeCL-backed CUDA and WebGPU provider backends for tenferro tensors.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Internal CubeCL kernels and launch helpers for tenferro.
//!
//! This crate owns GPU kernel definitions but does not own tenferro tensor
//! values, device placement, or backend dispatch.

pub(crate) mod error;
pub(crate) mod reduce;

pub(crate) mod diagonal;
pub(crate) mod elementwise;
mod helpers;
pub(crate) mod indexing;
pub(crate) mod structural;

pub(crate) use error::{CubeclKernelError, Result};