File: README.rst

package info (click to toggle)
mpi4py-fft 2.0.6-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 720 kB
  • sloc: python: 3,053; ansic: 87; makefile: 42; sh: 33
file content (22 lines) | stat: -rw-r--r-- 1,007 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
mpi4py-fft
----------


.. image:: https://readthedocs.org/projects/mpi4py-fft/badge/?version=latest
   :target: https://mpi4py-fft.readthedocs.io/en/latest/?badge=latest
   :alt: Documentation Status


mpi4py-fft is a Python package for computing Fast Fourier Transforms (FFTs). 
Large arrays are distributed and communications are handled under the hood by 
MPI for Python (mpi4py). To distribute large arrays we are using a 
`new and completely generic algorithm <https://arxiv.org/abs/1804.09536>`_
that allows for any index set of a multidimensional array to be distributed. We 
can distribute just one index (a slab decomposition), two index sets (pencil 
decomposition) or even more for higher-dimensional arrays.

In mpi4py-fft there is also included a Python interface to the 
`FFTW <http://www.fftw.org>`_ library. This interface can be used without MPI, 
much like `pyfftw <https://hgomersall.github.io/pyFFTW/>`_, and even for 
real-to-real transforms, like discrete cosine or sine transforms.