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
19 #ifndef _domdec_network_h
20 #define _domdec_network_h
36 dddirForward
,dddirBackward
39 /* Move integers in the comm. region one cell along the domain decomposition
40 * in the dimension indexed by ddimind
41 * forward (direction=dddirFoward) or backward (direction=dddirBackward).
44 dd_sendrecv_int(const gmx_domdec_t
*dd
,
45 int ddimind
,int direction
,
49 /* Move reals in the comm. region one cell along the domain decomposition
50 * in the dimension indexed by ddimind
51 * forward (direction=dddirFoward) or backward (direction=dddirBackward).
54 dd_sendrecv_real(const gmx_domdec_t
*dd
,
55 int ddimind
,int direction
,
59 /* Move revc's in the comm. region one cell along the domain decomposition
60 * in dimension indexed by ddimind
61 * forward (direction=dddirFoward) or backward (direction=dddirBackward).
64 dd_sendrecv_rvec(const gmx_domdec_t
*dd
,
65 int ddimind
,int direction
,
70 /* Move revc's in the comm. region one cell along the domain decomposition
71 * in dimension indexed by ddimind
72 * simultaneously in the forward and backward directions.
75 dd_sendrecv2_rvec(const gmx_domdec_t
*dd
,
77 rvec
*buf_s_fw
,int n_s_fw
,
78 rvec
*buf_r_fw
,int n_r_fw
,
79 rvec
*buf_s_bw
,int n_s_bw
,
80 rvec
*buf_r_bw
,int n_r_bw
);
83 /* The functions below perform the same operations as the MPI functions
84 * with the same name appendices, but over the domain decomposition
86 * The DD master node is the master for these operations.
90 dd_bcast(gmx_domdec_t
*dd
,int nbytes
,void *data
);
92 /* Copies src to dest on the master node and then broadcasts */
94 dd_bcastc(gmx_domdec_t
*dd
,int nbytes
,void *src
,void *dest
);
97 dd_scatter(gmx_domdec_t
*dd
,int nbytes
,void *src
,void *dest
);
100 dd_gather(gmx_domdec_t
*dd
,int nbytes
,void *src
,void *dest
);
102 /* If rcount==0, rbuf is allowed to be NULL */
104 dd_scatterv(gmx_domdec_t
*dd
,
105 int *scounts
,int *disps
,void *sbuf
,
106 int rcount
,void *rbuf
);
108 /* If scount==0, sbuf is allowed to be NULL */
110 dd_gatherv(gmx_domdec_t
*dd
,
111 int scount
,void *sbuf
,
112 int *rcounts
,int *disps
,void *rbuf
);
118 #endif /* _domdec_network_h */