source: sasmodels/sasmodels/kernel_iq.c @ 3fb3449

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

working kerneldll

  • Property mode set to 100644
File size: 7.9 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 par_offset[NPARS];  // offset of par value blocks in the value & weight vector
25    int32_t par_coord[NPARS];   // ids of the coordination parameters
26    int32_t pd_coord[NPARS];    // polydispersity coordination bitvector
27    int32_t num_active;         // number of non-trivial pd loops
28    int32_t total_pd;           // total number of voxels in hypercube
29    int32_t num_coord;          // number of coordinated parameters
30    int32_t theta_par;          // id of spherical correction variable
31} ProblemDetails;
32
33typedef struct {
34    PARAMETER_TABLE;
35} ParameterBlock;
36#endif
37
38
39kernel
40void KERNEL_NAME(
41    int32_t nq,                 // number of q values
42    const int32_t pd_start,     // where we are in the polydispersity loop
43    const int32_t pd_stop,      // where we are stopping in the polydispersity loop
44    global const ProblemDetails *problem,
45    global const double *weights,
46    global const double *values,
47    global const double *q, // nq q values, with padding to boundary
48    global double *result,  // nq+3 return values, again with padding
49    const double cutoff     // cutoff in the polydispersity weight product
50    )
51{
52  // Storage for the current parameter values.  These will be updated as we
53  // walk the polydispersity cube.
54  local ParameterBlock local_values;  // current parameter values
55  double *pvec = (double *)(&local_values);  // Alias named parameters with a vector
56
57  // Fill in the initial variables
58  #ifdef USE_OPENMP
59  #pragma omp parallel for
60  #endif
61  for (int k=0; k < NPARS; k++) {
62    pvec[k] = values[problem->par_offset[k]];
63  }
64
65  // If it is the first round initialize the result to zero, otherwise
66  // assume that the previous result has been passed back.
67  // Note: doing this even in the monodisperse case in order to handle the
68  // rare case where the model parameters are invalid and zero is returned.
69  // So slightly increased cost for slightly smaller code size.
70  if (pd_start == 0) {
71    #ifdef USE_OPENMP
72    #pragma omp parallel for
73    #endif
74    for (int i=0; i < nq+1; i++) {
75      result[i] = 0.0;
76    }
77  }
78
79  // Monodisperse computation
80  if (problem->num_active == 0) {
81    #ifdef INVALID
82    if (INVALID(local_values)) { return; }
83    #endif
84
85    const double norm = CALL_VOLUME(local_values);
86    #ifdef USE_OPENMP
87    #pragma omp parallel for
88    #endif
89    result[nq] = norm; // Total volume normalization
90    for (int i=0; i < nq; i++) {
91      double scattering = CALL_IQ(q, i, local_values);
92      result[i] = values[0]*scattering/norm + values[1];
93    }
94    return;
95  }
96
97#if MAX_PD > 0
98  //printf("Entering polydispersity from %d to %d\n", pd_start, pd_stop);
99  // Since we are no longer looping over the entire polydispersity hypercube
100  // for each q, we need to track the normalization values between calls.
101  double norm = 0.0;
102
103  // need product of weights at every Iq calc, so keep product of
104  // weights from the outer loops so that weight = partial_weight * fast_weight
105  double partial_weight = NAN; // product of weight w4*w3*w2 but not w1
106  double spherical_correction = 1.0;  // cosine correction for latitude variation
107
108  // Location in the polydispersity hypercube, one index per dimension.
109  local int pd_index[MAX_PD];
110
111  // Location of the coordinated parameters in their own sub-cubes.
112  local int offset[NPARS];
113
114  // Trigger the reset behaviour that happens at the end the fast loop
115  // by setting the initial index >= weight vector length.
116  const int fast_length = problem->pd_length[0];
117  pd_index[0] = fast_length;
118
119  // Loop over the weights then loop over q, accumulating values
120  for (int loop_index=pd_start; loop_index < pd_stop; loop_index++) {
121    // check if indices need to be updated
122    if (pd_index[0] == fast_length) {
123      //printf("should be here with %d active\n", problem->num_active);
124
125      // Compute position in polydispersity hypercube
126      for (int k=0; k < problem->num_active; k++) {
127        pd_index[k] = (loop_index/problem->pd_stride[k])%problem->pd_length[k];
128        //printf("pd_index[%d] = %d\n",k,pd_index[k]);
129      }
130
131      // Compute partial weights
132      partial_weight = 1.0;
133      //printf("partial weight %d: ", loop_index);
134      for (int k=1; k < problem->num_active; k++) {
135        double wi = weights[problem->pd_offset[k] + pd_index[k]];
136        //printf("pd[%d]=par[%d]=%g ", k, problem->pd_par[k], wi);
137        partial_weight *= wi;
138      }
139      //printf("\n");
140
141      // Update parameter offsets in weight vector
142      //printf("slow %d: ", loop_index);
143      for (int k=0; k < problem->num_coord; k++) {
144        int par = problem->par_coord[k];
145        int coord = problem->pd_coord[k];
146        int this_offset = problem->par_offset[par];
147        int block_size = 1;
148        for (int bit=0; coord != 0; bit++) {
149          if (coord&1) {
150              this_offset += block_size * pd_index[bit];
151              block_size *= problem->pd_length[bit];
152          }
153          coord >>= 1;
154        }
155        offset[par] = this_offset;
156        pvec[par] = values[this_offset];
157        //printf("par[%d]=v[%d]=%g \n", k, offset[k], pvec[k]);
158        // if theta is not coordinated with fast index, precompute spherical correction
159        if (par == problem->theta_par && !(problem->par_coord[k]&1)) {
160          spherical_correction = fmax(fabs(cos(M_PI_180*pvec[problem->theta_par])), 1e-6);
161        }
162      }
163      //printf("\n");
164    }
165
166    // Increment fast index
167    const double wi = weights[problem->pd_offset[0] + pd_index[0]++];
168    double weight = partial_weight*wi;
169    //printf("fast %d: ", loop_index);
170    for (int k=0; k < problem->num_coord; k++) {
171      if (problem->pd_coord[k]&1) {
172        const int par = problem->par_coord[k];
173        pvec[par] = values[offset[par]++];
174        //printf("p[%d]=v[%d]=%g ", par, offset[par]-1, pvec[par]);
175        // if theta is coordinated with fast index, compute spherical correction each time
176        if (par == problem->theta_par) {
177          spherical_correction = fmax(fabs(cos(M_PI_180*pvec[problem->theta_par])), 1e-6);
178        }
179      }
180    }
181    //printf("\n");
182
183    #ifdef INVALID
184    if (INVALID(local_values)) continue;
185    #endif
186
187    // Accumulate I(q)
188    // Note: weight==0 must always be excluded
189    if (weight > cutoff) {
190      // spherical correction has some nasty effects when theta is +90 or -90
191      // where it becomes zero.  If the entirety of the correction
192      weight *= spherical_correction;
193      norm += weight * CALL_VOLUME(local_values);
194
195      #ifdef USE_OPENMP
196      #pragma omp parallel for
197      #endif
198      for (int i=0; i < nq; i++) {
199        const double scattering = CALL_IQ(q, i, local_values);
200        result[i] += weight*scattering;
201      }
202    }
203  }
204
205  // Make normalization available for the next round
206  result[nq] += norm;
207
208  // End of the PD loop we can normalize
209  if (pd_stop >= problem->total_pd) {
210    #ifdef USE_OPENMP
211    #pragma omp parallel for
212    #endif
213    for (int i=0; i < nq; i++) {
214      result[i] = values[0]*result[i]/norm + values[1];
215    }
216  }
217#endif // MAX_PD > 0
218}
Note: See TracBrowser for help on using the repository browser.