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 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
|
/* -----------------------------------------------------------------
* Programmer(s): Scott D. Cohen, Alan C. Hindmarsh, Radu Serban,
* and Aaron Collier @ LLNL
* -----------------------------------------------------------------
* LLNS Copyright Start
* Copyright (c) 2014, Lawrence Livermore National Security
* This work was performed under the auspices of the U.S. Department
* of Energy by Lawrence Livermore National Laboratory in part under
* Contract W-7405-Eng-48 and in part under Contract DE-AC52-07NA27344.
* Produced at the Lawrence Livermore National Laboratory.
* All rights reserved.
* For details, see the LICENSE file.
* LLNS Copyright End
* -----------------------------------------------------------------
* This is the main header file for the MPI-enabled implementation
* of the NVECTOR module.
*
* Part I contains declarations specific to the parallel
* 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_Parallel 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 sundials_nvector.h.
*
* - The definition of the type realtype can be found in the
* header file sundials_types.h, and it may be changed (at the
* configuration stage) according to the user's needs.
* The sundials_types.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_Parallel(a,x,b,y,y);
*
* (which stores the result of the operation a*x+b*y in y)
* is legal.
* -----------------------------------------------------------------*/
#ifndef _NVECTOR_PARALLEL_H
#define _NVECTOR_PARALLEL_H
#include <stdio.h>
#include <mpi.h>
#include <sundials/sundials_nvector.h>
#include <sundials/sundials_mpi_types.h>
#ifdef __cplusplus /* wrapper to enable C++ usage */
extern "C" {
#endif
/*
* -----------------------------------------------------------------
* PART I: PARALLEL implementation of N_Vector
* -----------------------------------------------------------------
*/
/* parallel implementation of the N_Vector 'content' structure
contains the global and local lengths of the vector, a pointer
to an array of 'realtype components', the MPI communicator,
and a flag indicating ownership of the data */
struct _N_VectorContent_Parallel {
sunindextype local_length; /* local vector length */
sunindextype global_length; /* global vector length */
booleantype own_data; /* ownership of data */
realtype *data; /* local data array */
MPI_Comm comm; /* pointer to MPI communicator */
};
typedef struct _N_VectorContent_Parallel *N_VectorContent_Parallel;
/*
* -----------------------------------------------------------------
* PART II: macros NV_CONTENT_P, NV_DATA_P, NV_OWN_DATA_P,
* NV_LOCLENGTH_P, NV_GLOBLENGTH_P,NV_COMM_P, and NV_Ith_P
* -----------------------------------------------------------------
* In the descriptions below, the following user declarations
* are assumed:
*
* N_Vector v;
* sunindextype v_len, s_len, i;
*
* (1) NV_CONTENT_P
*
* This routines gives access to the contents of the parallel
* vector N_Vector.
*
* The assignment v_cont = NV_CONTENT_P(v) sets v_cont to be
* a pointer to the parallel N_Vector content structure.
*
* (2) NV_DATA_P, NV_OWN_DATA_P, NV_LOCLENGTH_P, NV_GLOBLENGTH_P,
* and NV_COMM_P
*
* These routines give access to the individual parts of
* the content structure of a parallel N_Vector.
*
* The assignment v_data = NV_DATA_P(v) sets v_data to be
* a pointer to the first component of the local data for
* the vector v. The assignment NV_DATA_P(v) = data_v sets
* the component array of v to be data_V by storing the
* pointer data_v.
*
* The assignment v_llen = NV_LOCLENGTH_P(v) sets v_llen to
* be the length of the local part of the vector v. The call
* NV_LOCLENGTH_P(v) = llen_v sets the local length
* of v to be llen_v.
*
* The assignment v_glen = NV_GLOBLENGTH_P(v) sets v_glen to
* be the global length of the vector v. The call
* NV_GLOBLENGTH_P(v) = glen_v sets the global length of v to
* be glen_v.
*
* The assignment v_comm = NV_COMM_P(v) sets v_comm to be the
* MPI communicator of the vector v. The assignment
* NV_COMM_C(v) = comm_v sets the MPI communicator of v to be
* comm_v.
*
* (3) NV_Ith_P
*
* In the following description, the components of the
* local part of an N_Vector are numbered 0..n-1, where n
* is the local length of (the local part of) v.
*
* The assignment r = NV_Ith_P(v,i) sets r to be the value
* of the ith component of the local part of the vector v.
* The assignment NV_Ith_P(v,i) = r sets the value of the
* ith local 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_P(v) and then access v_data[i] within the
* loop than it is to use NV_Ith_P(v,i) within the loop.
* -----------------------------------------------------------------
*/
#define NV_CONTENT_P(v) ( (N_VectorContent_Parallel)(v->content) )
#define NV_LOCLENGTH_P(v) ( NV_CONTENT_P(v)->local_length )
#define NV_GLOBLENGTH_P(v) ( NV_CONTENT_P(v)->global_length )
#define NV_OWN_DATA_P(v) ( NV_CONTENT_P(v)->own_data )
#define NV_DATA_P(v) ( NV_CONTENT_P(v)->data )
#define NV_COMM_P(v) ( NV_CONTENT_P(v)->comm )
#define NV_Ith_P(v,i) ( NV_DATA_P(v)[i] )
/*
* -----------------------------------------------------------------
* PART III: functions exported by nvector_parallel
*
* CONSTRUCTORS:
* N_VNew_Parallel
* N_VNewEmpty_Parallel
* N_VMake_Parallel
* N_VCloneVectorArray_Parallel
* N_VCloneVectorArrayEmpty_Parallel
* DESTRUCTORS:
* N_VDestroy_Parallel
* N_VDestroyVectorArray_Parallel
* OTHER:
* N_VGetLength_Parallel
* N_VGetLocalLength_Parallel
* N_VPrint_Parallel
* N_VPrintFile_Parallel
* -----------------------------------------------------------------
*/
/*
* -----------------------------------------------------------------
* Function : N_VNew_Parallel
* -----------------------------------------------------------------
* This function creates and allocates memory for a parallel vector.
* -----------------------------------------------------------------
*/
SUNDIALS_EXPORT N_Vector N_VNew_Parallel(MPI_Comm comm,
sunindextype local_length,
sunindextype global_length);
/*
* -----------------------------------------------------------------
* Function : N_VNewEmpty_Parallel
* -----------------------------------------------------------------
* This function creates a new parallel N_Vector with an empty
* (NULL) data array.
* -----------------------------------------------------------------
*/
SUNDIALS_EXPORT N_Vector N_VNewEmpty_Parallel(MPI_Comm comm,
sunindextype local_length,
sunindextype global_length);
/*
* -----------------------------------------------------------------
* Function : N_VMake_Parallel
* -----------------------------------------------------------------
* This function creates and allocates memory for a parallel vector
* with a user-supplied data array.
* -----------------------------------------------------------------
*/
SUNDIALS_EXPORT N_Vector N_VMake_Parallel(MPI_Comm comm,
sunindextype local_length,
sunindextype global_length,
realtype *v_data);
/*
* -----------------------------------------------------------------
* Function : N_VCloneVectorArray_Parallel
* -----------------------------------------------------------------
* This function creates an array of 'count' PARALLEL vectors by
* cloning a given vector w.
* -----------------------------------------------------------------
*/
SUNDIALS_EXPORT N_Vector *N_VCloneVectorArray_Parallel(int count, N_Vector w);
/*
* -----------------------------------------------------------------
* Function : N_VCloneVectorArrayEmpty_Parallel
* -----------------------------------------------------------------
* This function creates an array of 'count' PARALLEL vectors each
* with an empty (NULL) data array by cloning w.
* -----------------------------------------------------------------
*/
SUNDIALS_EXPORT N_Vector *N_VCloneVectorArrayEmpty_Parallel(int count, N_Vector w);
/*
* -----------------------------------------------------------------
* Function : N_VDestroyVectorArray_Parallel
* -----------------------------------------------------------------
* This function frees an array of N_Vector created with
* N_VCloneVectorArray_Parallel or N_VCloneVectorArrayEmpty_Parallel.
* -----------------------------------------------------------------
*/
SUNDIALS_EXPORT void N_VDestroyVectorArray_Parallel(N_Vector *vs, int count);
/*
* -----------------------------------------------------------------
* Function : N_VGetLength_Parallel
* -----------------------------------------------------------------
* This function returns number of vector elements (global vector
* length). It returns locally stored integer, and is therefore
* a local call.
* -----------------------------------------------------------------
*/
SUNDIALS_EXPORT sunindextype N_VGetLength_Parallel(N_Vector v);
/*
* -----------------------------------------------------------------
* Function : N_VGetLocalLength_Parallel
* -----------------------------------------------------------------
* This function returns local vector length.
* -----------------------------------------------------------------
*/
SUNDIALS_EXPORT sunindextype N_VGetLocalLength_Parallel(N_Vector v);
/*
* -----------------------------------------------------------------
* Function : N_VPrint_Parallel
* -----------------------------------------------------------------
* This function prints the local content of a parallel vector to
* stdout.
* -----------------------------------------------------------------
*/
SUNDIALS_EXPORT void N_VPrint_Parallel(N_Vector v);
/*
* -----------------------------------------------------------------
* Function : N_VPrintFile_Parallel
* -----------------------------------------------------------------
* This function prints the local content of a parallel vector to
* outfile.
* -----------------------------------------------------------------
*/
SUNDIALS_EXPORT void N_VPrintFile_Parallel(N_Vector v, FILE *outfile);
/*
* -----------------------------------------------------------------
* parallel implementations of the vector operations
* -----------------------------------------------------------------
*/
SUNDIALS_EXPORT N_Vector_ID N_VGetVectorID_Parallel(N_Vector v);
SUNDIALS_EXPORT N_Vector N_VCloneEmpty_Parallel(N_Vector w);
SUNDIALS_EXPORT N_Vector N_VClone_Parallel(N_Vector w);
SUNDIALS_EXPORT void N_VDestroy_Parallel(N_Vector v);
SUNDIALS_EXPORT void N_VSpace_Parallel(N_Vector v, sunindextype *lrw, sunindextype *liw);
SUNDIALS_EXPORT realtype *N_VGetArrayPointer_Parallel(N_Vector v);
SUNDIALS_EXPORT void N_VSetArrayPointer_Parallel(realtype *v_data, N_Vector v);
SUNDIALS_EXPORT void N_VLinearSum_Parallel(realtype a, N_Vector x, realtype b, N_Vector y, N_Vector z);
SUNDIALS_EXPORT void N_VConst_Parallel(realtype c, N_Vector z);
SUNDIALS_EXPORT void N_VProd_Parallel(N_Vector x, N_Vector y, N_Vector z);
SUNDIALS_EXPORT void N_VDiv_Parallel(N_Vector x, N_Vector y, N_Vector z);
SUNDIALS_EXPORT void N_VScale_Parallel(realtype c, N_Vector x, N_Vector z);
SUNDIALS_EXPORT void N_VAbs_Parallel(N_Vector x, N_Vector z);
SUNDIALS_EXPORT void N_VInv_Parallel(N_Vector x, N_Vector z);
SUNDIALS_EXPORT void N_VAddConst_Parallel(N_Vector x, realtype b, N_Vector z);
SUNDIALS_EXPORT realtype N_VDotProd_Parallel(N_Vector x, N_Vector y);
SUNDIALS_EXPORT realtype N_VMaxNorm_Parallel(N_Vector x);
SUNDIALS_EXPORT realtype N_VWrmsNorm_Parallel(N_Vector x, N_Vector w);
SUNDIALS_EXPORT realtype N_VWrmsNormMask_Parallel(N_Vector x, N_Vector w, N_Vector id);
SUNDIALS_EXPORT realtype N_VMin_Parallel(N_Vector x);
SUNDIALS_EXPORT realtype N_VWL2Norm_Parallel(N_Vector x, N_Vector w);
SUNDIALS_EXPORT realtype N_VL1Norm_Parallel(N_Vector x);
SUNDIALS_EXPORT void N_VCompare_Parallel(realtype c, N_Vector x, N_Vector z);
SUNDIALS_EXPORT booleantype N_VInvTest_Parallel(N_Vector x, N_Vector z);
SUNDIALS_EXPORT booleantype N_VConstrMask_Parallel(N_Vector c, N_Vector x, N_Vector m);
SUNDIALS_EXPORT realtype N_VMinQuotient_Parallel(N_Vector num, N_Vector denom);
#ifdef __cplusplus
}
#endif
#endif
|