File: nvector_nrnthread.h

package info (click to toggle)
neuron 8.2.6-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 34,768 kB
  • sloc: cpp: 149,571; python: 58,449; ansic: 50,329; sh: 3,510; xml: 213; pascal: 51; makefile: 35; sed: 5
file content (294 lines) | stat: -rw-r--r-- 10,978 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
/*
 * N_Vector_NrnThread derived from N_Vector_Serial SunDials version
 * by replacing every occurrence of nrnthread with nrnthread in the various
 * cases and then modifying the relevant prototypes.
 * We only re-implement the ones that are used by cvodes and ida
 */

/*
 * -----------------------------------------------------------------
 * $Revision: 855 $
 * $Date: 2005-02-09 18:15:46 -0500 (Wed, 09 Feb 2005) $
 * -----------------------------------------------------------------
 * Programmer(s): Scott D. Cohen, Alan C. Hindmarsh, Radu Serban,
 *                and Aaron Collier @ LLNL
 * -----------------------------------------------------------------
 * Copyright (c) 2002, The Regents of the University of California.
 * Produced at the Lawrence Livermore National Laboratory.
 * All rights reserved.
 * For details, see sundials/shared/LICENSE.
 * -----------------------------------------------------------------
 * This is the header file for the nrnthread implementation of the
 * NVECTOR module.
 *
 * Part I contains declarations specific to the nrnthread
 * implementation of the supplied NVECTOR module.
 *
 * Part II defines accessor macros that allow the user to
 * efficiently use the type N_Vector without making explicit
 * references to the underlying data structure.
 *
 * Part III contains the prototype for the constructor N_VNew_NrnThread
 * as well as implementation-specific prototypes for various useful
 * vector operations.
 *
 * Notes:
 *
 *   - The definition of the generic N_Vector structure can be found
 *     in the header file shared/include/nvector.h.
 *
 *   - The definition of the type realtype can be found in the
 *     header file shared/include/sundialstypes.h, and it may be
 *     changed (at the configuration stage) according to the user's
 *     needs. The sundialstypes.h file also contains the definition
 *     for the type booleantype.
 *
 *   - N_Vector arguments to arithmetic vector operations need not
 *     be distinct. For example, the following call:
 *
 *       N_VLinearSum_NrnThread(a,x,b,y,y);
 *
 *     (which stores the result of the operation a*x+b*y in y)
 *     is legal.
 * -----------------------------------------------------------------
 */

#ifndef _NVECTOR_NRNTHREAD_H
#define _NVECTOR_NRNTHREAD_H


#include "nvector.h"
#include "sundialstypes.h"
extern "C" {
extern void N_VOneMask_Serial(N_Vector x);
}

/*
 * -----------------------------------------------------------------
 * PART I: NRNTHREAD implementation of N_Vector
 * -----------------------------------------------------------------
 */

/* nrnthread implementation of the N_Vector 'content' structure
   contains the length of the vector, nthread, and a pointer to
   nthread N_Vector (serial)
*/

struct _N_VectorContent_NrnThread {
    long int length;
    int nt; /* number of threads */
    booleantype own_data;
    N_Vector* data; /* nt of them (N_Vector_Serial) */
};

typedef struct _N_VectorContent_NrnThread* N_VectorContent_NrnThread;

/* Note: documentation below may not be completely transformed from the
   N_Vector_Serial case
*/

