Codebase list httping / upstream/2.5+git20200730.1.fa72809 test_fftw3.c
upstream/2.5+git20200730.1.fa72809

Tree @upstream/2.5+git20200730.1.fa72809 (Download .tar.gz)

test_fftw3.c @upstream/2.5+git20200730.1.fa72809raw · history · blame

#include <fftw3.h>

int main(int argc, char *argv[])
{
	/* note: it only needs to compile */
	void *dummy = fftw_malloc(4096);
	double *dummyd = (double *)dummy;

	void *plan = fftw_plan_dft_r2c_1d(12345, dummyd, NULL, FFTW_ESTIMATE);

	return 0;
}