27#ifndef fftwTemplates_hpp
28#define fftwTemplates_hpp
85template <
typename realT>
90template <
typename realT>
165template <
typename _inputDataT,
typename _outputDataT>
170template <
typename _inputDataT,
typename _outputDataT>
335template <
typename realT>
342int fftw_import_system_wisdom<float>();
346int fftw_import_system_wisdom<double>();
350int fftw_import_system_wisdom<long double>();
355int fftw_import_system_wisdom<__float128>();
367template <
typename realT>
371int fftw_import_wisdom_from_filename<float>(
const char *
filename );
374int fftw_import_wisdom_from_filename<double>(
const char *
filename );
377int fftw_import_wisdom_from_filename<long double>(
const char *
filename );
381int fftw_import_wisdom_from_filename<__float128>(
const char *
filename );
393template <
typename realT>
397int fftw_export_wisdom_to_filename<float>(
const char *
filename );
400int fftw_export_wisdom_to_filename<double>(
const char *
filename );
403int fftw_export_wisdom_to_filename<long double>(
const char *
filename );
407int fftw_export_wisdom_to_filename<__float128>(
const char *
filename );
430template <
typename realT>
434float *fftw_malloc<float>(
size_t n );
437complexFT *fftw_malloc<complexFT>(
size_t n );
440double *fftw_malloc<double>(
size_t n );
443complexDT *fftw_malloc<complexDT>(
size_t n );
446long double *fftw_malloc<long double>(
size_t n );
449complexLT *fftw_malloc<complexLT>(
size_t n );
453__float128 *fftw_malloc<__float128>(
size_t n );
456complexQT *fftw_malloc<complexQT>(
size_t n );
465template <
typename realT>
469void fftw_free<float>(
float *p );
472void fftw_free<complexFT>(
complexFT *p );
475void fftw_free<double>(
double *p );
478void fftw_free<complexDT>(
complexDT *p );
481void fftw_free<long double>(
long double *p );
484void fftw_free<complexLT>(
complexLT *p );
491void fftw_free<complexQT>(
complexQT *p );
508template <
typename realT>
512void fftw_make_planner_thread_safe<float>();
515void fftw_make_planner_thread_safe<double>();
518void fftw_make_planner_thread_safe<long double>();
522void fftw_make_planner_thread_safe<__float128>();
530template <
typename realT>
534void fftw_plan_with_nthreads<float>(
int nthreads );
537void fftw_plan_with_nthreads<double>(
int nthreads );
540void fftw_plan_with_nthreads<long double>(
int nthreads );
544void fftw_plan_with_nthreads<__float128>(
int nthreads );
562template <
typename inputDataT,
typename outputDataT>
572fftw_plan_dft<float, complexFT>( std::vector<int> n,
float *
in,
complexFT *
out,
int sign,
unsigned flags );
576fftw_plan_dft<complexFT, float>( std::vector<int> n,
complexFT *
in,
float *
out,
int sign,
unsigned flags );
584fftw_plan_dft<double, complexDT>( std::vector<int> n,
double *
in,
complexDT *
out,
int sign,
unsigned flags );
588fftw_plan_dft<complexDT, double>( std::vector<int> n,
complexDT *
in,
double *
out,
int sign,
unsigned flags );
596fftw_plan_dft<long double, complexLT>( std::vector<int> n,
long double *
in,
complexLT *
out,
int sign,
unsigned flags );
600fftw_plan_dft<complexLT, long double>( std::vector<int> n,
complexLT *
in,
long double *
out,
int sign,
unsigned flags );
619template <
typename realT>
623void fftw_cleanup<float>();
626void fftw_cleanup<double>();
629void fftw_cleanup<long double>();
633void fftw_cleanup<__float128>();
639template <
typename realT>
643void fftw_cleanup_threads<float>();
646void fftw_cleanup_threads<double>();
649void fftw_cleanup_threads<long double>();
653void fftw_cleanup_threads<__float128>();
677template <
typename inputDataT,
typename outputDataT>
710template <
typename realT>
realT * fftw_malloc(size_t n)
Call to fftw_malloc, with type cast.
void fftw_free(realT *p)
Call to fftw_free.
void fftw_destroy_plan(typename fftwPlanSpec< realT >::planT plan)
Destroy the given plan.
void fftw_execute_dft(typename fftwTypeSpec< inputDataT, outputDataT >::planT plan, inputDataT *in, outputDataT *out)
Execute the given plan on the given arrays.
void fftw_make_planner_thread_safe()
Wrapper for fftwX_make_planner_thread_safe()
void fftw_cleanup_threads()
Cleanup persistent planner data and threads data.
fftwTypeSpec< inputDataT, outputDataT >::planT fftw_plan_dft(std::vector< int > n, inputDataT *in, outputDataT *out, int sign, unsigned flags)
Wrapper for the fftwX_plan_dft functions.
void fftw_cleanup()
Cleanup persistent planner data.
void fftw_plan_with_nthreads(int nthreads)
Tell the FFTW planner how many threads to use.
std::complex< double > complexDT
The complex double data type.
std::complex< __float128 > complexQT
The complex __float128 data type.
std::complex< long double > complexLT
The complex long double data type.
std::complex< float > complexFT
The complex float data type.
int fftw_import_wisdom_from_filename(const char *filename)
Template wrapper for fftwX_import_wisdom_from_filename(const char *);.
int fftw_export_wisdom_to_filename(const char *filename)
Template wrapper for fftwX_export_wisdom_to_filename(const char *);.
int fftw_import_system_wisdom()
Template wrapper for fftwX_import_system_wisdom();.
constexpr floatT six_fifths()
Return 6/5 in the specified precision.
fftwq_plan planT
Specifies fftwq_plan as planT.
fftw_plan planT
Specifies fftw_plan as planT.
fftwf_plan planT
Specifies fftwf_plan as planT.
fftwl_plan planT
Specifies fftwl_plan as planT.
Specify the type of the plan based on the real type of the data.
fftwX_plan planT
Specializations typedef planT as fftwf_plan, fftw_plan, fftwl_plan, or fftwq_plan.
__float128 realT
The real data type.
double realT
The real data type.
double realT
The real data type.
complexFT inputDataT
The input array data type.
float realT
The real data type.
fftwPlanSpec< float >::planT planT
The plan type.
complexFT complexT
The complex data type.
complexFT outputDataT
The output array data type.
float realT
The real data type.
long double realT
The real data type.
long double realT
The real data type.
__float128 realT
The real data type.
__float128 realT
The real data type.
double realT
The real data type.
float inputDataT
The input array data type.
fftwPlanSpec< float >::planT planT
The plan type.
complexFT outputDataT
The output array data type.
complexFT complexT
The complex data type.
float realT
The real data type.
long double realT
The real data type.
A structure specifying various types based on the FFT input and output data types.
fftwPlanSpec< realT >::planT planT
The plan type.
std::complex< realT > complexT
The complex data type.
_outputDataT outputDataT
The output array data type.
_realT realT
The real data type (_realT is actually defined in specializations).
_inputDataT inputDataT
The input array data type.