#fft #order #transform #module #standard #powers #plan

no-std concrete-fft

Concrete-FFT is a pure Rust high performance fast Fourier transform library

6 releases (3 breaking)

0.4.1 Feb 28, 2024
0.4.0 Feb 14, 2024
0.3.0 Aug 28, 2023
0.2.1 Mar 24, 2023
0.1.0 Sep 7, 2022

#91 in Math

Download history 1097/week @ 2024-01-11 1207/week @ 2024-01-18 947/week @ 2024-01-25 1132/week @ 2024-02-01 1062/week @ 2024-02-08 1153/week @ 2024-02-15 1272/week @ 2024-02-22 1467/week @ 2024-02-29 1422/week @ 2024-03-07 1239/week @ 2024-03-14 1239/week @ 2024-03-21 1090/week @ 2024-03-28 1511/week @ 2024-04-04 1188/week @ 2024-04-11 1104/week @ 2024-04-18 875/week @ 2024-04-25

4,916 downloads per month
Used in 8 crates (2 directly)

BSD-3-Clause-Clear

600KB
17K SLoC

Concrete-FFT is a pure Rust high performance fast Fourier transform library that processes vectors of sizes that are powers of two. It was made to be used as a backend in Zama's TFHE-rs library.

This library provides two FFT modules:

  • The ordered module FFT applies a forward/inverse FFT that takes its input in standard order, and outputs the result in standard order. For more detail on what the FFT computes, check the ordered module-level documentation.
  • The unordered module FFT applies a forward FFT that takes its input in standard order, and outputs the result in a certain permuted order that may depend on the FFT plan. On the other hand, the inverse FFT takes its input in that same permuted order and outputs its result in standard order. This is useful for cases where the order of the coefficients in the Fourier domain is not important. An example is using the Fourier transform for vector convolution. The only operations that are performed in the Fourier domain are elementwise, and so the order of the coefficients does not affect the results.

Additionally, an optional 128-bit negacyclic FFT module is provided.

Features

  • std (default): This enables runtime arch detection for accelerated SIMD instructions, and an FFT plan that measures the various implementations to choose the fastest one at runtime.
  • fft128: This flag provides access to the 128-bit FFT, which is accessible in the fft128 module.
  • nightly: This enables unstable Rust features to further speed up the FFT, by enabling AVX512F instructions on CPUs that support them. This feature requires a nightly Rust toolchain.
  • serde: This enables serialization and deserialization functions for the unordered plan. These allow for data in the Fourier domain to be serialized from the permuted order to the standard order, and deserialized from the standard order to the permuted order. This is needed since the inverse transform must be used with the same plan that computed/deserialized the forward transform (or more specifically, a plan with the same internal base FFT size).

Example

use concrete_fft::c64;
use concrete_fft::ordered::{Plan, Method};
use dyn_stack::{PodStack, GlobalPodBuffer, ReborrowMut};
use num_complex::ComplexFloat;
use std::time::Duration;

const N: usize = 4;
let plan = Plan::new(4, Method::Measure(Duration::from_millis(10)));
let mut scratch_memory = GlobalPodBuffer::new(plan.fft_scratch().unwrap());
let mut stack = PodStack::new(&mut scratch_memory);

let data = [
    c64::new(1.0, 0.0),
    c64::new(2.0, 0.0),
    c64::new(3.0, 0.0),
    c64::new(4.0, 0.0),
];

let mut transformed_fwd = data;
plan.fwd(&mut transformed_fwd, stack.rb_mut());

let mut transformed_inv = transformed_fwd;
plan.inv(&mut transformed_inv, stack.rb_mut());

for (actual, expected) in transformed_inv.iter().map(|z| z / N as f64).zip(data) {
    assert!((expected - actual).abs() < 1e-9);
}

License

This software is distributed under the BSD-3-Clause-Clear license with an exemption that gives rights to use our patents for research, evaluation and prototyping purposes, as well as for your personal projects.

If you want to use concrete-fft in a commercial product however, you will need to purchase a separate commercial licence.

If you have any questions, please contact us at hello@zama.ai.

Dependencies

~2MB
~48K SLoC