72 int main(
int argc,
char** argv) {
74 fprintf(stdout,
"Usage: test_s2_semi_memo_inv coeffs_file output_file bw\n");
78 int bw = atoi(argv[3]);
84 double* workspace = (
double*)malloc(
sizeof(
double) * ((8 * (bw * bw)) + (10 * bw)));
85 double* seminaive_naive_tablespace = (
double*)malloc(
87 double* trans_seminaive_naive_tablespace = (
double*)malloc(
91 fprintf(stdout,
"Generating seminaive_naive tables...\n");
94 fprintf(stdout,
"Generating trans_seminaive_naive tables...\n");
96 seminaive_naive_table, bw, cutoff, trans_seminaive_naive_tablespace, workspace);
98 double* weights = (
double*)malloc(
sizeof(
double) * 4 * bw);
99 double* rdata = (
double*)malloc(
sizeof(
double) * (size * size));
100 double* idata = (
double*)malloc(
sizeof(
double) * (size * size));
103 fftw_plan inv_DCT_plan = fftw_plan_r2r_1d(2 * bw, weights, rdata, FFTW_REDFT01, FFTW_ESTIMATE);
110 fftw_iodim dims[rank];
115 int howmany_rank = 1;
116 fftw_iodim howmany_dims[howmany_rank];
117 howmany_dims[0].n = 2 * bw;
118 howmany_dims[0].is = 1;
119 howmany_dims[0].os = 2 * bw;
121 fftw_plan inv_FFT_plan = fftw_plan_guru_split_dft(rank, dims, howmany_rank, howmany_dims, rdata, idata, workspace,
122 workspace + (4 * bw * bw), FFTW_ESTIMATE);
126 double* rcoeffs = (
double*)malloc(
sizeof(
double) * (bw * bw));
127 double* icoeffs = (
double*)malloc(
sizeof(
double) * (bw * bw));
130 FILE* fp = fopen(argv[1],
"r");
131 for (
int i = 0; i < bw * bw; ++i) {
132 fscanf(fp,
"%lf", rcoeffs + i);
133 fscanf(fp,
"%lf", icoeffs + i);
139 InvFSTSemiMemo(rcoeffs, icoeffs, rdata, idata, bw, trans_seminaive_naive_table, workspace, data_format, cutoff,
140 &inv_DCT_plan, &inv_FFT_plan);
142 fprintf(stderr,
"inv time \t = %.4e\n",
csecond() - time_start);
143 fprintf(stdout,
"about to write out samples\n");
145 fp = fopen(argv[2],
"w");
146 for (
int i = 0; i < size * size; ++i)
147 fprintf(fp,
"%.15f\n%.15f\n", rdata[i], idata[i]);
150 fprintf(stdout,
"finished writing samples\n");
152 fftw_destroy_plan(inv_FFT_plan);
153 fftw_destroy_plan(inv_DCT_plan);
155 free(trans_seminaive_naive_table);
156 free(seminaive_naive_table);
157 free(trans_seminaive_naive_tablespace);
158 free(seminaive_naive_tablespace);