S2kit  1.1
Toolkit for working with functions defined on the sphere
test_conv_semi_memo.c
Go to the documentation of this file.
1 
44 #include <stdio.h>
45 #include <stdlib.h>
46 #include <string.h>
47 
48 #include <fftw3.h>
49 
50 #include "s2kit/FST_semi_memo.h"
51 #include "s2kit/cospml.h"
52 
53 int main(int argc, char** argv) {
54  if (argc < 5) {
55  fprintf(stdout, "Usage: test_conv_semi_memo signal_file filter_file output_file bw\n");
56  exit(0);
57  }
58 
59  int bw = atoi(argv[4]);
60  int size = 2 * bw;
61 
62  int cutoff = bw; // seminaive all orders
63  int legendreSize = Reduced_Naive_TableSize(bw, cutoff) + Reduced_SpharmonicTableSize(bw, cutoff);
64 
65  double* rsignal = (double*)malloc(sizeof(double) * size * size);
66  double* rfilter = (double*)malloc(sizeof(double) * size * size);
67 
68  // read signal and filter
69  fprintf(stdout, "Reading signal file...\n");
70  FILE* fp = fopen(argv[1], "r");
71  for (int i = 0; i < size * size; ++i)
72  fscanf(fp, "%lf", rsignal + i);
73  fclose(fp);
74 
75  fprintf(stdout, "Reading filter file...\n");
76  fp = fopen(argv[2], "r");
77  for (int i = 0; i < size * size; ++i)
78  fscanf(fp, "%lf", rfilter + i);
79  fclose(fp);
80 
81  // the imaginary parts are zeros,
82  // since the data are strictly real-valued
83  double* isignal = (double*)calloc((size_t)(size * size), sizeof(double));
84  double* ifilter = (double*)calloc((size_t)(size * size), sizeof(double));
85 
86  double* rresult = (double*)malloc(sizeof(double) * size * size);
87  double* iresult = (double*)malloc(sizeof(double) * size * size);
88  double* workspace = (double*)malloc(sizeof(double) * (2 * legendreSize + 12 * bw * bw + 12 * bw));
89 
90  fprintf(stdout, "Calling ConvOn2SphereSemiMemo()\n");
91  ConvOn2SphereSemiMemo(rsignal, isignal, rfilter, ifilter, rresult, iresult, bw, workspace);
92 
93  // convolving real functions results in real output,
94  // so no need to write the imaginary array
95  fprintf(stdout, "Writing output file...\n");
96  fp = fopen(argv[3], "w");
97  for (int i = 0; i < size * size; ++i)
98  fprintf(fp, "%.16f\n", rresult[i]);
99  fclose(fp);
100 
101  free(workspace);
102  free(iresult);
103  free(rresult);
104  free(ifilter);
105  free(rfilter);
106  free(isignal);
107  free(rsignal);
108 
109  return 0;
110 }
main
int main(int argc, char **argv)
Definition: test_conv_semi_memo.c:53
Reduced_Naive_TableSize
int Reduced_Naive_TableSize(const int, const int)
Definition: cospml.c:434
Reduced_SpharmonicTableSize
int Reduced_SpharmonicTableSize(const int, const int)
Definition: cospml.c:107
ConvOn2SphereSemiMemo
void ConvOn2SphereSemiMemo(double *, double *, double *, double *, double *, double *, const int, double *)
Convolves two functions defined on the 2-sphere.
Definition: FST_semi_memo.c:439
cospml.h
FST_semi_memo.h