Expand description
GPU Foundations: device array abstraction and CPU-backed baseline ops.
Structs§
- Device
Array - A minimal, shaped device array with dtype. Currently CPU-backed.
Enums§
- DType
- Supported data types for device arrays.
- Device
- Execution device selection.
- GpuError
- GPU-related error types.
Functions§
- fir1d_
batched_ f32 - Causal FIR over each row of
xusingtaps(CPU baseline, f32). - fir1d_
batched_ f64 - Causal FIR over each row of
xusingtaps(CPU baseline, f64). - fir1d_
batched_ f32_ auto - Dispatch FIR to CUDA if requested; otherwise use CPU baseline.
FIR over each row of
xusingtapswith device dispatch (CUDA when available).