1 /* -*- mode: c; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; c-file-style: "stroustrup"; -*-
4 * This file is part of Gromacs Copyright (c) 1991-2008
5 * David van der Spoel, Erik Lindahl, Berk Hess, University of Groningen.
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
12 * To help us fund GROMACS development, we humbly ask that you cite
13 * the research papers on the package. Check out http://www.gromacs.org
16 * Gnomes, ROck Monsters And Chili Sauce
23 #ifndef _domdec_network_h
24 #define _domdec_network_h
40 dddirForward
,dddirBackward
43 /* Move integers in the comm. region one cell along the domain decomposition
44 * in the dimension indexed by ddimind
45 * forward (direction=dddirFoward) or backward (direction=dddirBackward).
48 dd_sendrecv_int(const gmx_domdec_t
*dd
,
49 int ddimind
,int direction
,
53 /* Move reals in the comm. region one cell along the domain decomposition
54 * in the dimension indexed by ddimind
55 * forward (direction=dddirFoward) or backward (direction=dddirBackward).
58 dd_sendrecv_real(const gmx_domdec_t
*dd
,
59 int ddimind
,int direction
,
63 /* Move revc's in the comm. region one cell along the domain decomposition
64 * in dimension indexed by ddimind
65 * forward (direction=dddirFoward) or backward (direction=dddirBackward).
68 dd_sendrecv_rvec(const gmx_domdec_t
*dd
,
69 int ddimind
,int direction
,
74 /* Move revc's in the comm. region one cell along the domain decomposition
75 * in dimension indexed by ddimind
76 * simultaneously in the forward and backward directions.
79 dd_sendrecv2_rvec(const gmx_domdec_t
*dd
,
81 rvec
*buf_s_fw
,int n_s_fw
,
82 rvec
*buf_r_fw
,int n_r_fw
,
83 rvec
*buf_s_bw
,int n_s_bw
,
84 rvec
*buf_r_bw
,int n_r_bw
);
87 /* The functions below perform the same operations as the MPI functions
88 * with the same name appendices, but over the domain decomposition
90 * The DD master node is the master for these operations.
94 dd_bcast(gmx_domdec_t
*dd
,int nbytes
,void *data
);
96 /* Copies src to dest on the master node and then broadcasts */
98 dd_bcastc(gmx_domdec_t
*dd
,int nbytes
,void *src
,void *dest
);
101 dd_scatter(gmx_domdec_t
*dd
,int nbytes
,void *src
,void *dest
);
104 dd_gather(gmx_domdec_t
*dd
,int nbytes
,void *src
,void *dest
);
107 dd_scatterv(gmx_domdec_t
*dd
,
108 int *scounts
,int *disps
,void *sbuf
,
109 int rcount
,void *rbuf
);
112 dd_gatherv(gmx_domdec_t
*dd
,
113 int scount
,void *sbuf
,
114 int *rcounts
,int *disps
,void *rbuf
);
120 #endif /* _domdec_network_h */