mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-06 12:20:52 +01:00
Summary: Working towards https://docs.google.com/document/d/10yx2-4gs0gTMOimVS403MnoAWkqitS8TUHX73PN8EjE/edit?pli=1# This PR: - Ensure that all the submodules are listed in a rst file (that ensure they are considered by the coverage tool) - Remove some long deprecated code that just error out on import - Remove the allow list altogether to ensure nothing gets added back there Pull Request resolved: https://github.com/pytorch/pytorch/pull/73983 Reviewed By: anjali411 Differential Revision: D34787908 Pulled By: albanD fbshipit-source-id: 163ce61e133b12b2f2e1cbe374f979e3d6858db7 (cherry picked from commit c9edfead7a01dc45bfc24eaf7220d2a84ab1f62e)
49 lines
610 B
ReStructuredText
49 lines
610 B
ReStructuredText
.. role:: hidden
|
|
:class: hidden-section
|
|
|
|
torch.fft
|
|
=========
|
|
|
|
Discrete Fourier transforms and related functions.
|
|
|
|
.. automodule:: torch.fft
|
|
.. currentmodule:: torch.fft
|
|
|
|
Fast Fourier Transforms
|
|
-----------------------
|
|
|
|
.. autosummary::
|
|
:toctree: generated
|
|
:nosignatures:
|
|
|
|
fft
|
|
ifft
|
|
fft2
|
|
ifft2
|
|
fftn
|
|
ifftn
|
|
rfft
|
|
irfft
|
|
rfft2
|
|
irfft2
|
|
rfftn
|
|
irfftn
|
|
hfft
|
|
ihfft
|
|
hfft2
|
|
ihfft2
|
|
hfftn
|
|
ihfftn
|
|
|
|
Helper Functions
|
|
----------------
|
|
|
|
.. autosummary::
|
|
:toctree: generated
|
|
:nosignatures:
|
|
|
|
fftfreq
|
|
rfftfreq
|
|
fftshift
|
|
ifftshift
|