mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-21 13:44:15 +08:00
Used [rst2myst tool](https://rst-to-myst.readthedocs.io/en/latest/) Fixes #155020. This PR is split into 3 to pass sanity check. Docs comparison (check out the 'new' whenever docs build) 1. draft_export ([old](https://docs.pytorch.org/docs/main/draft_export.html) vs. [new](https://docs-preview.pytorch.org/pytorch/pytorch/155567/draft_export.html)) 2. export.ir_spec ([old](https://docs.pytorch.org/docs/main/export.ir_spec.html) vs. [new](https://docs-preview.pytorch.org/pytorch/pytorch/155567/export.ir_spec.html)) 3. fft ([old](https://docs.pytorch.org/docs/main/fft.html) vs. [new](https://docs-preview.pytorch.org/pytorch/pytorch/155567/fft.html)) Pull Request resolved: https://github.com/pytorch/pytorch/pull/155567 Approved by: https://github.com/svekars
57 lines
658 B
Markdown
57 lines
658 B
Markdown
```{eval-rst}
|
|
.. role:: hidden
|
|
:class: hidden-section
|
|
```
|
|
|
|
# torch.fft
|
|
|
|
Discrete Fourier transforms and related functions.
|
|
|
|
```{eval-rst}
|
|
.. automodule:: torch.fft
|
|
```
|
|
|
|
```{eval-rst}
|
|
.. currentmodule:: torch.fft
|
|
```
|
|
|
|
## Fast Fourier Transforms
|
|
|
|
```{eval-rst}
|
|
.. autosummary::
|
|
:toctree: generated
|
|
:nosignatures:
|
|
|
|
fft
|
|
ifft
|
|
fft2
|
|
ifft2
|
|
fftn
|
|
ifftn
|
|
rfft
|
|
irfft
|
|
rfft2
|
|
irfft2
|
|
rfftn
|
|
irfftn
|
|
hfft
|
|
ihfft
|
|
hfft2
|
|
ihfft2
|
|
hfftn
|
|
ihfftn
|
|
```
|
|
|
|
## Helper Functions
|
|
|
|
```{eval-rst}
|
|
.. autosummary::
|
|
:toctree: generated
|
|
:nosignatures:
|
|
|
|
fftfreq
|
|
rfftfreq
|
|
fftshift
|
|
ifftshift
|
|
```
|