numr 0.5.2

High-performance numerical computing with multi-backend GPU acceleration (CPU/CUDA/WebGPU)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Indexing CUDA kernel launchers
//!
//! Provides launchers for indexing operations: gather, scatter, index_select,
//! masked_select, masked_fill, embedding, and slice_assign.

mod embedding;
mod gather;
mod index_select;
mod masked;
mod scatter;
mod slice_assign;

pub use embedding::*;
pub use gather::*;
pub use index_select::*;
pub use masked::*;
pub use scatter::*;
pub use slice_assign::*;