Fast Fourier Transform in Rust

This page summarizes the projects mentioned and recommended in the original post on news.ycombinator.com

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • PhastFT

    A high-performance, "quantum-inspired" Fast Fourier Transform (FFT) library written in pure and safe Rust.

  • Hi,

    One of the authors of PhastFT here. Thank you for your interest.

    We went out of our way to configure FFTW for AVX-512. The Rust bindings don't do it, but the FFTW itself in the benchmark does.

    It's worth noting that with FFTW you have to choose between building it for your CPU and making it non-portable, or targeting the lowest common denominator of CPU features so that it runs everywhere but much slower. Meanwhile PhastFT detects the available CPU features at runtime, and will utilize the fastest CPU features without sacrificing portability.

    Lastly, we are currently working on support for interleaved format [1]. That will be in the next release.

    [1] https://github.com/QuState/PhastFT/pull/27

  • spinoza

    A High Performance Quantum State Simulator implemented in pure Rust

  • For those who are interested, there is a strong connection between FFT and quantum gates. Applying a gate to a target qubit in a quantum system follows the same computing pattern as one stage in FFT. Consequently, any quantum simulator contains an FFT implementation, and an efficient FFT implementation can be ported to a quantum simulator implementation.

    To see how quantum gates work, take a look at Spinoza: https://github.com/QuState/spinoza, a sister project for PhastFT, and Hume, a simpler, but lower performing, Python version: https://github.com/learnqc/code/tree/main/src/hume.

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • code

  • For those who are interested, there is a strong connection between FFT and quantum gates. Applying a gate to a target qubit in a quantum system follows the same computing pattern as one stage in FFT. Consequently, any quantum simulator contains an FFT implementation, and an efficient FFT implementation can be ported to a quantum simulator implementation.

    To see how quantum gates work, take a look at Spinoza: https://github.com/QuState/spinoza, a sister project for PhastFT, and Hume, a simpler, but lower performing, Python version: https://github.com/learnqc/code/tree/main/src/hume.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • 1BRC Merykitty's Magic SWAR: 8 Lines of Code Explained in 3k Words

    4 projects | news.ycombinator.com | 9 Mar 2024
  • Numerical Computing in C++ Discussion

    1 project | /r/cpp | 1 Apr 2023
  • Fastest Quantum Circuit Simulator?

    1 project | /r/QuantumComputing | 18 Aug 2021
  • Pyston v2.2: faster and open source

    10 projects | news.ycombinator.com | 5 May 2021
  • F* – A Proof-Oriented Programming Language

    4 projects | news.ycombinator.com | 16 May 2024