Crate scir_gpu

Crate scir_gpu 

Source
Expand description

GPU Foundations: device array abstraction and CPU-backed baseline ops.

Structs§

DeviceArray
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 x using taps (CPU baseline, f32).
fir1d_batched_f64
Causal FIR over each row of x using taps (CPU baseline, f64).
fir1d_batched_f32_auto
Dispatch FIR to CUDA if requested; otherwise use CPU baseline. FIR over each row of x using taps with device dispatch (CUDA when available).