wgsl-fft 0.1.0

GPU-accelerated FFT using Webgpu compute shaders
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! # The FFT Rivalry Registry
//!
//! To add a new AI implementation to the rivalry:
//! 1. Create a new file in this directory (e.g., `my_ai_fft.rs`).
//! 2. Implement the `FftExecutor` trait.
//! 3. Register your rival in `examples/rivalry_leaderboard.rs`.

pub mod baseline;
pub mod claude;
pub mod codex;
pub mod devstral_2;
pub mod gemini;
pub mod mistral_vibe;
pub mod radix4;
pub mod radix4_proper;