From e8b65a285d55823fa48cea88b7ab9225be8d9cfd Mon Sep 17 00:00:00 2001 From: Helios De Rosario Date: Sun, 10 Nov 2024 12:15:10 +0100 Subject: [PATCH] Add RustFFT.jl to implementations.md --- docs/src/implementations.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/src/implementations.md b/docs/src/implementations.md index 8861621..fa41363 100644 --- a/docs/src/implementations.md +++ b/docs/src/implementations.md @@ -8,6 +8,8 @@ The following packages extend the functionality provided by AbstractFFTs: [FFTW](http://www.fftw.org) library. This also used to be part of Base Julia. * [FastTransforms.jl](https://github.com/JuliaApproximation/FastTransforms.jl): Pure-Julia implementation of FFT, with support for arbitrary AbstractFloat types. +* [RustFFT.jl](https://github.com/Taaitaaiger/RustFFT.jl): Julia wrapper to [RustFFT](https://docs.rs/rustfft/latest/rustfft/), a SIMD-accelerated FFT library written in pure Rust, with support for one-dimensional, complex-valued arrays. + ## Defining a new implementation