Re: [eigen] 2D complex Eigen matrices with fftw? |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
Further questions regarding eigen and fftw.
fftw insists on using such code for array allocation:
d->in = (fftw_complex*) fftw_malloc(sizeof(fftw_complex) * d->arraySize);
liekly because of alignment.
since the Eigen wrapper does naturally not use it - are these
requirement for fftw automatically fullfilled by eigen?
Also I could not find any usage of threads.
Is it possible to define the number of threads to plan with?
Matthias