NFFT  3.4.1
fastsum_matlab.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2002, 2017 Jens Keiner, Stefan Kunis, Daniel Potts
3  *
4  * This program is free software; you can redistribute it and/or modify it under
5  * the terms of the GNU General Public License as published by the Free Software
6  * Foundation; either version 2 of the License, or (at your option) any later
7  * version.
8  *
9  * This program is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
12  * details.
13  *
14  * You should have received a copy of the GNU General Public License along with
15  * this program; if not, write to the Free Software Foundation, Inc., 51
16  * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17  */
18 
25 #include "config.h"
26 
27 #include <stdlib.h>
28 #include <stdio.h>
29 #include <string.h>
30 #include <math.h>
31 #ifdef HAVE_COMPLEX_H
32  #include <complex.h>
33 #endif
34 
35 #include "fastsum.h"
36 #include "kernels.h"
37 #include "infft.h"
38 
45 int main(int argc, char **argv)
46 {
47  int j, k, t;
48  int d;
49  int N;
50  int M;
51  int n;
52  int m;
53  int p;
54  const char *s;
55  C (*kernel)(R, int, const R *);
56  R c;
57  fastsum_plan my_fastsum_plan;
58  C *direct;
59  ticks t0, t1;
60  R time;
61  R error = K(0.0);
62  R eps_I;
63  R eps_B;
64  FILE *fid1, *fid2;
65  R temp;
66 
67  if (argc != 11)
68  {
69  printf("\nfastsum_test d N M n m p kernel c\n\n");
70  printf(" d dimension \n");
71  printf(" N number of source nodes \n");
72  printf(" M number of target nodes \n");
73  printf(" n expansion degree \n");
74  printf(" m cut-off parameter \n");
75  printf(" p degree of smoothness \n");
76  printf(" kernel kernel function (e.g., gaussian)\n");
77  printf(" c kernel parameter \n");
78  printf(" eps_I inner boundary \n");
79  printf(" eps_B outer boundary \n\n");
80  exit(-1);
81  }
82  else
83  {
84  d = atoi(argv[1]);
85  N = atoi(argv[2]);
86  c = K(1.0) / POW((R)(N), K(1.0) / ((R)(d)));
87  M = atoi(argv[3]);
88  n = atoi(argv[4]);
89  m = atoi(argv[5]);
90  p = atoi(argv[6]);
91  s = argv[7];
92  c = (R)(atof(argv[8]));
93  eps_I = (R)(atof(argv[9]));
94  eps_B = (R)(atof(argv[10]));
95  if (strcmp(s, "gaussian") == 0)
96  kernel = gaussian;
97  else if (strcmp(s, "multiquadric") == 0)
98  kernel = multiquadric;
99  else if (strcmp(s, "inverse_multiquadric") == 0)
100  kernel = inverse_multiquadric;
101  else if (strcmp(s, "logarithm") == 0)
102  kernel = logarithm;
103  else if (strcmp(s, "thinplate_spline") == 0)
104  kernel = thinplate_spline;
105  else if (strcmp(s, "one_over_square") == 0)
106  kernel = one_over_square;
107  else if (strcmp(s, "one_over_modulus") == 0)
108  kernel = one_over_modulus;
109  else if (strcmp(s, "one_over_x") == 0)
110  kernel = one_over_x;
111  else if (strcmp(s, "inverse_multiquadric3") == 0)
112  kernel = inverse_multiquadric3;
113  else if (strcmp(s, "sinc_kernel") == 0)
114  kernel = sinc_kernel;
115  else if (strcmp(s, "cosc") == 0)
116  kernel = cosc;
117  else if (strcmp(s, "cot") == 0)
118  kernel = kcot;
119  else if (strcmp(s, "one_over_cube") == 0)
120  kernel = one_over_cube;
121  else if (strcmp(s, "log_sin") == 0)
122  kernel = log_sin;
123  else
124  {
125  s = "multiquadric";
126  kernel = multiquadric;
127  }
128  }
129  printf(
130  "d=%d, N=%d, M=%d, n=%d, m=%d, p=%d, kernel=%s, c=%" __FGS__ ", eps_I=%" __FGS__ ", eps_B=%" __FGS__ " \n",
131  d, N, M, n, m, p, s, c, eps_I, eps_B);
132 
134  fastsum_init_guru(&my_fastsum_plan, d, N, M, kernel, &c, 0, n, m, p, eps_I,
135  eps_B);
136  /*fastsum_init_guru(&my_fastsum_plan, d, N, M, kernel, &c, EXACT_NEARFIELD, n, m, p);*/
137 
139  fid1 = fopen("x.dat", "r");
140  fid2 = fopen("alpha.dat", "r");
141  for (k = 0; k < N; k++)
142  {
143  for (t = 0; t < d; t++)
144  {
145  fscanf(fid1, __FR__, &my_fastsum_plan.x[k * d + t]);
146  }
147  fscanf(fid2, __FR__, &temp);
148  my_fastsum_plan.alpha[k] = temp;
149  fscanf(fid2, __FR__, &temp);
150  my_fastsum_plan.alpha[k] += temp * II;
151  }
152  fclose(fid1);
153  fclose(fid2);
154 
156  fid1 = fopen("y.dat", "r");
157  for (j = 0; j < M; j++)
158  {
159  for (t = 0; t < d; t++)
160  {
161  fscanf(fid1, __FR__, &my_fastsum_plan.y[j * d + t]);
162  }
163  }
164  fclose(fid1);
165 
167  printf("direct computation: ");
168  fflush(NULL);
169  t0 = getticks();
170  fastsum_exact(&my_fastsum_plan);
171  t1 = getticks();
172  time = NFFT(elapsed_seconds)(t1, t0);
173  printf(__FI__ "sec\n", time);
174 
176  direct = (C *) NFFT(malloc)((size_t)(my_fastsum_plan.M_total) * (sizeof(C)));
177  for (j = 0; j < my_fastsum_plan.M_total; j++)
178  direct[j] = my_fastsum_plan.f[j];
179 
181  printf("pre-computation: ");
182  fflush(NULL);
183  t0 = getticks();
184  fastsum_precompute(&my_fastsum_plan);
185  t1 = getticks();
186  time = NFFT(elapsed_seconds)(t1, t0);
187  printf(__FI__ "sec\n", time);
188 
190  printf("fast computation: ");
191  fflush(NULL);
192  t0 = getticks();
193  fastsum_trafo(&my_fastsum_plan);
194  t1 = getticks();
195  time = NFFT(elapsed_seconds)(t1, t0);
196  printf(__FI__ "sec\n", time);
197 
199  error = K(0.0);
200  for (j = 0; j < my_fastsum_plan.M_total; j++)
201  {
202  if (CABS(direct[j] - my_fastsum_plan.f[j]) / CABS(direct[j]) > error)
203  error = CABS(direct[j] - my_fastsum_plan.f[j]) / CABS(direct[j]);
204  }
205  printf("max relative error: " __FE__ "\n", error);
206 
208  fid1 = fopen("f.dat", "w+");
209  fid2 = fopen("f_direct.dat", "w+");
210  if (fid1 == NULL)
211  {
212  printf("Fehler!\n");
213  exit(EXIT_FAILURE);
214  }
215  for (j = 0; j < M; j++)
216  {
217  temp = CREAL(my_fastsum_plan.f[j]);
218  fprintf(fid1, " % .16" __FES__ "", temp);
219  temp = CIMAG(my_fastsum_plan.f[j]);
220  fprintf(fid1, " % .16" __FES__ "\n", temp);
221 
222  temp = CREAL(direct[j]);
223  fprintf(fid2, " % .16" __FES__ "", temp);
224  temp = CIMAG(direct[j]);
225  fprintf(fid2, " % .16" __FES__ "\n", temp);
226  }
227  fclose(fid1);
228  fclose(fid2);
229 
231  fastsum_finalize(&my_fastsum_plan);
232 
233  return EXIT_SUCCESS;
234 }
235 /* \} */
int M_total
number of target knots
Definition: fastsum.h:87
C inverse_multiquadric3(R x, int der, const R *param)
K(x) = 1/sqrt(x^2+c^2)^3.
Definition: kernels.c:261
C one_over_cube(R x, int der, const R *param)
K(x) = 1/x^3.
Definition: kernels.c:374
C gaussian(R x, int der, const R *param)
K(x)=exp(-x^2/c^2)
Definition: kernels.c:38
Header file with predefined kernels for the fast summation algorithm.
C cosc(R x, int der, const R *param)
K(x) = cos(cx)/x.
Definition: kernels.c:314
C one_over_x(R x, int der, const R *param)
K(x) = 1/x.
Definition: kernels.c:233
C thinplate_spline(R x, int der, const R *param)
K(x) = x^2 log |x|.
Definition: kernels.c:149
C sinc_kernel(R x, int der, const R *param)
K(x) = sin(cx)/x.
Definition: kernels.c:287
plan for fast summation algorithm
Definition: fastsum.h:80
Header file for the fast NFFT-based summation algorithm.
C * alpha
source coefficients
Definition: fastsum.h:89
void fastsum_trafo(fastsum_plan *ths)
fast NFFT-based summation
Definition: fastsum.c:1173
void fastsum_precompute(fastsum_plan *ths)
precomputation for fastsum
Definition: fastsum.c:1166
C one_over_square(R x, int der, const R *param)
K(x) = 1/x^2.
Definition: kernels.c:177
C one_over_modulus(R x, int der, const R *param)
K(x) = 1/|x|.
Definition: kernels.c:205
C logarithm(R x, int der, const R *param)
K(x)=log |x|.
Definition: kernels.c:116
void fastsum_init_guru(fastsum_plan *ths, int d, int N_total, int M_total, kernel k, R *param, unsigned flags, int nn, int m, int p, R eps_I, R eps_B)
initialization of fastsum plan
Definition: fastsum.c:981
C * f
target evaluations
Definition: fastsum.h:90
C inverse_multiquadric(R x, int der, const R *param)
K(x)=1/sqrt(x^2+c^2)
Definition: kernels.c:90
R * y
target knots in d-ball with radius 1/4-eps_b/2
Definition: fastsum.h:93
C kcot(R x, int der, const R *param)
K(x) = cot(cx)
Definition: kernels.c:346
C multiquadric(R x, int der, const R *param)
K(x)=sqrt(x^2+c^2)
Definition: kernels.c:64
void fastsum_finalize(fastsum_plan *ths)
finalization of fastsum plan
Definition: fastsum.c:1039
void fastsum_exact(fastsum_plan *ths)
direct computation of sums
Definition: fastsum.c:1047
C log_sin(R x, int der, const R *param)
K(x) = log(|sin(cx)|)
Definition: kernels.c:402
R * x
source knots in d-ball with radius 1/4-eps_b/2
Definition: fastsum.h:92