Skip to content

Function reference_dft_md

function reference_dft_md(complex<T> *, const complex<T> *, shape<dynamic_shape>, bool, size_t, size_t) dft

template <typename T>
void reference_dft_md(complex<T>* out, const complex<T>* in, shape<dynamic_shape> size,
                      bool inversion = false, size_t out_delta = 1, size_t in_delta = 1)

Performs Multidimensional Complex DFT using reference implementation (slow, used for testing)

Fully qualified name: kfr::reference_dft_md(complex<T> *, const complex<T> *, shape<dynamic_shape>, bool, size_t, size_t)

Function reference_dft_md

function reference_dft_md(complex<T> *, const T *, shape<dynamic_shape>, bool, size_t, size_t) dft

template <typename T>
void reference_dft_md(complex<T>* out, const T* in, shape<dynamic_shape> shape, bool inversion = false,
                      size_t out_delta = 1, size_t in_delta = 1)

Performs Multidimensional Direct Real DFT using reference implementation (slow, used for testing)

Fully qualified name: kfr::reference_dft_md(complex<T> *, const T *, shape<dynamic_shape>, bool, size_t, size_t)

Function reference_dft_md

function reference_dft_md(T *, const complex<T> *, shape<dynamic_shape>, bool, size_t, size_t) dft

template <typename T>
void reference_dft_md(T* out, const complex<T>* in, shape<dynamic_shape> shape, bool inversion = true,
                      size_t out_delta = 1, size_t in_delta = 1)

Performs Multidimensional Inverse Real DFT using reference implementation (slow, used for testing)

Fully qualified name: kfr::reference_dft_md(T *, const complex<T> *, shape<dynamic_shape>, bool, size_t, size_t)

This file was generated by cxxdox, a C++ documentation generator based on MkDocs Material and libclang.