source: sasmodels/sasmodels/kernel_iq.cl @ 0f00d95

core_shell_microgelscostrafo411magnetic_modelrelease_v0.94release_v0.95ticket-1257-vesicle-productticket_1156ticket_1265_superballticket_822_more_unit_tests
Last change on this file since 0f00d95 was 0f00d95, checked in by Paul Kienzle <pkienzle@…>, 8 years ago

tweak spherical correction implementation

  • Property mode set to 100644
File size: 11.1 KB
Line 
1
2/*
3    ##########################################################
4    #                                                        #
5    #   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!   #
6    #   !!                                              !!   #
7    #   !!  KEEP THIS CODE CONSISTENT WITH KERNELPY.PY  !!   #
8    #   !!                                              !!   #
9    #   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!   #
10    #                                                        #
11    ##########################################################
12*/
13
14#ifndef _PAR_BLOCK_ // protected block so we can include this code twice.
15#define _PAR_BLOCK_
16
17typedef struct {
18#if MAX_PD > 0
19    int32_t pd_par[MAX_PD];     // id of the nth polydispersity variable
20    int32_t pd_length[MAX_PD];  // length of the nth polydispersity weight vector
21    int32_t pd_offset[MAX_PD];  // offset of pd weights in the value & weight vector
22    int32_t pd_stride[MAX_PD];  // stride to move to the next index at this level
23#endif // MAX_PD > 0
24    int32_t pd_prod;            // total number of voxels in hypercube
25    int32_t pd_sum;             // total length of the weights vector
26    int32_t num_active;         // number of non-trivial pd loops
27    int32_t theta_par;          // id of spherical correction variable
28} ProblemDetails;
29
30typedef struct {
31    PARAMETER_TABLE
32} ParameterBlock;
33#endif // _PAR_BLOCK_
34
35
36#if defined(MAGNETIC) && NUM_MAGNETIC>0
37
38// Return value restricted between low and high
39static double clip(double value, double low, double high)
40{
41  return (value < low ? low : (value > high ? high : value));
42}
43
44// Compute spin cross sections given in_spin and out_spin
45// To convert spin cross sections to sld b:
46//     uu * (sld - m_sigma_x);
47//     dd * (sld + m_sigma_x);
48//     ud * (m_sigma_y + 1j*m_sigma_z);
49//     du * (m_sigma_y - 1j*m_sigma_z);
50static void set_spins(double in_spin, double out_spin, double spins[4])
51{
52  in_spin = clip(in_spin, 0.0, 1.0);
53  out_spin = clip(out_spin, 0.0, 1.0);
54  spins[0] = sqrt(sqrt((1.0-in_spin) * (1.0-out_spin))); // dd
55  spins[1] = sqrt(sqrt((1.0-in_spin) * out_spin));       // du
56  spins[2] = sqrt(sqrt(in_spin * (1.0-out_spin)));       // ud
57  spins[3] = sqrt(sqrt(in_spin * out_spin));             // uu
58}
59
60static double mag_sld(double qx, double qy, double p,
61                       double mx, double my, double sld)
62{
63    const double perp = qy*mx - qx*my;
64    return sld + perp*p;
65}
66
67#endif // MAGNETIC
68
69kernel
70void KERNEL_NAME(
71    int32_t nq,                 // number of q values
72    const int32_t pd_start,     // where we are in the polydispersity loop
73    const int32_t pd_stop,      // where we are stopping in the polydispersity loop
74    global const ProblemDetails *details,
75    global const double *values,
76    global const double *q, // nq q values, with padding to boundary
77    global double *result,  // nq+1 return values, again with padding
78    const double cutoff     // cutoff in the polydispersity weight product
79    )
80{
81
82  // who we are and what element we are working with
83  const int q_index = get_global_id(0);
84  if (q_index >= nq) return;
85
86  // Storage for the current parameter values.  These will be updated as we
87  // walk the polydispersity cube.  local_values will be aliased to pvec.
88  ParameterBlock local_values;
89  double *pvec = (double *)&local_values;
90
91  // Fill in the initial variables
92  for (int i=0; i < NUM_PARS; i++) {
93    pvec[i] = values[2+i];
94//if (q_index==0) printf("p%d = %g\n",i, pvec[i]);
95  }
96
97#if defined(MAGNETIC) && NUM_MAGNETIC>0
98  // Location of the sld parameters in the parameter pvec.
99  // These parameters are updated with the effective sld due to magnetism.
100  #if NUM_MAGNETIC > 3
101  const int32_t slds[] = { MAGNETIC_PARS };
102  #endif
103
104  // TODO: could precompute these outside of the kernel.
105  // Interpret polarization cross section.
106  //     up_frac_i = values[NUM_PARS+2];
107  //     up_frac_f = values[NUM_PARS+3];
108  //     up_angle = values[NUM_PARS+4];
109  double spins[4];
110  double cos_mspin, sin_mspin;
111  set_spins(values[NUM_PARS+2], values[NUM_PARS+3], spins);
112  SINCOS(-values[NUM_PARS+4]*M_PI_180, sin_mspin, cos_mspin);
113#endif // MAGNETIC
114
115  double pd_norm, this_result;
116  if (pd_start == 0) {
117    pd_norm = this_result = 0.0;
118  } else {
119    pd_norm = result[nq];
120    this_result = result[q_index];
121  }
122//if (q_index==0) printf("start %d %g %g\n", pd_start, pd_norm, this_result);
123
124#if MAX_PD>0
125  global const double *pd_value = values + NUM_VALUES + 2;
126  global const double *pd_weight = pd_value + details->pd_sum;
127#endif
128
129  // Jump into the middle of the polydispersity loop
130#if MAX_PD>4
131  int n4=details->pd_length[4];
132  int i4=(pd_start/details->pd_stride[4])%n4;
133  const int p4=details->pd_par[4];
134  global const double *v4 = pd_value + details->pd_offset[4];
135  global const double *w4 = pd_weight + details->pd_offset[4];
136#endif
137#if MAX_PD>3
138  int n3=details->pd_length[3];
139  int i3=(pd_start/details->pd_stride[3])%n3;
140  const int p3=details->pd_par[3];
141  global const double *v3 = pd_value + details->pd_offset[3];
142  global const double *w3 = pd_weight + details->pd_offset[3];
143//if (q_index==0) printf("offset %d: %d %d\n", 3, details->pd_offset[3], NUM_VALUES);
144#endif
145#if MAX_PD>2
146  int n2=details->pd_length[2];
147  int i2=(pd_start/details->pd_stride[2])%n2;
148  const int p2=details->pd_par[2];
149  global const double *v2 = pd_value + details->pd_offset[2];
150  global const double *w2 = pd_weight + details->pd_offset[2];
151#endif
152#if MAX_PD>1
153  int n1=details->pd_length[1];
154  int i1=(pd_start/details->pd_stride[1])%n1;
155  const int p1=details->pd_par[1];
156  global const double *v1 = pd_value + details->pd_offset[1];
157  global const double *w1 = pd_weight + details->pd_offset[1];
158#endif
159#if MAX_PD>0
160  int n0=details->pd_length[0];
161  int i0=(pd_start/details->pd_stride[0])%n0;
162  const int p0=details->pd_par[0];
163  global const double *v0 = pd_value + details->pd_offset[0];
164  global const double *w0 = pd_weight + details->pd_offset[0];
165#endif
166
167
168#if MAX_PD>0
169  const int theta_par = details->theta_par;
170  const bool fast_theta = (theta_par == p0);
171  const bool slow_theta = (theta_par >= 0 && !fast_theta);
172  double spherical_correction = 1.0;
173#else
174  // Note: if not polydisperse the weights cancel and we don't need the
175  // spherical correction.
176  const double spherical_correction = 1.0;
177#endif
178
179  int step = pd_start;
180
181
182#if MAX_PD>4
183  const double weight5 = 1.0;
184  while (i4 < n4) {
185    pvec[p4] = v4[i4];
186    double weight4 = w4[i4] * weight5;
187//if (q_index == 0) printf("step:%d level %d: p:%d i:%d n:%d value:%g weight:%g\n", step, 4, p4, i4, n4, pvec[p4], weight4);
188#elif MAX_PD>3
189    const double weight4 = 1.0;
190#endif
191#if MAX_PD>3
192  while (i3 < n3) {
193    pvec[p3] = v3[i3];
194    double weight3 = w3[i3] * weight4;
195//if (q_index == 0) printf("step:%d level %d: p:%d i:%d n:%d value:%g weight:%g\n", step, 3, p3, i3, n3, pvec[p3], weight3);
196#elif MAX_PD>2
197    const double weight3 = 1.0;
198#endif
199#if MAX_PD>2
200  while (i2 < n2) {
201    pvec[p2] = v2[i2];
202    double weight2 = w2[i2] * weight3;
203//if (q_index == 0) printf("step:%d level %d: p:%d i:%d n:%d value:%g weight:%g\n", step, 2, p2, i2, n2, pvec[p2], weight2);
204#elif MAX_PD>1
205    const double weight2 = 1.0;
206#endif
207#if MAX_PD>1
208  while (i1 < n1) {
209    pvec[p1] = v1[i1];
210    double weight1 = w1[i1] * weight2;
211//if (q_index == 0) printf("step:%d level %d: p:%d i:%d n:%d value:%g weight:%g\n", step, 1, p1, i1, n1, pvec[p1], weight1);
212#elif MAX_PD>0
213    const double weight1 = 1.0;
214#endif
215#if MAX_PD>0
216  if (slow_theta) { // Theta is not in inner loop
217    spherical_correction = fmax(fabs(cos(M_PI_180*pvec[theta_par])), 1.e-6);
218  }
219  while(i0 < n0) {
220    pvec[p0] = v0[i0];
221    double weight0 = w0[i0] * weight1;
222//if (q_index == 0) printf("step:%d level %d: p:%d i:%d n:%d value:%g weight:%g\n", step, 0, p0, i0, n0, pvec[p0], weight0);
223    if (fast_theta) { // Theta is in inner loop
224      spherical_correction = fmax(fabs(cos(M_PI_180*pvec[p0])), 1.e-6);
225    }
226#else
227    const double weight0 = 1.0;
228#endif
229
230//if (q_index == 0) {printf("step:%d of %d, pars:",step,pd_stop); for (int i=0; i < NUM_PARS; i++) printf("p%d=%g ",i, pvec[i]); printf("\n"); }
231//if (q_index == 0) printf("sphcor: %g\n", spherical_correction);
232
233    #ifdef INVALID
234    if (!INVALID(local_values))
235    #endif
236    {
237      // Accumulate I(q)
238      // Note: weight==0 must always be excluded
239      if (weight0 > cutoff) {
240        // spherical correction is set at a minimum of 1e-6, otherwise there
241        // would be problems looking at models with theta=90.
242        const double weight = weight0 * spherical_correction;
243        pd_norm += weight * CALL_VOLUME(local_values);
244
245#if defined(MAGNETIC) && NUM_MAGNETIC > 0
246        const double qx = q[2*q_index];
247        const double qy = q[2*q_index+1];
248        const double qsq = qx*qx + qy*qy;
249
250        // Constant across orientation, polydispersity for given qx, qy
251        double scattering = 0.0;
252        // TODO: what is the magnetic scattering at q=0
253        if (qsq > 1.e-16) {
254          double p[4];  // spin_i, spin_f
255          p[0] = (qy*cos_mspin + qx*sin_mspin)/qsq;
256          p[3] = -p[0];
257          p[1] = p[2] = (qy*sin_mspin - qx*cos_mspin)/qsq;
258
259          for (int index=0; index<4; index++) {
260            const double xs = spins[index];
261            if (xs > 1.e-8) {
262              const int spin_flip = (index==1) || (index==2);
263              const double pk = p[index];
264              for (int axis=0; axis<=spin_flip; axis++) {
265                #define M1 NUM_PARS+5
266                #define M2 NUM_PARS+8
267                #define M3 NUM_PARS+13
268                #define SLD(_M_offset, _sld_offset) \
269                    pvec[_sld_offset] = xs * (axis \
270                    ? (index==1 ? -values[_M_offset+2] : values[_M_offset+2]) \
271                    : mag_sld(qx, qy, pk, values[_M_offset], values[_M_offset+1], \
272                              (spin_flip ? 0.0 : values[_sld_offset+2])))
273                #if NUM_MAGNETIC==1
274                    SLD(M1, MAGNETIC_PAR1);
275                #elif NUM_MAGNETIC==2
276                    SLD(M1, MAGNETIC_PAR1);
277                    SLD(M2, MAGNETIC_PAR2);
278                #elif NUM_MAGNETIC==3
279                    SLD(M1, MAGNETIC_PAR1);
280                    SLD(M2, MAGNETIC_PAR2);
281                    SLD(M3, MAGNETIC_PAR3);
282                #else
283                for (int sk=0; sk<NUM_MAGNETIC; sk++) {
284                    SLD(M1+3*sk, slds[sk]);
285                }
286                #endif
287                scattering += CALL_IQ(q, q_index, local_values);
288              }
289            }
290          }
291        }
292#else  // !MAGNETIC
293        const double scattering = CALL_IQ(q, q_index, local_values);
294#endif // !MAGNETIC
295        this_result += weight * scattering;
296      }
297    }
298    ++step;
299#if MAX_PD>0
300    if (step >= pd_stop) break;
301    ++i0;
302  }
303  i0 = 0;
304#endif
305#if MAX_PD>1
306    if (step >= pd_stop) break;
307    ++i1;
308  }
309  i1 = 0;
310#endif
311#if MAX_PD>2
312    if (step >= pd_stop) break;
313    ++i2;
314  }
315  i2 = 0;
316#endif
317#if MAX_PD>3
318    if (step >= pd_stop) break;
319    ++i3;
320  }
321  i3 = 0;
322#endif
323#if MAX_PD>4
324    if (step >= pd_stop) break;
325    ++i4;
326  }
327  i4 = 0;
328#endif
329
330//if (q_index==0) printf("res: %g/%g\n", this_result, pd_norm);
331  // Remember the current result and the updated norm.
332  result[q_index] = this_result;
333  if (q_index == 0) result[nq] = pd_norm;
334}
Note: See TracBrowser for help on using the repository browser.