/*
 * -----------------------------------------------------------------
 * PART II: macros NV_CONTENT_S, NV_DATA_S, NV_OWN_DATA_S,
 *          NV_LENGTH_S, and NV_Ith_S
 * -----------------------------------------------------------------
 * In the descriptions below, the following user declarations
 * are assumed:
 *
 * N_Vector v;
 * long int i;
 *
 * (1) NV_CONTENT_NT
 *
 *     This routines gives access to the contents of the nrnthread
 *     vector N_Vector.
 *
 *     The assignment v_cont = NV_CONTENT_NT(v) sets v_cont to be
 *     a pointer to the nrnthread N_Vector content structure.
 *
 * (2) NV_SUBVEC_NT and NV_LENGTH_NT
 *
 *     These routines give access to the individual parts of
 *     the content structure of a nrnthread N_Vector.
 *
 *     The assignment v_data = NV_SUBVEC_NT(v, i) sets v_data to be
 *     a pointer to the ith N_Vector of v. The assignment
 *     NV_SUBVEC_NT(v, i) = data_V sets the ith component N_Vector of v to
 *     be data_v by storing the pointer data_v.
 *
 *     The assignment v_llen = NV_SIZE_NT(v,i) sets v_llen to be
 *     the length of the ith component of v. The call NV_LENGTH_NT(v) = len_v sets
 *     the length of v to be len_v.
 *
 * (3) NV_Ith_NT
 *
 *     In the following description, the components of an
 *     N_Vector are numbered 0..n-1, where n is the length of v.
 *
 *     The assignment r = NV_Ith_S(v,i) sets r to be the value of
 *     the ith component of v. The assignment NV_Ith_S(v,i) = r
 *     sets the value of the ith component of v to be r.
 *
 * Note: When looping over the components of an N_Vector v, it is
 * more efficient to first obtain the component array via
 * v_data = NV_DATA_S(v) and then access v_data[i] within the
 * loop than it is to use NV_Ith_S(v,i) within the loop.
 * -----------------------------------------------------------------
 */

#define NV_CONTENT_NT(v) ((N_VectorContent_NrnThread) (v->content))

#define NV_LENGTH_NT(v) (NV_CONTENT_NT(v)->length)

#define NV_NT_NT(v) (NV_CONTENT_NT(v)->nt)

#define NV_OWN_DATA_NT(v) (NV_CONTENT_NT(v)->own_data)

#define NV_DATA_NT(v) (NV_CONTENT_NT(v)->data)

#define NV_SUBVEC_NT(v, i) (NV_CONTENT_NT(v)->data[i])

#define NV_Ith_NT(v, i) (NV_DATA_NT(v)[i]) /* wrong but not needed */

/*
 * -----------------------------------------------------------------
 * PART III: functions exported by nvector_nrnthread
 *
 * CONSTRUCTORS:
 *    N_VNew_NrnThread
 *    N_VNewEmpty_NrnThread
 *    N_VClone_NrnThread
 *    N_VCloneEmpty_NrnThread
 *    N_VMake_NrnThread
 *    N_VNewVectorArray_NrnThread
 *    N_VNewVectorArrayEmpty_NrnThread
 * DESTRUCTORS:
 *    N_VDestroy_NrnThread
 *    N_VDestroyVectorArray_NrnThread
 * -----------------------------------------------------------------
 */

/*
 * -----------------------------------------------------------------
 * Function : N_VNew_NrnThread
 * -----------------------------------------------------------------
 * This function creates and allocates memory for a nrnthread vector.
 * -----------------------------------------------------------------
 */

N_Vector N_VNew_NrnThread(long int vec_length, int nthread, long int* sizes);

/*
 * -----------------------------------------------------------------
 * Function : N_VNewEmpty_NrnThread
 * -----------------------------------------------------------------
 * This function creates a new nrnthread N_Vector with an empty (NULL)
 * data array.
 * -----------------------------------------------------------------
 */

N_Vector N_VNewEmpty_NrnThread(long int vec_length, int nthread, long int* sizes);

/*
 * -----------------------------------------------------------------
 * Function : N_VCloneEmpty_NrnThread
 * -----------------------------------------------------------------
 * This function creates a new nrnthread N_Vector with an empty (NULL)
 * data array.
 * -----------------------------------------------------------------
 */

N_Vector N_VCloneEmpty_NrnThread(N_Vector w);

