71 int main(
int argc,
char** argv) {
73 fprintf(stdout,
"Usage: test_s2_semi_memo_fwd sample_file output_file bw "
78 int bw = atoi(argv[3]);
84 double* workspace = (
double*)malloc(
sizeof(
double) * ((8 * (bw * bw)) + (7 * bw)));
85 double* seminaive_naive_tablespace = (
double*)malloc(
89 fprintf(stdout,
"Generating seminaive_naive tables...\n");
92 double* weights = (
double*)malloc(
sizeof(
double) * 4 * bw);
93 double* rdata = (
double*)malloc(
sizeof(
double) * (size * size));
94 double* idata = (
double*)malloc(
sizeof(
double) * (size * size));
97 fftw_plan DCT_plan = fftw_plan_r2r_1d(2 * bw, weights, rdata, FFTW_REDFT10, FFTW_ESTIMATE);
102 fftw_iodim dims[rank];
107 int howmany_rank = 1;
108 fftw_iodim howmany_dims[howmany_rank];
109 howmany_dims[0].n = 2 * bw;
110 howmany_dims[0].is = 2 * bw;
111 howmany_dims[0].os = 1;
113 fftw_plan FFT_plan = fftw_plan_guru_split_dft(rank, dims, howmany_rank, howmany_dims, rdata, idata, workspace,
114 workspace + (4 * bw * bw), FFTW_ESTIMATE);
119 FILE* fp = fopen(argv[1],
"r");
120 for (
int i = 0; i < size * size; ++i) {
121 fscanf(fp,
"%lf", rdata + i);
122 fscanf(fp,
"%lf", idata + i);
126 double* rcoeffs = (
double*)malloc(
sizeof(
double) * (bw * bw));
127 double* icoeffs = (
double*)malloc(
sizeof(
double) * (bw * bw));
131 FSTSemiMemo(rdata, idata, rcoeffs, icoeffs, bw, seminaive_naive_table, workspace, data_format, cutoff, &DCT_plan,
134 fprintf(stdout,
"forward time \t = %.4e\n",
csecond() - time_start);
135 fprintf(stdout,
"about to write out coefficients\n");
140 order = atoi(argv[4]);
142 fp = fopen(argv[2],
"w");
144 for (
int i = 0; i < bw * bw; ++i)
145 fprintf(fp,
"%.15f\n%.15f\n", rcoeffs[i], icoeffs[i]);
147 for (
int l = 0; l < bw; ++l)
148 for (
int m = -l; m < l + 1; ++m) {
150 fprintf(fp,
"l = %d\t m = %d\t %.15f + %.15f I\n", l, m, rcoeffs[index], icoeffs[index]);
154 fprintf(stdout,
"finished writing coefficients\n");
156 fftw_destroy_plan(FFT_plan);
157 fftw_destroy_plan(DCT_plan);
160 free(seminaive_naive_table);
161 free(seminaive_naive_tablespace);