Skip to main content

fionn_stream/gpu/
mod.rs

1// SPDX-License-Identifier: MIT OR Apache-2.0
2//! GPU-accelerated stream processing (placeholder)
3
4/// GPU processing stub
5pub struct GpuProcessor;
6
7impl GpuProcessor {
8    /// Create a new GPU processor
9    #[must_use]
10    pub const fn new() -> Self {
11        Self
12    }
13}
14
15impl Default for GpuProcessor {
16    fn default() -> Self {
17        Self::new()
18    }
19}