/*
 * -----------------------------------------------------------------
 * Function : N_VMake_NrnThread
 * -----------------------------------------------------------------
 * This function creates and allocates memory for a nrnthread vector
 * with a user-supplied data array.
 * -----------------------------------------------------------------
 */

/*not implemented*/
N_Vector N_VMake_NrnThread(long int vec_length, realtype* v_data);

/*
 * -----------------------------------------------------------------
 * Function : N_VNewVectorArray_NrnThread
 * -----------------------------------------------------------------
 * This function creates an array of 'count' nrnthread vectors. This
 * array of N_Vectors can be freed using N_VDestroyVectorArray
 * (defined by the generic NVECTOR module).
 * -----------------------------------------------------------------
 */

N_Vector* N_VNewVectorArray_NrnThread(int count, long int vec_length, int nthread, long int* sizes);

/*
 * -----------------------------------------------------------------
 * Function : N_VNewVectorArrayEmpty_NrnThread
 * -----------------------------------------------------------------
 * This function creates an array of 'count' nrnthread vectors each
 * with an empty (NULL) data array.
 * -----------------------------------------------------------------
 */

N_Vector* N_VNewVectorArrayEmpty_NrnThread(int count,
                                           long int vec_length,
                                           int nthread,
                                           long int* sizes);

/*
 * -----------------------------------------------------------------
 * Function : N_VDestroyVectorArray_NrnThread
 * -----------------------------------------------------------------
 * This function frees an array of N_Vector created with
 * N_VNewVectorArray_NrnThread.
 * -----------------------------------------------------------------
 */

void N_VDestroyVectorArray_NrnThread(N_Vector* vs, int count);

/*
 * -----------------------------------------------------------------
 * Function : N_VPrint_NrnThread
 * -----------------------------------------------------------------
 * This function prints the content of a nrnthread vector to stdout.
 * -----------------------------------------------------------------
 */

void N_VPrint_NrnThread(N_Vector v);

/*
 * -----------------------------------------------------------------
 * nrnthread implementations of various useful vector operations
 * -----------------------------------------------------------------
 */

N_Vector N_VClone_NrnThread(N_Vector w);
void N_VDestroy_NrnThread(N_Vector v);
void N_VSpace_NrnThread(N_Vector v, long int* lrw, long int* liw);
realtype* N_VGetArrayPointer_NrnThread(N_Vector v);
void N_VSetArrayPointer_NrnThread(realtype* v_data, N_Vector v);
void N_VLinearSum_NrnThread(realtype a, N_Vector x, realtype b, N_Vector y, N_Vector z);
void N_VConst_NrnThread(realtype c, N_Vector z);
void N_VProd_NrnThread(N_Vector x, N_Vector y, N_Vector z);
void N_VDiv_NrnThread(N_Vector x, N_Vector y, N_Vector z);
void N_VScale_NrnThread(realtype c, N_Vector x, N_Vector z);
void N_VAbs_NrnThread(N_Vector x, N_Vector z);
void N_VInv_NrnThread(N_Vector x, N_Vector z);
void N_VAddConst_NrnThread(N_Vector x, realtype b, N_Vector z);
realtype N_VDotProd_NrnThread(N_Vector x, N_Vector y);
realtype N_VMaxNorm_NrnThread(N_Vector x);
realtype N_VWrmsNorm_NrnThread(N_Vector x, N_Vector w);
realtype N_VWrmsNormMask_NrnThread(N_Vector x, N_Vector w, N_Vector id);
realtype N_VMin_NrnThread(N_Vector x);
realtype N_VWL2Norm_NrnThread(N_Vector x, N_Vector w);
realtype N_VL1Norm_NrnThread(N_Vector x);
void N_VCompare_NrnThread(realtype c, N_Vector x, N_Vector z);
booleantype N_VInvTest_NrnThread(N_Vector x, N_Vector z);
booleantype N_VConstrMask_NrnThread(N_Vector c, N_Vector x, N_Vector m);
realtype N_VMinQuotient_NrnThread(N_Vector num, N_Vector denom);


#endif