Merge release-4-6 into release-5-0
[alexxy/gromacs.git] / src / gromacs / mdlib / pme.c
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5  * Copyright (c) 2001-2004, The GROMACS development team.
6  * Copyright (c) 2013,2014, by the GROMACS development team, led by
7  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
8  * and including many others, as listed in the AUTHORS file in the
9  * top-level source directory and at http://www.gromacs.org.
10  *
11  * GROMACS is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Lesser General Public License
13  * as published by the Free Software Foundation; either version 2.1
14  * of the License, or (at your option) any later version.
15  *
16  * GROMACS is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * Lesser General Public License for more details.
20  *
21  * You should have received a copy of the GNU Lesser General Public
22  * License along with GROMACS; if not, see
23  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
24  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
25  *
26  * If you want to redistribute modifications to GROMACS, please
27  * consider that scientific software is very special. Version
28  * control is crucial - bugs must be traceable. We will be happy to
29  * consider code for inclusion in the official distribution, but
30  * derived work must not be called official GROMACS. Details are found
31  * in the README & COPYING files - if they are missing, get the
32  * official version at http://www.gromacs.org.
33  *
34  * To help us fund GROMACS development, we humbly ask that you cite
35  * the research papers on the package. Check out http://www.gromacs.org.
36  */
37 /* IMPORTANT FOR DEVELOPERS:
38  *
39  * Triclinic pme stuff isn't entirely trivial, and we've experienced
40  * some bugs during development (many of them due to me). To avoid
41  * this in the future, please check the following things if you make
42  * changes in this file:
43  *
44  * 1. You should obtain identical (at least to the PME precision)
45  *    energies, forces, and virial for
46  *    a rectangular box and a triclinic one where the z (or y) axis is
47  *    tilted a whole box side. For instance you could use these boxes:
48  *
49  *    rectangular       triclinic
50  *     2  0  0           2  0  0
51  *     0  2  0           0  2  0
52  *     0  0  6           2  2  6
53  *
54  * 2. You should check the energy conservation in a triclinic box.
55  *
56  * It might seem an overkill, but better safe than sorry.
57  * /Erik 001109
58  */
59
60 #ifdef HAVE_CONFIG_H
61 #include <config.h>
62 #endif
63
64 #include <stdio.h>
65 #include <string.h>
66 #include <math.h>
67 #include <assert.h>
68 #include "typedefs.h"
69 #include "txtdump.h"
70 #include "vec.h"
71 #include "gromacs/utility/smalloc.h"
72 #include "coulomb.h"
73 #include "gmx_fatal.h"
74 #include "pme.h"
75 #include "network.h"
76 #include "physics.h"
77 #include "nrnb.h"
78 #include "macros.h"
79
80 #include "gromacs/fft/parallel_3dfft.h"
81 #include "gromacs/fileio/futil.h"
82 #include "gromacs/fileio/pdbio.h"
83 #include "gromacs/math/gmxcomplex.h"
84 #include "gromacs/timing/cyclecounter.h"
85 #include "gromacs/timing/wallcycle.h"
86 #include "gromacs/utility/gmxmpi.h"
87 #include "gromacs/utility/gmxomp.h"
88
89 /* Include the SIMD macro file and then check for support */
90 #include "gromacs/simd/simd.h"
91 #include "gromacs/simd/simd_math.h"
92 #ifdef GMX_SIMD_HAVE_REAL
93 /* Turn on arbitrary width SIMD intrinsics for PME solve */
94 #    define PME_SIMD_SOLVE
95 #endif
96
97 #define PME_GRID_QA    0 /* Gridindex for A-state for Q */
98 #define PME_GRID_C6A   2 /* Gridindex for A-state for LJ */
99 #define DO_Q           2 /* Electrostatic grids have index q<2 */
100 #define DO_Q_AND_LJ    4 /* non-LB LJ grids have index 2 <= q < 4 */
101 #define DO_Q_AND_LJ_LB 9 /* With LB rules we need a total of 2+7 grids */
102
103 /* Pascal triangle coefficients scaled with (1/2)^6 for LJ-PME with LB-rules */
104 const real lb_scale_factor[] = {
105     1.0/64, 6.0/64, 15.0/64, 20.0/64,
106     15.0/64, 6.0/64, 1.0/64
107 };
108
109 /* Pascal triangle coefficients used in solve_pme_lj_yzx, only need to do 4 calculations due to symmetry */
110 const real lb_scale_factor_symm[] = { 2.0/64, 12.0/64, 30.0/64, 20.0/64 };
111
112 /* Check if we have 4-wide SIMD macro support */
113 #if (defined GMX_SIMD4_HAVE_REAL)
114 /* Do PME spread and gather with 4-wide SIMD.
115  * NOTE: SIMD is only used with PME order 4 and 5 (which are the most common).
116  */
117 #    define PME_SIMD4_SPREAD_GATHER
118
119 #    if (defined GMX_SIMD_HAVE_LOADU) && (defined GMX_SIMD_HAVE_STOREU)
120 /* With PME-order=4 on x86, unaligned load+store is slightly faster
121  * than doubling all SIMD operations when using aligned load+store.
122  */
123 #        define PME_SIMD4_UNALIGNED
124 #    endif
125 #endif
126
127 #define DFT_TOL 1e-7
128 /* #define PRT_FORCE */
129 /* conditions for on the fly time-measurement */
130 /* #define TAKETIME (step > 1 && timesteps < 10) */
131 #define TAKETIME FALSE
132
133 /* #define PME_TIME_THREADS */
134
135 #ifdef GMX_DOUBLE
136 #define mpi_type MPI_DOUBLE
137 #else
138 #define mpi_type MPI_FLOAT
139 #endif
140
141 #ifdef PME_SIMD4_SPREAD_GATHER
142 #    define SIMD4_ALIGNMENT  (GMX_SIMD4_WIDTH*sizeof(real))
143 #else
144 /* We can use any alignment, apart from 0, so we use 4 reals */
145 #    define SIMD4_ALIGNMENT  (4*sizeof(real))
146 #endif
147
148 /* GMX_CACHE_SEP should be a multiple of the SIMD and SIMD4 register size
149  * to preserve alignment.
150  */
151 #define GMX_CACHE_SEP 64
152
153 /* We only define a maximum to be able to use local arrays without allocation.
154  * An order larger than 12 should never be needed, even for test cases.
155  * If needed it can be changed here.
156  */
157 #define PME_ORDER_MAX 12
158
159 /* Internal datastructures */
160 typedef struct {
161     int send_index0;
162     int send_nindex;
163     int recv_index0;
164     int recv_nindex;
165     int recv_size;   /* Receive buffer width, used with OpenMP */
166 } pme_grid_comm_t;
167
168 typedef struct {
169 #ifdef GMX_MPI
170     MPI_Comm         mpi_comm;
171 #endif
172     int              nnodes, nodeid;
173     int             *s2g0;
174     int             *s2g1;
175     int              noverlap_nodes;
176     int             *send_id, *recv_id;
177     int              send_size; /* Send buffer width, used with OpenMP */
178     pme_grid_comm_t *comm_data;
179     real            *sendbuf;
180     real            *recvbuf;
181 } pme_overlap_t;
182
183 typedef struct {
184     int *n;      /* Cumulative counts of the number of particles per thread */
185     int  nalloc; /* Allocation size of i */
186     int *i;      /* Particle indices ordered on thread index (n) */
187 } thread_plist_t;
188
189 typedef struct {
190     int      *thread_one;
191     int       n;
192     int      *ind;
193     splinevec theta;
194     real     *ptr_theta_z;
195     splinevec dtheta;
196     real     *ptr_dtheta_z;
197 } splinedata_t;
198
199 typedef struct {
200     int      dimind;        /* The index of the dimension, 0=x, 1=y */
201     int      nslab;
202     int      nodeid;
203 #ifdef GMX_MPI
204     MPI_Comm mpi_comm;
205 #endif
206
207     int     *node_dest;     /* The nodes to send x and q to with DD */
208     int     *node_src;      /* The nodes to receive x and q from with DD */
209     int     *buf_index;     /* Index for commnode into the buffers */
210
211     int      maxshift;
212
213     int      npd;
214     int      pd_nalloc;
215     int     *pd;
216     int     *count;         /* The number of atoms to send to each node */
217     int    **count_thread;
218     int     *rcount;        /* The number of atoms to receive */
219
220     int      n;
221     int      nalloc;
222     rvec    *x;
223     real    *coefficient;
224     rvec    *f;
225     gmx_bool bSpread;       /* These coordinates are used for spreading */
226     int      pme_order;
227     ivec    *idx;
228     rvec    *fractx;            /* Fractional coordinate relative to
229                                  * the lower cell boundary
230                                  */
231     int             nthread;
232     int            *thread_idx; /* Which thread should spread which coefficient */
233     thread_plist_t *thread_plist;
234     splinedata_t   *spline;
235 } pme_atomcomm_t;
236
237 #define FLBS  3
238 #define FLBSZ 4
239
240 typedef struct {
241     ivec  ci;     /* The spatial location of this grid         */
242     ivec  n;      /* The used size of *grid, including order-1 */
243     ivec  offset; /* The grid offset from the full node grid   */
244     int   order;  /* PME spreading order                       */
245     ivec  s;      /* The allocated size of *grid, s >= n       */
246     real *grid;   /* The grid local thread, size n             */
247 } pmegrid_t;
248
249 typedef struct {
250     pmegrid_t  grid;         /* The full node grid (non thread-local)            */
251     int        nthread;      /* The number of threads operating on this grid     */
252     ivec       nc;           /* The local spatial decomposition over the threads */
253     pmegrid_t *grid_th;      /* Array of grids for each thread                   */
254     real      *grid_all;     /* Allocated array for the grids in *grid_th        */
255     int      **g2t;          /* The grid to thread index                         */
256     ivec       nthread_comm; /* The number of threads to communicate with        */
257 } pmegrids_t;
258
259 typedef struct {
260 #ifdef PME_SIMD4_SPREAD_GATHER
261     /* Masks for 4-wide SIMD aligned spreading and gathering */
262     gmx_simd4_bool_t mask_S0[6], mask_S1[6];
263 #else
264     int              dummy; /* C89 requires that struct has at least one member */
265 #endif
266 } pme_spline_work_t;
267
268 typedef struct {
269     /* work data for solve_pme */
270     int      nalloc;
271     real *   mhx;
272     real *   mhy;
273     real *   mhz;
274     real *   m2;
275     real *   denom;
276     real *   tmp1_alloc;
277     real *   tmp1;
278     real *   tmp2;
279     real *   eterm;
280     real *   m2inv;
281
282     real     energy_q;
283     matrix   vir_q;
284     real     energy_lj;
285     matrix   vir_lj;
286 } pme_work_t;
287
288 typedef struct gmx_pme {
289     int           ndecompdim; /* The number of decomposition dimensions */
290     int           nodeid;     /* Our nodeid in mpi->mpi_comm */
291     int           nodeid_major;
292     int           nodeid_minor;
293     int           nnodes;    /* The number of nodes doing PME */
294     int           nnodes_major;
295     int           nnodes_minor;
296
297     MPI_Comm      mpi_comm;
298     MPI_Comm      mpi_comm_d[2]; /* Indexed on dimension, 0=x, 1=y */
299 #ifdef GMX_MPI
300     MPI_Datatype  rvec_mpi;      /* the pme vector's MPI type */
301 #endif
302
303     gmx_bool   bUseThreads;   /* Does any of the PME ranks have nthread>1 ?  */
304     int        nthread;       /* The number of threads doing PME on our rank */
305
306     gmx_bool   bPPnode;       /* Node also does particle-particle forces */
307     gmx_bool   bFEP;          /* Compute Free energy contribution */
308     gmx_bool   bFEP_q;
309     gmx_bool   bFEP_lj;
310     int        nkx, nky, nkz; /* Grid dimensions */
311     gmx_bool   bP3M;          /* Do P3M: optimize the influence function */
312     int        pme_order;
313     real       epsilon_r;
314
315     int        ljpme_combination_rule;  /* Type of combination rule in LJ-PME */
316
317     int        ngrids;                  /* number of grids we maintain for pmegrid, (c)fftgrid and pfft_setups*/
318
319     pmegrids_t pmegrid[DO_Q_AND_LJ_LB]; /* Grids on which we do spreading/interpolation,
320                                          * includes overlap Grid indices are ordered as
321                                          * follows:
322                                          * 0: Coloumb PME, state A
323                                          * 1: Coloumb PME, state B
324                                          * 2-8: LJ-PME
325                                          * This can probably be done in a better way
326                                          * but this simple hack works for now
327                                          */
328     /* The PME coefficient spreading grid sizes/strides, includes pme_order-1 */
329     int        pmegrid_nx, pmegrid_ny, pmegrid_nz;
330     /* pmegrid_nz might be larger than strictly necessary to ensure
331      * memory alignment, pmegrid_nz_base gives the real base size.
332      */
333     int     pmegrid_nz_base;
334     /* The local PME grid starting indices */
335     int     pmegrid_start_ix, pmegrid_start_iy, pmegrid_start_iz;
336
337     /* Work data for spreading and gathering */
338     pme_spline_work_t     *spline_work;
339
340     real                 **fftgrid; /* Grids for FFT. With 1D FFT decomposition this can be a pointer */
341     /* inside the interpolation grid, but separate for 2D PME decomp. */
342     int                    fftgrid_nx, fftgrid_ny, fftgrid_nz;
343
344     t_complex            **cfftgrid;  /* Grids for complex FFT data */
345
346     int                    cfftgrid_nx, cfftgrid_ny, cfftgrid_nz;
347
348     gmx_parallel_3dfft_t  *pfft_setup;
349
350     int                   *nnx, *nny, *nnz;
351     real                  *fshx, *fshy, *fshz;
352
353     pme_atomcomm_t         atc[2]; /* Indexed on decomposition index */
354     matrix                 recipbox;
355     splinevec              bsp_mod;
356     /* Buffers to store data for local atoms for L-B combination rule
357      * calculations in LJ-PME. lb_buf1 stores either the coefficients
358      * for spreading/gathering (in serial), or the C6 coefficient for
359      * local atoms (in parallel).  lb_buf2 is only used in parallel,
360      * and stores the sigma values for local atoms. */
361     real                 *lb_buf1, *lb_buf2;
362     int                   lb_buf_nalloc; /* Allocation size for the above buffers. */
363
364     pme_overlap_t         overlap[2];    /* Indexed on dimension, 0=x, 1=y */
365
366     pme_atomcomm_t        atc_energy;    /* Only for gmx_pme_calc_energy */
367
368     rvec                 *bufv;          /* Communication buffer */
369     real                 *bufr;          /* Communication buffer */
370     int                   buf_nalloc;    /* The communication buffer size */
371
372     /* thread local work data for solve_pme */
373     pme_work_t *work;
374
375     /* Work data for sum_qgrid */
376     real *   sum_qgrid_tmp;
377     real *   sum_qgrid_dd_tmp;
378 } t_gmx_pme;
379
380 static void calc_interpolation_idx(gmx_pme_t pme, pme_atomcomm_t *atc,
381                                    int start, int grid_index, int end, int thread)
382 {
383     int             i;
384     int            *idxptr, tix, tiy, tiz;
385     real           *xptr, *fptr, tx, ty, tz;
386     real            rxx, ryx, ryy, rzx, rzy, rzz;
387     int             nx, ny, nz;
388     int             start_ix, start_iy, start_iz;
389     int            *g2tx, *g2ty, *g2tz;
390     gmx_bool        bThreads;
391     int            *thread_idx = NULL;
392     thread_plist_t *tpl        = NULL;
393     int            *tpl_n      = NULL;
394     int             thread_i;
395
396     nx  = pme->nkx;
397     ny  = pme->nky;
398     nz  = pme->nkz;
399
400     start_ix = pme->pmegrid_start_ix;
401     start_iy = pme->pmegrid_start_iy;
402     start_iz = pme->pmegrid_start_iz;
403
404     rxx = pme->recipbox[XX][XX];
405     ryx = pme->recipbox[YY][XX];
406     ryy = pme->recipbox[YY][YY];
407     rzx = pme->recipbox[ZZ][XX];
408     rzy = pme->recipbox[ZZ][YY];
409     rzz = pme->recipbox[ZZ][ZZ];
410
411     g2tx = pme->pmegrid[grid_index].g2t[XX];
412     g2ty = pme->pmegrid[grid_index].g2t[YY];
413     g2tz = pme->pmegrid[grid_index].g2t[ZZ];
414
415     bThreads = (atc->nthread > 1);
416     if (bThreads)
417     {
418         thread_idx = atc->thread_idx;
419
420         tpl   = &atc->thread_plist[thread];
421         tpl_n = tpl->n;
422         for (i = 0; i < atc->nthread; i++)
423         {
424             tpl_n[i] = 0;
425         }
426     }
427
428     for (i = start; i < end; i++)
429     {
430         xptr   = atc->x[i];
431         idxptr = atc->idx[i];
432         fptr   = atc->fractx[i];
433
434         /* Fractional coordinates along box vectors, add 2.0 to make 100% sure we are positive for triclinic boxes */
435         tx = nx * ( xptr[XX] * rxx + xptr[YY] * ryx + xptr[ZZ] * rzx + 2.0 );
436         ty = ny * (                  xptr[YY] * ryy + xptr[ZZ] * rzy + 2.0 );
437         tz = nz * (                                   xptr[ZZ] * rzz + 2.0 );
438
439         tix = (int)(tx);
440         tiy = (int)(ty);
441         tiz = (int)(tz);
442
443         /* Because decomposition only occurs in x and y,
444          * we never have a fraction correction in z.
445          */
446         fptr[XX] = tx - tix + pme->fshx[tix];
447         fptr[YY] = ty - tiy + pme->fshy[tiy];
448         fptr[ZZ] = tz - tiz;
449
450         idxptr[XX] = pme->nnx[tix];
451         idxptr[YY] = pme->nny[tiy];
452         idxptr[ZZ] = pme->nnz[tiz];
453
454 #ifdef DEBUG
455         range_check(idxptr[XX], 0, pme->pmegrid_nx);
456         range_check(idxptr[YY], 0, pme->pmegrid_ny);
457         range_check(idxptr[ZZ], 0, pme->pmegrid_nz);
458 #endif
459
460         if (bThreads)
461         {
462             thread_i      = g2tx[idxptr[XX]] + g2ty[idxptr[YY]] + g2tz[idxptr[ZZ]];
463             thread_idx[i] = thread_i;
464             tpl_n[thread_i]++;
465         }
466     }
467
468     if (bThreads)
469     {
470         /* Make a list of particle indices sorted on thread */
471
472         /* Get the cumulative count */
473         for (i = 1; i < atc->nthread; i++)
474         {
475             tpl_n[i] += tpl_n[i-1];
476         }
477         /* The current implementation distributes particles equally
478          * over the threads, so we could actually allocate for that
479          * in pme_realloc_atomcomm_things.
480          */
481         if (tpl_n[atc->nthread-1] > tpl->nalloc)
482         {
483             tpl->nalloc = over_alloc_large(tpl_n[atc->nthread-1]);
484             srenew(tpl->i, tpl->nalloc);
485         }
486         /* Set tpl_n to the cumulative start */
487         for (i = atc->nthread-1; i >= 1; i--)
488         {
489             tpl_n[i] = tpl_n[i-1];
490         }
491         tpl_n[0] = 0;
492
493         /* Fill our thread local array with indices sorted on thread */
494         for (i = start; i < end; i++)
495         {
496             tpl->i[tpl_n[atc->thread_idx[i]]++] = i;
497         }
498         /* Now tpl_n contains the cummulative count again */
499     }
500 }
501
502 static void make_thread_local_ind(pme_atomcomm_t *atc,
503                                   int thread, splinedata_t *spline)
504 {
505     int             n, t, i, start, end;
506     thread_plist_t *tpl;
507
508     /* Combine the indices made by each thread into one index */
509
510     n     = 0;
511     start = 0;
512     for (t = 0; t < atc->nthread; t++)
513     {
514         tpl = &atc->thread_plist[t];
515         /* Copy our part (start - end) from the list of thread t */
516         if (thread > 0)
517         {
518             start = tpl->n[thread-1];
519         }
520         end = tpl->n[thread];
521         for (i = start; i < end; i++)
522         {
523             spline->ind[n++] = tpl->i[i];
524         }
525     }
526
527     spline->n = n;
528 }
529
530
531 static void pme_calc_pidx(int start, int end,
532                           matrix recipbox, rvec x[],
533                           pme_atomcomm_t *atc, int *count)
534 {
535     int   nslab, i;
536     int   si;
537     real *xptr, s;
538     real  rxx, ryx, rzx, ryy, rzy;
539     int  *pd;
540
541     /* Calculate PME task index (pidx) for each grid index.
542      * Here we always assign equally sized slabs to each node
543      * for load balancing reasons (the PME grid spacing is not used).
544      */
545
546     nslab = atc->nslab;
547     pd    = atc->pd;
548
549     /* Reset the count */
550     for (i = 0; i < nslab; i++)
551     {
552         count[i] = 0;
553     }
554
555     if (atc->dimind == 0)
556     {
557         rxx = recipbox[XX][XX];
558         ryx = recipbox[YY][XX];
559         rzx = recipbox[ZZ][XX];
560         /* Calculate the node index in x-dimension */
561         for (i = start; i < end; i++)
562         {
563             xptr   = x[i];
564             /* Fractional coordinates along box vectors */
565             s     = nslab*(xptr[XX]*rxx + xptr[YY]*ryx + xptr[ZZ]*rzx);
566             si    = (int)(s + 2*nslab) % nslab;
567             pd[i] = si;
568             count[si]++;
569         }
570     }
571     else
572     {
573         ryy = recipbox[YY][YY];
574         rzy = recipbox[ZZ][YY];
575         /* Calculate the node index in y-dimension */
576         for (i = start; i < end; i++)
577         {
578             xptr   = x[i];
579             /* Fractional coordinates along box vectors */
580             s     = nslab*(xptr[YY]*ryy + xptr[ZZ]*rzy);
581             si    = (int)(s + 2*nslab) % nslab;
582             pd[i] = si;
583             count[si]++;
584         }
585     }
586 }
587
588 static void pme_calc_pidx_wrapper(int natoms, matrix recipbox, rvec x[],
589                                   pme_atomcomm_t *atc)
590 {
591     int nthread, thread, slab;
592
593     nthread = atc->nthread;
594
595 #pragma omp parallel for num_threads(nthread) schedule(static)
596     for (thread = 0; thread < nthread; thread++)
597     {
598         pme_calc_pidx(natoms* thread   /nthread,
599                       natoms*(thread+1)/nthread,
600                       recipbox, x, atc, atc->count_thread[thread]);
601     }
602     /* Non-parallel reduction, since nslab is small */
603
604     for (thread = 1; thread < nthread; thread++)
605     {
606         for (slab = 0; slab < atc->nslab; slab++)
607         {
608             atc->count_thread[0][slab] += atc->count_thread[thread][slab];
609         }
610     }
611 }
612
613 static void realloc_splinevec(splinevec th, real **ptr_z, int nalloc)
614 {
615     const int padding = 4;
616     int       i;
617
618     srenew(th[XX], nalloc);
619     srenew(th[YY], nalloc);
620     /* In z we add padding, this is only required for the aligned SIMD code */
621     sfree_aligned(*ptr_z);
622     snew_aligned(*ptr_z, nalloc+2*padding, SIMD4_ALIGNMENT);
623     th[ZZ] = *ptr_z + padding;
624
625     for (i = 0; i < padding; i++)
626     {
627         (*ptr_z)[               i] = 0;
628         (*ptr_z)[padding+nalloc+i] = 0;
629     }
630 }
631
632 static void pme_realloc_splinedata(splinedata_t *spline, pme_atomcomm_t *atc)
633 {
634     int i, d;
635
636     srenew(spline->ind, atc->nalloc);
637     /* Initialize the index to identity so it works without threads */
638     for (i = 0; i < atc->nalloc; i++)
639     {
640         spline->ind[i] = i;
641     }
642
643     realloc_splinevec(spline->theta, &spline->ptr_theta_z,
644                       atc->pme_order*atc->nalloc);
645     realloc_splinevec(spline->dtheta, &spline->ptr_dtheta_z,
646                       atc->pme_order*atc->nalloc);
647 }
648
649 static void pme_realloc_atomcomm_things(pme_atomcomm_t *atc)
650 {
651     int nalloc_old, i, j, nalloc_tpl;
652
653     /* We have to avoid a NULL pointer for atc->x to avoid
654      * possible fatal errors in MPI routines.
655      */
656     if (atc->n > atc->nalloc || atc->nalloc == 0)
657     {
658         nalloc_old  = atc->nalloc;
659         atc->nalloc = over_alloc_dd(max(atc->n, 1));
660
661         if (atc->nslab > 1)
662         {
663             srenew(atc->x, atc->nalloc);
664             srenew(atc->coefficient, atc->nalloc);
665             srenew(atc->f, atc->nalloc);
666             for (i = nalloc_old; i < atc->nalloc; i++)
667             {
668                 clear_rvec(atc->f[i]);
669             }
670         }
671         if (atc->bSpread)
672         {
673             srenew(atc->fractx, atc->nalloc);
674             srenew(atc->idx, atc->nalloc);
675
676             if (atc->nthread > 1)
677             {
678                 srenew(atc->thread_idx, atc->nalloc);
679             }
680
681             for (i = 0; i < atc->nthread; i++)
682             {
683                 pme_realloc_splinedata(&atc->spline[i], atc);
684             }
685         }
686     }
687 }
688
689 static void pme_dd_sendrecv(pme_atomcomm_t gmx_unused *atc,
690                             gmx_bool gmx_unused bBackward, int gmx_unused shift,
691                             void gmx_unused *buf_s, int gmx_unused nbyte_s,
692                             void gmx_unused *buf_r, int gmx_unused nbyte_r)
693 {
694 #ifdef GMX_MPI
695     int        dest, src;
696     MPI_Status stat;
697
698     if (bBackward == FALSE)
699     {
700         dest = atc->node_dest[shift];
701         src  = atc->node_src[shift];
702     }
703     else
704     {
705         dest = atc->node_src[shift];
706         src  = atc->node_dest[shift];
707     }
708
709     if (nbyte_s > 0 && nbyte_r > 0)
710     {
711         MPI_Sendrecv(buf_s, nbyte_s, MPI_BYTE,
712                      dest, shift,
713                      buf_r, nbyte_r, MPI_BYTE,
714                      src, shift,
715                      atc->mpi_comm, &stat);
716     }
717     else if (nbyte_s > 0)
718     {
719         MPI_Send(buf_s, nbyte_s, MPI_BYTE,
720                  dest, shift,
721                  atc->mpi_comm);
722     }
723     else if (nbyte_r > 0)
724     {
725         MPI_Recv(buf_r, nbyte_r, MPI_BYTE,
726                  src, shift,
727                  atc->mpi_comm, &stat);
728     }
729 #endif
730 }
731
732 static void dd_pmeredist_pos_coeffs(gmx_pme_t pme,
733                                     int n, gmx_bool bX, rvec *x, real *data,
734                                     pme_atomcomm_t *atc)
735 {
736     int *commnode, *buf_index;
737     int  nnodes_comm, i, nsend, local_pos, buf_pos, node, scount, rcount;
738
739     commnode  = atc->node_dest;
740     buf_index = atc->buf_index;
741
742     nnodes_comm = min(2*atc->maxshift, atc->nslab-1);
743
744     nsend = 0;
745     for (i = 0; i < nnodes_comm; i++)
746     {
747         buf_index[commnode[i]] = nsend;
748         nsend                 += atc->count[commnode[i]];
749     }
750     if (bX)
751     {
752         if (atc->count[atc->nodeid] + nsend != n)
753         {
754             gmx_fatal(FARGS, "%d particles communicated to PME rank %d are more than 2/3 times the cut-off out of the domain decomposition cell of their charge group in dimension %c.\n"
755                       "This usually means that your system is not well equilibrated.",
756                       n - (atc->count[atc->nodeid] + nsend),
757                       pme->nodeid, 'x'+atc->dimind);
758         }
759
760         if (nsend > pme->buf_nalloc)
761         {
762             pme->buf_nalloc = over_alloc_dd(nsend);
763             srenew(pme->bufv, pme->buf_nalloc);
764             srenew(pme->bufr, pme->buf_nalloc);
765         }
766
767         atc->n = atc->count[atc->nodeid];
768         for (i = 0; i < nnodes_comm; i++)
769         {
770             scount = atc->count[commnode[i]];
771             /* Communicate the count */
772             if (debug)
773             {
774                 fprintf(debug, "dimind %d PME rank %d send to rank %d: %d\n",
775                         atc->dimind, atc->nodeid, commnode[i], scount);
776             }
777             pme_dd_sendrecv(atc, FALSE, i,
778                             &scount, sizeof(int),
779                             &atc->rcount[i], sizeof(int));
780             atc->n += atc->rcount[i];
781         }
782
783         pme_realloc_atomcomm_things(atc);
784     }
785
786     local_pos = 0;
787     for (i = 0; i < n; i++)
788     {
789         node = atc->pd[i];
790         if (node == atc->nodeid)
791         {
792             /* Copy direct to the receive buffer */
793             if (bX)
794             {
795                 copy_rvec(x[i], atc->x[local_pos]);
796             }
797             atc->coefficient[local_pos] = data[i];
798             local_pos++;
799         }
800         else
801         {
802             /* Copy to the send buffer */
803             if (bX)
804             {
805                 copy_rvec(x[i], pme->bufv[buf_index[node]]);
806             }
807             pme->bufr[buf_index[node]] = data[i];
808             buf_index[node]++;
809         }
810     }
811
812     buf_pos = 0;
813     for (i = 0; i < nnodes_comm; i++)
814     {
815         scount = atc->count[commnode[i]];
816         rcount = atc->rcount[i];
817         if (scount > 0 || rcount > 0)
818         {
819             if (bX)
820             {
821                 /* Communicate the coordinates */
822                 pme_dd_sendrecv(atc, FALSE, i,
823                                 pme->bufv[buf_pos], scount*sizeof(rvec),
824                                 atc->x[local_pos], rcount*sizeof(rvec));
825             }
826             /* Communicate the coefficients */
827             pme_dd_sendrecv(atc, FALSE, i,
828                             pme->bufr+buf_pos, scount*sizeof(real),
829                             atc->coefficient+local_pos, rcount*sizeof(real));
830             buf_pos   += scount;
831             local_pos += atc->rcount[i];
832         }
833     }
834 }
835
836 static void dd_pmeredist_f(gmx_pme_t pme, pme_atomcomm_t *atc,
837                            int n, rvec *f,
838                            gmx_bool bAddF)
839 {
840     int *commnode, *buf_index;
841     int  nnodes_comm, local_pos, buf_pos, i, scount, rcount, node;
842
843     commnode  = atc->node_dest;
844     buf_index = atc->buf_index;
845
846     nnodes_comm = min(2*atc->maxshift, atc->nslab-1);
847
848     local_pos = atc->count[atc->nodeid];
849     buf_pos   = 0;
850     for (i = 0; i < nnodes_comm; i++)
851     {
852         scount = atc->rcount[i];
853         rcount = atc->count[commnode[i]];
854         if (scount > 0 || rcount > 0)
855         {
856             /* Communicate the forces */
857             pme_dd_sendrecv(atc, TRUE, i,
858                             atc->f[local_pos], scount*sizeof(rvec),
859                             pme->bufv[buf_pos], rcount*sizeof(rvec));
860             local_pos += scount;
861         }
862         buf_index[commnode[i]] = buf_pos;
863         buf_pos               += rcount;
864     }
865
866     local_pos = 0;
867     if (bAddF)
868     {
869         for (i = 0; i < n; i++)
870         {
871             node = atc->pd[i];
872             if (node == atc->nodeid)
873             {
874                 /* Add from the local force array */
875                 rvec_inc(f[i], atc->f[local_pos]);
876                 local_pos++;
877             }
878             else
879             {
880                 /* Add from the receive buffer */
881                 rvec_inc(f[i], pme->bufv[buf_index[node]]);
882                 buf_index[node]++;
883             }
884         }
885     }
886     else
887     {
888         for (i = 0; i < n; i++)
889         {
890             node = atc->pd[i];
891             if (node == atc->nodeid)
892             {
893                 /* Copy from the local force array */
894                 copy_rvec(atc->f[local_pos], f[i]);
895                 local_pos++;
896             }
897             else
898             {
899                 /* Copy from the receive buffer */
900                 copy_rvec(pme->bufv[buf_index[node]], f[i]);
901                 buf_index[node]++;
902             }
903         }
904     }
905 }
906
907 #ifdef GMX_MPI
908 static void gmx_sum_qgrid_dd(gmx_pme_t pme, real *grid, int direction)
909 {
910     pme_overlap_t *overlap;
911     int            send_index0, send_nindex;
912     int            recv_index0, recv_nindex;
913     MPI_Status     stat;
914     int            i, j, k, ix, iy, iz, icnt;
915     int            ipulse, send_id, recv_id, datasize;
916     real          *p;
917     real          *sendptr, *recvptr;
918
919     /* Start with minor-rank communication. This is a bit of a pain since it is not contiguous */
920     overlap = &pme->overlap[1];
921
922     for (ipulse = 0; ipulse < overlap->noverlap_nodes; ipulse++)
923     {
924         /* Since we have already (un)wrapped the overlap in the z-dimension,
925          * we only have to communicate 0 to nkz (not pmegrid_nz).
926          */
927         if (direction == GMX_SUM_GRID_FORWARD)
928         {
929             send_id       = overlap->send_id[ipulse];
930             recv_id       = overlap->recv_id[ipulse];
931             send_index0   = overlap->comm_data[ipulse].send_index0;
932             send_nindex   = overlap->comm_data[ipulse].send_nindex;
933             recv_index0   = overlap->comm_data[ipulse].recv_index0;
934             recv_nindex   = overlap->comm_data[ipulse].recv_nindex;
935         }
936         else
937         {
938             send_id       = overlap->recv_id[ipulse];
939             recv_id       = overlap->send_id[ipulse];
940             send_index0   = overlap->comm_data[ipulse].recv_index0;
941             send_nindex   = overlap->comm_data[ipulse].recv_nindex;
942             recv_index0   = overlap->comm_data[ipulse].send_index0;
943             recv_nindex   = overlap->comm_data[ipulse].send_nindex;
944         }
945
946         /* Copy data to contiguous send buffer */
947         if (debug)
948         {
949             fprintf(debug, "PME send rank %d %d -> %d grid start %d Communicating %d to %d\n",
950                     pme->nodeid, overlap->nodeid, send_id,
951                     pme->pmegrid_start_iy,
952                     send_index0-pme->pmegrid_start_iy,
953                     send_index0-pme->pmegrid_start_iy+send_nindex);
954         }
955         icnt = 0;
956         for (i = 0; i < pme->pmegrid_nx; i++)
957         {
958             ix = i;
959             for (j = 0; j < send_nindex; j++)
960             {
961                 iy = j + send_index0 - pme->pmegrid_start_iy;
962                 for (k = 0; k < pme->nkz; k++)
963                 {
964                     iz = k;
965                     overlap->sendbuf[icnt++] = grid[ix*(pme->pmegrid_ny*pme->pmegrid_nz)+iy*(pme->pmegrid_nz)+iz];
966                 }
967             }
968         }
969
970         datasize      = pme->pmegrid_nx * pme->nkz;
971
972         MPI_Sendrecv(overlap->sendbuf, send_nindex*datasize, GMX_MPI_REAL,
973                      send_id, ipulse,
974                      overlap->recvbuf, recv_nindex*datasize, GMX_MPI_REAL,
975                      recv_id, ipulse,
976                      overlap->mpi_comm, &stat);
977
978         /* Get data from contiguous recv buffer */
979         if (debug)
980         {
981             fprintf(debug, "PME recv rank %d %d <- %d grid start %d Communicating %d to %d\n",
982                     pme->nodeid, overlap->nodeid, recv_id,
983                     pme->pmegrid_start_iy,
984                     recv_index0-pme->pmegrid_start_iy,
985                     recv_index0-pme->pmegrid_start_iy+recv_nindex);
986         }
987         icnt = 0;
988         for (i = 0; i < pme->pmegrid_nx; i++)
989         {
990             ix = i;
991             for (j = 0; j < recv_nindex; j++)
992             {
993                 iy = j + recv_index0 - pme->pmegrid_start_iy;
994                 for (k = 0; k < pme->nkz; k++)
995                 {
996                     iz = k;
997                     if (direction == GMX_SUM_GRID_FORWARD)
998                     {
999                         grid[ix*(pme->pmegrid_ny*pme->pmegrid_nz)+iy*(pme->pmegrid_nz)+iz] += overlap->recvbuf[icnt++];
1000                     }
1001                     else
1002                     {
1003                         grid[ix*(pme->pmegrid_ny*pme->pmegrid_nz)+iy*(pme->pmegrid_nz)+iz]  = overlap->recvbuf[icnt++];
1004                     }
1005                 }
1006             }
1007         }
1008     }
1009
1010     /* Major dimension is easier, no copying required,
1011      * but we might have to sum to separate array.
1012      * Since we don't copy, we have to communicate up to pmegrid_nz,
1013      * not nkz as for the minor direction.
1014      */
1015     overlap = &pme->overlap[0];
1016
1017     for (ipulse = 0; ipulse < overlap->noverlap_nodes; ipulse++)
1018     {
1019         if (direction == GMX_SUM_GRID_FORWARD)
1020         {
1021             send_id       = overlap->send_id[ipulse];
1022             recv_id       = overlap->recv_id[ipulse];
1023             send_index0   = overlap->comm_data[ipulse].send_index0;
1024             send_nindex   = overlap->comm_data[ipulse].send_nindex;
1025             recv_index0   = overlap->comm_data[ipulse].recv_index0;
1026             recv_nindex   = overlap->comm_data[ipulse].recv_nindex;
1027             recvptr       = overlap->recvbuf;
1028         }
1029         else
1030         {
1031             send_id       = overlap->recv_id[ipulse];
1032             recv_id       = overlap->send_id[ipulse];
1033             send_index0   = overlap->comm_data[ipulse].recv_index0;
1034             send_nindex   = overlap->comm_data[ipulse].recv_nindex;
1035             recv_index0   = overlap->comm_data[ipulse].send_index0;
1036             recv_nindex   = overlap->comm_data[ipulse].send_nindex;
1037             recvptr       = grid + (recv_index0-pme->pmegrid_start_ix)*(pme->pmegrid_ny*pme->pmegrid_nz);
1038         }
1039
1040         sendptr       = grid + (send_index0-pme->pmegrid_start_ix)*(pme->pmegrid_ny*pme->pmegrid_nz);
1041         datasize      = pme->pmegrid_ny * pme->pmegrid_nz;
1042
1043         if (debug)
1044         {
1045             fprintf(debug, "PME send rank %d %d -> %d grid start %d Communicating %d to %d\n",
1046                     pme->nodeid, overlap->nodeid, send_id,
1047                     pme->pmegrid_start_ix,
1048                     send_index0-pme->pmegrid_start_ix,
1049                     send_index0-pme->pmegrid_start_ix+send_nindex);
1050             fprintf(debug, "PME recv rank %d %d <- %d grid start %d Communicating %d to %d\n",
1051                     pme->nodeid, overlap->nodeid, recv_id,
1052                     pme->pmegrid_start_ix,
1053                     recv_index0-pme->pmegrid_start_ix,
1054                     recv_index0-pme->pmegrid_start_ix+recv_nindex);
1055         }
1056
1057         MPI_Sendrecv(sendptr, send_nindex*datasize, GMX_MPI_REAL,
1058                      send_id, ipulse,
1059                      recvptr, recv_nindex*datasize, GMX_MPI_REAL,
1060                      recv_id, ipulse,
1061                      overlap->mpi_comm, &stat);
1062
1063         /* ADD data from contiguous recv buffer */
1064         if (direction == GMX_SUM_GRID_FORWARD)
1065         {
1066             p = grid + (recv_index0-pme->pmegrid_start_ix)*(pme->pmegrid_ny*pme->pmegrid_nz);
1067             for (i = 0; i < recv_nindex*datasize; i++)
1068             {
1069                 p[i] += overlap->recvbuf[i];
1070             }
1071         }
1072     }
1073 }
1074 #endif
1075
1076
1077 static int copy_pmegrid_to_fftgrid(gmx_pme_t pme, real *pmegrid, real *fftgrid, int grid_index)
1078 {
1079     ivec    local_fft_ndata, local_fft_offset, local_fft_size;
1080     ivec    local_pme_size;
1081     int     i, ix, iy, iz;
1082     int     pmeidx, fftidx;
1083
1084     /* Dimensions should be identical for A/B grid, so we just use A here */
1085     gmx_parallel_3dfft_real_limits(pme->pfft_setup[grid_index],
1086                                    local_fft_ndata,
1087                                    local_fft_offset,
1088                                    local_fft_size);
1089
1090     local_pme_size[0] = pme->pmegrid_nx;
1091     local_pme_size[1] = pme->pmegrid_ny;
1092     local_pme_size[2] = pme->pmegrid_nz;
1093
1094     /* The fftgrid is always 'justified' to the lower-left corner of the PME grid,
1095        the offset is identical, and the PME grid always has more data (due to overlap)
1096      */
1097     {
1098 #ifdef DEBUG_PME
1099         FILE *fp, *fp2;
1100         char  fn[STRLEN];
1101         real  val;
1102         sprintf(fn, "pmegrid%d.pdb", pme->nodeid);
1103         fp = gmx_ffopen(fn, "w");
1104         sprintf(fn, "pmegrid%d.txt", pme->nodeid);
1105         fp2 = gmx_ffopen(fn, "w");
1106 #endif
1107
1108         for (ix = 0; ix < local_fft_ndata[XX]; ix++)
1109         {
1110             for (iy = 0; iy < local_fft_ndata[YY]; iy++)
1111             {
1112                 for (iz = 0; iz < local_fft_ndata[ZZ]; iz++)
1113                 {
1114                     pmeidx          = ix*(local_pme_size[YY]*local_pme_size[ZZ])+iy*(local_pme_size[ZZ])+iz;
1115                     fftidx          = ix*(local_fft_size[YY]*local_fft_size[ZZ])+iy*(local_fft_size[ZZ])+iz;
1116                     fftgrid[fftidx] = pmegrid[pmeidx];
1117 #ifdef DEBUG_PME
1118                     val = 100*pmegrid[pmeidx];
1119                     if (pmegrid[pmeidx] != 0)
1120                     {
1121                         gmx_fprintf_pdb_atomline(fp, epdbATOM, pmeidx, "CA", ' ', "GLY", ' ', pmeidx, ' ',
1122                                                  5.0*ix, 5.0*iy, 5.0*iz, 1.0, val, "");
1123                     }
1124                     if (pmegrid[pmeidx] != 0)
1125                     {
1126                         fprintf(fp2, "%-12s  %5d  %5d  %5d  %12.5e\n",
1127                                 "qgrid",
1128                                 pme->pmegrid_start_ix + ix,
1129                                 pme->pmegrid_start_iy + iy,
1130                                 pme->pmegrid_start_iz + iz,
1131                                 pmegrid[pmeidx]);
1132                     }
1133 #endif
1134                 }
1135             }
1136         }
1137 #ifdef DEBUG_PME
1138         gmx_ffclose(fp);
1139         gmx_ffclose(fp2);
1140 #endif
1141     }
1142     return 0;
1143 }
1144
1145
1146 static gmx_cycles_t omp_cyc_start()
1147 {
1148     return gmx_cycles_read();
1149 }
1150
1151 static gmx_cycles_t omp_cyc_end(gmx_cycles_t c)
1152 {
1153     return gmx_cycles_read() - c;
1154 }
1155
1156
1157 static int copy_fftgrid_to_pmegrid(gmx_pme_t pme, const real *fftgrid, real *pmegrid, int grid_index,
1158                                    int nthread, int thread)
1159 {
1160     ivec          local_fft_ndata, local_fft_offset, local_fft_size;
1161     ivec          local_pme_size;
1162     int           ixy0, ixy1, ixy, ix, iy, iz;
1163     int           pmeidx, fftidx;
1164 #ifdef PME_TIME_THREADS
1165     gmx_cycles_t  c1;
1166     static double cs1 = 0;
1167     static int    cnt = 0;
1168 #endif
1169
1170 #ifdef PME_TIME_THREADS
1171     c1 = omp_cyc_start();
1172 #endif
1173     /* Dimensions should be identical for A/B grid, so we just use A here */
1174     gmx_parallel_3dfft_real_limits(pme->pfft_setup[grid_index],
1175                                    local_fft_ndata,
1176                                    local_fft_offset,
1177                                    local_fft_size);
1178
1179     local_pme_size[0] = pme->pmegrid_nx;
1180     local_pme_size[1] = pme->pmegrid_ny;
1181     local_pme_size[2] = pme->pmegrid_nz;
1182
1183     /* The fftgrid is always 'justified' to the lower-left corner of the PME grid,
1184        the offset is identical, and the PME grid always has more data (due to overlap)
1185      */
1186     ixy0 = ((thread  )*local_fft_ndata[XX]*local_fft_ndata[YY])/nthread;
1187     ixy1 = ((thread+1)*local_fft_ndata[XX]*local_fft_ndata[YY])/nthread;
1188
1189     for (ixy = ixy0; ixy < ixy1; ixy++)
1190     {
1191         ix = ixy/local_fft_ndata[YY];
1192         iy = ixy - ix*local_fft_ndata[YY];
1193
1194         pmeidx = (ix*local_pme_size[YY] + iy)*local_pme_size[ZZ];
1195         fftidx = (ix*local_fft_size[YY] + iy)*local_fft_size[ZZ];
1196         for (iz = 0; iz < local_fft_ndata[ZZ]; iz++)
1197         {
1198             pmegrid[pmeidx+iz] = fftgrid[fftidx+iz];
1199         }
1200     }
1201
1202 #ifdef PME_TIME_THREADS
1203     c1   = omp_cyc_end(c1);
1204     cs1 += (double)c1;
1205     cnt++;
1206     if (cnt % 20 == 0)
1207     {
1208         printf("copy %.2f\n", cs1*1e-9);
1209     }
1210 #endif
1211
1212     return 0;
1213 }
1214
1215
1216 static void wrap_periodic_pmegrid(gmx_pme_t pme, real *pmegrid)
1217 {
1218     int     nx, ny, nz, pnx, pny, pnz, ny_x, overlap, ix, iy, iz;
1219
1220     nx = pme->nkx;
1221     ny = pme->nky;
1222     nz = pme->nkz;
1223
1224     pnx = pme->pmegrid_nx;
1225     pny = pme->pmegrid_ny;
1226     pnz = pme->pmegrid_nz;
1227
1228     overlap = pme->pme_order - 1;
1229
1230     /* Add periodic overlap in z */
1231     for (ix = 0; ix < pme->pmegrid_nx; ix++)
1232     {
1233         for (iy = 0; iy < pme->pmegrid_ny; iy++)
1234         {
1235             for (iz = 0; iz < overlap; iz++)
1236             {
1237                 pmegrid[(ix*pny+iy)*pnz+iz] +=
1238                     pmegrid[(ix*pny+iy)*pnz+nz+iz];
1239             }
1240         }
1241     }
1242
1243     if (pme->nnodes_minor == 1)
1244     {
1245         for (ix = 0; ix < pme->pmegrid_nx; ix++)
1246         {
1247             for (iy = 0; iy < overlap; iy++)
1248             {
1249                 for (iz = 0; iz < nz; iz++)
1250                 {
1251                     pmegrid[(ix*pny+iy)*pnz+iz] +=
1252                         pmegrid[(ix*pny+ny+iy)*pnz+iz];
1253                 }
1254             }
1255         }
1256     }
1257
1258     if (pme->nnodes_major == 1)
1259     {
1260         ny_x = (pme->nnodes_minor == 1 ? ny : pme->pmegrid_ny);
1261
1262         for (ix = 0; ix < overlap; ix++)
1263         {
1264             for (iy = 0; iy < ny_x; iy++)
1265             {
1266                 for (iz = 0; iz < nz; iz++)
1267                 {
1268                     pmegrid[(ix*pny+iy)*pnz+iz] +=
1269                         pmegrid[((nx+ix)*pny+iy)*pnz+iz];
1270                 }
1271             }
1272         }
1273     }
1274 }
1275
1276
1277 static void unwrap_periodic_pmegrid(gmx_pme_t pme, real *pmegrid)
1278 {
1279     int     nx, ny, nz, pnx, pny, pnz, ny_x, overlap, ix;
1280
1281     nx = pme->nkx;
1282     ny = pme->nky;
1283     nz = pme->nkz;
1284
1285     pnx = pme->pmegrid_nx;
1286     pny = pme->pmegrid_ny;
1287     pnz = pme->pmegrid_nz;
1288
1289     overlap = pme->pme_order - 1;
1290
1291     if (pme->nnodes_major == 1)
1292     {
1293         ny_x = (pme->nnodes_minor == 1 ? ny : pme->pmegrid_ny);
1294
1295         for (ix = 0; ix < overlap; ix++)
1296         {
1297             int iy, iz;
1298
1299             for (iy = 0; iy < ny_x; iy++)
1300             {
1301                 for (iz = 0; iz < nz; iz++)
1302                 {
1303                     pmegrid[((nx+ix)*pny+iy)*pnz+iz] =
1304                         pmegrid[(ix*pny+iy)*pnz+iz];
1305                 }
1306             }
1307         }
1308     }
1309
1310     if (pme->nnodes_minor == 1)
1311     {
1312 #pragma omp parallel for num_threads(pme->nthread) schedule(static)
1313         for (ix = 0; ix < pme->pmegrid_nx; ix++)
1314         {
1315             int iy, iz;
1316
1317             for (iy = 0; iy < overlap; iy++)
1318             {
1319                 for (iz = 0; iz < nz; iz++)
1320                 {
1321                     pmegrid[(ix*pny+ny+iy)*pnz+iz] =
1322                         pmegrid[(ix*pny+iy)*pnz+iz];
1323                 }
1324             }
1325         }
1326     }
1327
1328     /* Copy periodic overlap in z */
1329 #pragma omp parallel for num_threads(pme->nthread) schedule(static)
1330     for (ix = 0; ix < pme->pmegrid_nx; ix++)
1331     {
1332         int iy, iz;
1333
1334         for (iy = 0; iy < pme->pmegrid_ny; iy++)
1335         {
1336             for (iz = 0; iz < overlap; iz++)
1337             {
1338                 pmegrid[(ix*pny+iy)*pnz+nz+iz] =
1339                     pmegrid[(ix*pny+iy)*pnz+iz];
1340             }
1341         }
1342     }
1343 }
1344
1345
1346 /* This has to be a macro to enable full compiler optimization with xlC (and probably others too) */
1347 #define DO_BSPLINE(order)                            \
1348     for (ithx = 0; (ithx < order); ithx++)                    \
1349     {                                                    \
1350         index_x = (i0+ithx)*pny*pnz;                     \
1351         valx    = coefficient*thx[ithx];                          \
1352                                                      \
1353         for (ithy = 0; (ithy < order); ithy++)                \
1354         {                                                \
1355             valxy    = valx*thy[ithy];                   \
1356             index_xy = index_x+(j0+ithy)*pnz;            \
1357                                                      \
1358             for (ithz = 0; (ithz < order); ithz++)            \
1359             {                                            \
1360                 index_xyz        = index_xy+(k0+ithz);   \
1361                 grid[index_xyz] += valxy*thz[ithz];      \
1362             }                                            \
1363         }                                                \
1364     }
1365
1366
1367 static void spread_coefficients_bsplines_thread(pmegrid_t                    *pmegrid,
1368                                                 pme_atomcomm_t               *atc,
1369                                                 splinedata_t                 *spline,
1370                                                 pme_spline_work_t gmx_unused *work)
1371 {
1372
1373     /* spread coefficients from home atoms to local grid */
1374     real          *grid;
1375     pme_overlap_t *ol;
1376     int            b, i, nn, n, ithx, ithy, ithz, i0, j0, k0;
1377     int       *    idxptr;
1378     int            order, norder, index_x, index_xy, index_xyz;
1379     real           valx, valxy, coefficient;
1380     real          *thx, *thy, *thz;
1381     int            localsize, bndsize;
1382     int            pnx, pny, pnz, ndatatot;
1383     int            offx, offy, offz;
1384
1385 #if defined PME_SIMD4_SPREAD_GATHER && !defined PME_SIMD4_UNALIGNED
1386     real           thz_buffer[GMX_SIMD4_WIDTH*3], *thz_aligned;
1387
1388     thz_aligned = gmx_simd4_align_r(thz_buffer);
1389 #endif
1390
1391     pnx = pmegrid->s[XX];
1392     pny = pmegrid->s[YY];
1393     pnz = pmegrid->s[ZZ];
1394
1395     offx = pmegrid->offset[XX];
1396     offy = pmegrid->offset[YY];
1397     offz = pmegrid->offset[ZZ];
1398
1399     ndatatot = pnx*pny*pnz;
1400     grid     = pmegrid->grid;
1401     for (i = 0; i < ndatatot; i++)
1402     {
1403         grid[i] = 0;
1404     }
1405
1406     order = pmegrid->order;
1407
1408     for (nn = 0; nn < spline->n; nn++)
1409     {
1410         n           = spline->ind[nn];
1411         coefficient = atc->coefficient[n];
1412
1413         if (coefficient != 0)
1414         {
1415             idxptr = atc->idx[n];
1416             norder = nn*order;
1417
1418             i0   = idxptr[XX] - offx;
1419             j0   = idxptr[YY] - offy;
1420             k0   = idxptr[ZZ] - offz;
1421
1422             thx = spline->theta[XX] + norder;
1423             thy = spline->theta[YY] + norder;
1424             thz = spline->theta[ZZ] + norder;
1425
1426             switch (order)
1427             {
1428                 case 4:
1429 #ifdef PME_SIMD4_SPREAD_GATHER
1430 #ifdef PME_SIMD4_UNALIGNED
1431 #define PME_SPREAD_SIMD4_ORDER4
1432 #else
1433 #define PME_SPREAD_SIMD4_ALIGNED
1434 #define PME_ORDER 4
1435 #endif
1436 #include "pme_simd4.h"
1437 #else
1438                     DO_BSPLINE(4);
1439 #endif
1440                     break;
1441                 case 5:
1442 #ifdef PME_SIMD4_SPREAD_GATHER
1443 #define PME_SPREAD_SIMD4_ALIGNED
1444 #define PME_ORDER 5
1445 #include "pme_simd4.h"
1446 #else
1447                     DO_BSPLINE(5);
1448 #endif
1449                     break;
1450                 default:
1451                     DO_BSPLINE(order);
1452                     break;
1453             }
1454         }
1455     }
1456 }
1457
1458 static void set_grid_alignment(int gmx_unused *pmegrid_nz, int gmx_unused pme_order)
1459 {
1460 #ifdef PME_SIMD4_SPREAD_GATHER
1461     if (pme_order == 5
1462 #ifndef PME_SIMD4_UNALIGNED
1463         || pme_order == 4
1464 #endif
1465         )
1466     {
1467         /* Round nz up to a multiple of 4 to ensure alignment */
1468         *pmegrid_nz = ((*pmegrid_nz + 3) & ~3);
1469     }
1470 #endif
1471 }
1472
1473 static void set_gridsize_alignment(int gmx_unused *gridsize, int gmx_unused pme_order)
1474 {
1475 #ifdef PME_SIMD4_SPREAD_GATHER
1476 #ifndef PME_SIMD4_UNALIGNED
1477     if (pme_order == 4)
1478     {
1479         /* Add extra elements to ensured aligned operations do not go
1480          * beyond the allocated grid size.
1481          * Note that for pme_order=5, the pme grid z-size alignment
1482          * ensures that we will not go beyond the grid size.
1483          */
1484         *gridsize += 4;
1485     }
1486 #endif
1487 #endif
1488 }
1489
1490 static void pmegrid_init(pmegrid_t *grid,
1491                          int cx, int cy, int cz,
1492                          int x0, int y0, int z0,
1493                          int x1, int y1, int z1,
1494                          gmx_bool set_alignment,
1495                          int pme_order,
1496                          real *ptr)
1497 {
1498     int nz, gridsize;
1499
1500     grid->ci[XX]     = cx;
1501     grid->ci[YY]     = cy;
1502     grid->ci[ZZ]     = cz;
1503     grid->offset[XX] = x0;
1504     grid->offset[YY] = y0;
1505     grid->offset[ZZ] = z0;
1506     grid->n[XX]      = x1 - x0 + pme_order - 1;
1507     grid->n[YY]      = y1 - y0 + pme_order - 1;
1508     grid->n[ZZ]      = z1 - z0 + pme_order - 1;
1509     copy_ivec(grid->n, grid->s);
1510
1511     nz = grid->s[ZZ];
1512     set_grid_alignment(&nz, pme_order);
1513     if (set_alignment)
1514     {
1515         grid->s[ZZ] = nz;
1516     }
1517     else if (nz != grid->s[ZZ])
1518     {
1519         gmx_incons("pmegrid_init call with an unaligned z size");
1520     }
1521
1522     grid->order = pme_order;
1523     if (ptr == NULL)
1524     {
1525         gridsize = grid->s[XX]*grid->s[YY]*grid->s[ZZ];
1526         set_gridsize_alignment(&gridsize, pme_order);
1527         snew_aligned(grid->grid, gridsize, SIMD4_ALIGNMENT);
1528     }
1529     else
1530     {
1531         grid->grid = ptr;
1532     }
1533 }
1534
1535 static int div_round_up(int enumerator, int denominator)
1536 {
1537     return (enumerator + denominator - 1)/denominator;
1538 }
1539
1540 static void make_subgrid_division(const ivec n, int ovl, int nthread,
1541                                   ivec nsub)
1542 {
1543     int gsize_opt, gsize;
1544     int nsx, nsy, nsz;
1545     char *env;
1546
1547     gsize_opt = -1;
1548     for (nsx = 1; nsx <= nthread; nsx++)
1549     {
1550         if (nthread % nsx == 0)
1551         {
1552             for (nsy = 1; nsy <= nthread; nsy++)
1553             {
1554                 if (nsx*nsy <= nthread && nthread % (nsx*nsy) == 0)
1555                 {
1556                     nsz = nthread/(nsx*nsy);
1557
1558                     /* Determine the number of grid points per thread */
1559                     gsize =
1560                         (div_round_up(n[XX], nsx) + ovl)*
1561                         (div_round_up(n[YY], nsy) + ovl)*
1562                         (div_round_up(n[ZZ], nsz) + ovl);
1563
1564                     /* Minimize the number of grids points per thread
1565                      * and, secondarily, the number of cuts in minor dimensions.
1566                      */
1567                     if (gsize_opt == -1 ||
1568                         gsize < gsize_opt ||
1569                         (gsize == gsize_opt &&
1570                          (nsz < nsub[ZZ] || (nsz == nsub[ZZ] && nsy < nsub[YY]))))
1571                     {
1572                         nsub[XX]  = nsx;
1573                         nsub[YY]  = nsy;
1574                         nsub[ZZ]  = nsz;
1575                         gsize_opt = gsize;
1576                     }
1577                 }
1578             }
1579         }
1580     }
1581
1582     env = getenv("GMX_PME_THREAD_DIVISION");
1583     if (env != NULL)
1584     {
1585         sscanf(env, "%d %d %d", &nsub[XX], &nsub[YY], &nsub[ZZ]);
1586     }
1587
1588     if (nsub[XX]*nsub[YY]*nsub[ZZ] != nthread)
1589     {
1590         gmx_fatal(FARGS, "PME grid thread division (%d x %d x %d) does not match the total number of threads (%d)", nsub[XX], nsub[YY], nsub[ZZ], nthread);
1591     }
1592 }
1593
1594 static void pmegrids_init(pmegrids_t *grids,
1595                           int nx, int ny, int nz, int nz_base,
1596                           int pme_order,
1597                           gmx_bool bUseThreads,
1598                           int nthread,
1599                           int overlap_x,
1600                           int overlap_y)
1601 {
1602     ivec n, n_base, g0, g1;
1603     int t, x, y, z, d, i, tfac;
1604     int max_comm_lines = -1;
1605
1606     n[XX] = nx - (pme_order - 1);
1607     n[YY] = ny - (pme_order - 1);
1608     n[ZZ] = nz - (pme_order - 1);
1609
1610     copy_ivec(n, n_base);
1611     n_base[ZZ] = nz_base;
1612
1613     pmegrid_init(&grids->grid, 0, 0, 0, 0, 0, 0, n[XX], n[YY], n[ZZ], FALSE, pme_order,
1614                  NULL);
1615
1616     grids->nthread = nthread;
1617
1618     make_subgrid_division(n_base, pme_order-1, grids->nthread, grids->nc);
1619
1620     if (bUseThreads)
1621     {
1622         ivec nst;
1623         int gridsize;
1624
1625         for (d = 0; d < DIM; d++)
1626         {
1627             nst[d] = div_round_up(n[d], grids->nc[d]) + pme_order - 1;
1628         }
1629         set_grid_alignment(&nst[ZZ], pme_order);
1630
1631         if (debug)
1632         {
1633             fprintf(debug, "pmegrid thread local division: %d x %d x %d\n",
1634                     grids->nc[XX], grids->nc[YY], grids->nc[ZZ]);
1635             fprintf(debug, "pmegrid %d %d %d max thread pmegrid %d %d %d\n",
1636                     nx, ny, nz,
1637                     nst[XX], nst[YY], nst[ZZ]);
1638         }
1639
1640         snew(grids->grid_th, grids->nthread);
1641         t        = 0;
1642         gridsize = nst[XX]*nst[YY]*nst[ZZ];
1643         set_gridsize_alignment(&gridsize, pme_order);
1644         snew_aligned(grids->grid_all,
1645                      grids->nthread*gridsize+(grids->nthread+1)*GMX_CACHE_SEP,
1646                      SIMD4_ALIGNMENT);
1647
1648         for (x = 0; x < grids->nc[XX]; x++)
1649         {
1650             for (y = 0; y < grids->nc[YY]; y++)
1651             {
1652                 for (z = 0; z < grids->nc[ZZ]; z++)
1653                 {
1654                     pmegrid_init(&grids->grid_th[t],
1655                                  x, y, z,
1656                                  (n[XX]*(x  ))/grids->nc[XX],
1657                                  (n[YY]*(y  ))/grids->nc[YY],
1658                                  (n[ZZ]*(z  ))/grids->nc[ZZ],
1659                                  (n[XX]*(x+1))/grids->nc[XX],
1660                                  (n[YY]*(y+1))/grids->nc[YY],
1661                                  (n[ZZ]*(z+1))/grids->nc[ZZ],
1662                                  TRUE,
1663                                  pme_order,
1664                                  grids->grid_all+GMX_CACHE_SEP+t*(gridsize+GMX_CACHE_SEP));
1665                     t++;
1666                 }
1667             }
1668         }
1669     }
1670     else
1671     {
1672         grids->grid_th = NULL;
1673     }
1674
1675     snew(grids->g2t, DIM);
1676     tfac = 1;
1677     for (d = DIM-1; d >= 0; d--)
1678     {
1679         snew(grids->g2t[d], n[d]);
1680         t = 0;
1681         for (i = 0; i < n[d]; i++)
1682         {
1683             /* The second check should match the parameters
1684              * of the pmegrid_init call above.
1685              */
1686             while (t + 1 < grids->nc[d] && i >= (n[d]*(t+1))/grids->nc[d])
1687             {
1688                 t++;
1689             }
1690             grids->g2t[d][i] = t*tfac;
1691         }
1692
1693         tfac *= grids->nc[d];
1694
1695         switch (d)
1696         {
1697             case XX: max_comm_lines = overlap_x;     break;
1698             case YY: max_comm_lines = overlap_y;     break;
1699             case ZZ: max_comm_lines = pme_order - 1; break;
1700         }
1701         grids->nthread_comm[d] = 0;
1702         while ((n[d]*grids->nthread_comm[d])/grids->nc[d] < max_comm_lines &&
1703                grids->nthread_comm[d] < grids->nc[d])
1704         {
1705             grids->nthread_comm[d]++;
1706         }
1707         if (debug != NULL)
1708         {
1709             fprintf(debug, "pmegrid thread grid communication range in %c: %d\n",
1710                     'x'+d, grids->nthread_comm[d]);
1711         }
1712         /* It should be possible to make grids->nthread_comm[d]==grids->nc[d]
1713          * work, but this is not a problematic restriction.
1714          */
1715         if (grids->nc[d] > 1 && grids->nthread_comm[d] > grids->nc[d])
1716         {
1717             gmx_fatal(FARGS, "Too many threads for PME (%d) compared to the number of grid lines, reduce the number of threads doing PME", grids->nthread);
1718         }
1719     }
1720 }
1721
1722
1723 static void pmegrids_destroy(pmegrids_t *grids)
1724 {
1725     int t;
1726
1727     if (grids->grid.grid != NULL)
1728     {
1729         sfree(grids->grid.grid);
1730
1731         if (grids->nthread > 0)
1732         {
1733             for (t = 0; t < grids->nthread; t++)
1734             {
1735                 sfree(grids->grid_th[t].grid);
1736             }
1737             sfree(grids->grid_th);
1738         }
1739     }
1740 }
1741
1742
1743 static void realloc_work(pme_work_t *work, int nkx)
1744 {
1745     int simd_width;
1746
1747     if (nkx > work->nalloc)
1748     {
1749         work->nalloc = nkx;
1750         srenew(work->mhx, work->nalloc);
1751         srenew(work->mhy, work->nalloc);
1752         srenew(work->mhz, work->nalloc);
1753         srenew(work->m2, work->nalloc);
1754         /* Allocate an aligned pointer for SIMD operations, including extra
1755          * elements at the end for padding.
1756          */
1757 #ifdef PME_SIMD_SOLVE
1758         simd_width = GMX_SIMD_REAL_WIDTH;
1759 #else
1760         /* We can use any alignment, apart from 0, so we use 4 */
1761         simd_width = 4;
1762 #endif
1763         sfree_aligned(work->denom);
1764         sfree_aligned(work->tmp1);
1765         sfree_aligned(work->tmp2);
1766         sfree_aligned(work->eterm);
1767         snew_aligned(work->denom, work->nalloc+simd_width, simd_width*sizeof(real));
1768         snew_aligned(work->tmp1,  work->nalloc+simd_width, simd_width*sizeof(real));
1769         snew_aligned(work->tmp2,  work->nalloc+simd_width, simd_width*sizeof(real));
1770         snew_aligned(work->eterm, work->nalloc+simd_width, simd_width*sizeof(real));
1771         srenew(work->m2inv, work->nalloc);
1772     }
1773 }
1774
1775
1776 static void free_work(pme_work_t *work)
1777 {
1778     sfree(work->mhx);
1779     sfree(work->mhy);
1780     sfree(work->mhz);
1781     sfree(work->m2);
1782     sfree_aligned(work->denom);
1783     sfree_aligned(work->tmp1);
1784     sfree_aligned(work->tmp2);
1785     sfree_aligned(work->eterm);
1786     sfree(work->m2inv);
1787 }
1788
1789
1790 #if defined PME_SIMD_SOLVE
1791 /* Calculate exponentials through SIMD */
1792 gmx_inline static void calc_exponentials_q(int gmx_unused start, int end, real f, real *d_aligned, real *r_aligned, real *e_aligned)
1793 {
1794     {
1795         const gmx_simd_real_t two = gmx_simd_set1_r(2.0);
1796         gmx_simd_real_t f_simd;
1797         gmx_simd_real_t lu;
1798         gmx_simd_real_t tmp_d1, d_inv, tmp_r, tmp_e;
1799         int kx;
1800         f_simd = gmx_simd_set1_r(f);
1801         /* We only need to calculate from start. But since start is 0 or 1
1802          * and we want to use aligned loads/stores, we always start from 0.
1803          */
1804         for (kx = 0; kx < end; kx += GMX_SIMD_REAL_WIDTH)
1805         {
1806             tmp_d1   = gmx_simd_load_r(d_aligned+kx);
1807             d_inv    = gmx_simd_inv_r(tmp_d1);
1808             tmp_r    = gmx_simd_load_r(r_aligned+kx);
1809             tmp_r    = gmx_simd_exp_r(tmp_r);
1810             tmp_e    = gmx_simd_mul_r(f_simd, d_inv);
1811             tmp_e    = gmx_simd_mul_r(tmp_e, tmp_r);
1812             gmx_simd_store_r(e_aligned+kx, tmp_e);
1813         }
1814     }
1815 }
1816 #else
1817 gmx_inline static void calc_exponentials_q(int start, int end, real f, real *d, real *r, real *e)
1818 {
1819     int kx;
1820     for (kx = start; kx < end; kx++)
1821     {
1822         d[kx] = 1.0/d[kx];
1823     }
1824     for (kx = start; kx < end; kx++)
1825     {
1826         r[kx] = exp(r[kx]);
1827     }
1828     for (kx = start; kx < end; kx++)
1829     {
1830         e[kx] = f*r[kx]*d[kx];
1831     }
1832 }
1833 #endif
1834
1835 #if defined PME_SIMD_SOLVE
1836 /* Calculate exponentials through SIMD */
1837 gmx_inline static void calc_exponentials_lj(int gmx_unused start, int end, real *r_aligned, real *factor_aligned, real *d_aligned)
1838 {
1839     gmx_simd_real_t tmp_r, tmp_d, tmp_fac, d_inv, tmp_mk;
1840     const gmx_simd_real_t sqr_PI = gmx_simd_sqrt_r(gmx_simd_set1_r(M_PI));
1841     int kx;
1842     for (kx = 0; kx < end; kx += GMX_SIMD_REAL_WIDTH)
1843     {
1844         /* We only need to calculate from start. But since start is 0 or 1
1845          * and we want to use aligned loads/stores, we always start from 0.
1846          */
1847         tmp_d = gmx_simd_load_r(d_aligned+kx);
1848         d_inv = gmx_simd_inv_r(tmp_d);
1849         gmx_simd_store_r(d_aligned+kx, d_inv);
1850         tmp_r = gmx_simd_load_r(r_aligned+kx);
1851         tmp_r = gmx_simd_exp_r(tmp_r);
1852         gmx_simd_store_r(r_aligned+kx, tmp_r);
1853         tmp_mk  = gmx_simd_load_r(factor_aligned+kx);
1854         tmp_fac = gmx_simd_mul_r(sqr_PI, gmx_simd_mul_r(tmp_mk, gmx_simd_erfc_r(tmp_mk)));
1855         gmx_simd_store_r(factor_aligned+kx, tmp_fac);
1856     }
1857 }
1858 #else
1859 gmx_inline static void calc_exponentials_lj(int start, int end, real *r, real *tmp2, real *d)
1860 {
1861     int kx;
1862     real mk;
1863     for (kx = start; kx < end; kx++)
1864     {
1865         d[kx] = 1.0/d[kx];
1866     }
1867
1868     for (kx = start; kx < end; kx++)
1869     {
1870         r[kx] = exp(r[kx]);
1871     }
1872
1873     for (kx = start; kx < end; kx++)
1874     {
1875         mk       = tmp2[kx];
1876         tmp2[kx] = sqrt(M_PI)*mk*gmx_erfc(mk);
1877     }
1878 }
1879 #endif
1880
1881 static int solve_pme_yzx(gmx_pme_t pme, t_complex *grid,
1882                          real ewaldcoeff, real vol,
1883                          gmx_bool bEnerVir,
1884                          int nthread, int thread)
1885 {
1886     /* do recip sum over local cells in grid */
1887     /* y major, z middle, x minor or continuous */
1888     t_complex *p0;
1889     int     kx, ky, kz, maxkx, maxky, maxkz;
1890     int     nx, ny, nz, iyz0, iyz1, iyz, iy, iz, kxstart, kxend;
1891     real    mx, my, mz;
1892     real    factor = M_PI*M_PI/(ewaldcoeff*ewaldcoeff);
1893     real    ets2, struct2, vfactor, ets2vf;
1894     real    d1, d2, energy = 0;
1895     real    by, bz;
1896     real    virxx = 0, virxy = 0, virxz = 0, viryy = 0, viryz = 0, virzz = 0;
1897     real    rxx, ryx, ryy, rzx, rzy, rzz;
1898     pme_work_t *work;
1899     real    *mhx, *mhy, *mhz, *m2, *denom, *tmp1, *eterm, *m2inv;
1900     real    mhxk, mhyk, mhzk, m2k;
1901     real    corner_fac;
1902     ivec    complex_order;
1903     ivec    local_ndata, local_offset, local_size;
1904     real    elfac;
1905
1906     elfac = ONE_4PI_EPS0/pme->epsilon_r;
1907
1908     nx = pme->nkx;
1909     ny = pme->nky;
1910     nz = pme->nkz;
1911
1912     /* Dimensions should be identical for A/B grid, so we just use A here */
1913     gmx_parallel_3dfft_complex_limits(pme->pfft_setup[PME_GRID_QA],
1914                                       complex_order,
1915                                       local_ndata,
1916                                       local_offset,
1917                                       local_size);
1918
1919     rxx = pme->recipbox[XX][XX];
1920     ryx = pme->recipbox[YY][XX];
1921     ryy = pme->recipbox[YY][YY];
1922     rzx = pme->recipbox[ZZ][XX];
1923     rzy = pme->recipbox[ZZ][YY];
1924     rzz = pme->recipbox[ZZ][ZZ];
1925
1926     maxkx = (nx+1)/2;
1927     maxky = (ny+1)/2;
1928     maxkz = nz/2+1;
1929
1930     work  = &pme->work[thread];
1931     mhx   = work->mhx;
1932     mhy   = work->mhy;
1933     mhz   = work->mhz;
1934     m2    = work->m2;
1935     denom = work->denom;
1936     tmp1  = work->tmp1;
1937     eterm = work->eterm;
1938     m2inv = work->m2inv;
1939
1940     iyz0 = local_ndata[YY]*local_ndata[ZZ]* thread   /nthread;
1941     iyz1 = local_ndata[YY]*local_ndata[ZZ]*(thread+1)/nthread;
1942
1943     for (iyz = iyz0; iyz < iyz1; iyz++)
1944     {
1945         iy = iyz/local_ndata[ZZ];
1946         iz = iyz - iy*local_ndata[ZZ];
1947
1948         ky = iy + local_offset[YY];
1949
1950         if (ky < maxky)
1951         {
1952             my = ky;
1953         }
1954         else
1955         {
1956             my = (ky - ny);
1957         }
1958
1959         by = M_PI*vol*pme->bsp_mod[YY][ky];
1960
1961         kz = iz + local_offset[ZZ];
1962
1963         mz = kz;
1964
1965         bz = pme->bsp_mod[ZZ][kz];
1966
1967         /* 0.5 correction for corner points */
1968         corner_fac = 1;
1969         if (kz == 0 || kz == (nz+1)/2)
1970         {
1971             corner_fac = 0.5;
1972         }
1973
1974         p0 = grid + iy*local_size[ZZ]*local_size[XX] + iz*local_size[XX];
1975
1976         /* We should skip the k-space point (0,0,0) */
1977         /* Note that since here x is the minor index, local_offset[XX]=0 */
1978         if (local_offset[XX] > 0 || ky > 0 || kz > 0)
1979         {
1980             kxstart = local_offset[XX];
1981         }
1982         else
1983         {
1984             kxstart = local_offset[XX] + 1;
1985             p0++;
1986         }
1987         kxend = local_offset[XX] + local_ndata[XX];
1988
1989         if (bEnerVir)
1990         {
1991             /* More expensive inner loop, especially because of the storage
1992              * of the mh elements in array's.
1993              * Because x is the minor grid index, all mh elements
1994              * depend on kx for triclinic unit cells.
1995              */
1996
1997             /* Two explicit loops to avoid a conditional inside the loop */
1998             for (kx = kxstart; kx < maxkx; kx++)
1999             {
2000                 mx = kx;
2001
2002                 mhxk      = mx * rxx;
2003                 mhyk      = mx * ryx + my * ryy;
2004                 mhzk      = mx * rzx + my * rzy + mz * rzz;
2005                 m2k       = mhxk*mhxk + mhyk*mhyk + mhzk*mhzk;
2006                 mhx[kx]   = mhxk;
2007                 mhy[kx]   = mhyk;
2008                 mhz[kx]   = mhzk;
2009                 m2[kx]    = m2k;
2010                 denom[kx] = m2k*bz*by*pme->bsp_mod[XX][kx];
2011                 tmp1[kx]  = -factor*m2k;
2012             }
2013
2014             for (kx = maxkx; kx < kxend; kx++)
2015             {
2016                 mx = (kx - nx);
2017
2018                 mhxk      = mx * rxx;
2019                 mhyk      = mx * ryx + my * ryy;
2020                 mhzk      = mx * rzx + my * rzy + mz * rzz;
2021                 m2k       = mhxk*mhxk + mhyk*mhyk + mhzk*mhzk;
2022                 mhx[kx]   = mhxk;
2023                 mhy[kx]   = mhyk;
2024                 mhz[kx]   = mhzk;
2025                 m2[kx]    = m2k;
2026                 denom[kx] = m2k*bz*by*pme->bsp_mod[XX][kx];
2027                 tmp1[kx]  = -factor*m2k;
2028             }
2029
2030             for (kx = kxstart; kx < kxend; kx++)
2031             {
2032                 m2inv[kx] = 1.0/m2[kx];
2033             }
2034
2035             calc_exponentials_q(kxstart, kxend, elfac, denom, tmp1, eterm);
2036
2037             for (kx = kxstart; kx < kxend; kx++, p0++)
2038             {
2039                 d1      = p0->re;
2040                 d2      = p0->im;
2041
2042                 p0->re  = d1*eterm[kx];
2043                 p0->im  = d2*eterm[kx];
2044
2045                 struct2 = 2.0*(d1*d1+d2*d2);
2046
2047                 tmp1[kx] = eterm[kx]*struct2;
2048             }
2049
2050             for (kx = kxstart; kx < kxend; kx++)
2051             {
2052                 ets2     = corner_fac*tmp1[kx];
2053                 vfactor  = (factor*m2[kx] + 1.0)*2.0*m2inv[kx];
2054                 energy  += ets2;
2055
2056                 ets2vf   = ets2*vfactor;
2057                 virxx   += ets2vf*mhx[kx]*mhx[kx] - ets2;
2058                 virxy   += ets2vf*mhx[kx]*mhy[kx];
2059                 virxz   += ets2vf*mhx[kx]*mhz[kx];
2060                 viryy   += ets2vf*mhy[kx]*mhy[kx] - ets2;
2061                 viryz   += ets2vf*mhy[kx]*mhz[kx];
2062                 virzz   += ets2vf*mhz[kx]*mhz[kx] - ets2;
2063             }
2064         }
2065         else
2066         {
2067             /* We don't need to calculate the energy and the virial.
2068              * In this case the triclinic overhead is small.
2069              */
2070
2071             /* Two explicit loops to avoid a conditional inside the loop */
2072
2073             for (kx = kxstart; kx < maxkx; kx++)
2074             {
2075                 mx = kx;
2076
2077                 mhxk      = mx * rxx;
2078                 mhyk      = mx * ryx + my * ryy;
2079                 mhzk      = mx * rzx + my * rzy + mz * rzz;
2080                 m2k       = mhxk*mhxk + mhyk*mhyk + mhzk*mhzk;
2081                 denom[kx] = m2k*bz*by*pme->bsp_mod[XX][kx];
2082                 tmp1[kx]  = -factor*m2k;
2083             }
2084
2085             for (kx = maxkx; kx < kxend; kx++)
2086             {
2087                 mx = (kx - nx);
2088
2089                 mhxk      = mx * rxx;
2090                 mhyk      = mx * ryx + my * ryy;
2091                 mhzk      = mx * rzx + my * rzy + mz * rzz;
2092                 m2k       = mhxk*mhxk + mhyk*mhyk + mhzk*mhzk;
2093                 denom[kx] = m2k*bz*by*pme->bsp_mod[XX][kx];
2094                 tmp1[kx]  = -factor*m2k;
2095             }
2096
2097             calc_exponentials_q(kxstart, kxend, elfac, denom, tmp1, eterm);
2098
2099             for (kx = kxstart; kx < kxend; kx++, p0++)
2100             {
2101                 d1      = p0->re;
2102                 d2      = p0->im;
2103
2104                 p0->re  = d1*eterm[kx];
2105                 p0->im  = d2*eterm[kx];
2106             }
2107         }
2108     }
2109
2110     if (bEnerVir)
2111     {
2112         /* Update virial with local values.
2113          * The virial is symmetric by definition.
2114          * this virial seems ok for isotropic scaling, but I'm
2115          * experiencing problems on semiisotropic membranes.
2116          * IS THAT COMMENT STILL VALID??? (DvdS, 2001/02/07).
2117          */
2118         work->vir_q[XX][XX] = 0.25*virxx;
2119         work->vir_q[YY][YY] = 0.25*viryy;
2120         work->vir_q[ZZ][ZZ] = 0.25*virzz;
2121         work->vir_q[XX][YY] = work->vir_q[YY][XX] = 0.25*virxy;
2122         work->vir_q[XX][ZZ] = work->vir_q[ZZ][XX] = 0.25*virxz;
2123         work->vir_q[YY][ZZ] = work->vir_q[ZZ][YY] = 0.25*viryz;
2124
2125         /* This energy should be corrected for a charged system */
2126         work->energy_q = 0.5*energy;
2127     }
2128
2129     /* Return the loop count */
2130     return local_ndata[YY]*local_ndata[XX];
2131 }
2132
2133 static int solve_pme_lj_yzx(gmx_pme_t pme, t_complex **grid, gmx_bool bLB,
2134                             real ewaldcoeff, real vol,
2135                             gmx_bool bEnerVir, int nthread, int thread)
2136 {
2137     /* do recip sum over local cells in grid */
2138     /* y major, z middle, x minor or continuous */
2139     int     ig, gcount;
2140     int     kx, ky, kz, maxkx, maxky, maxkz;
2141     int     nx, ny, nz, iy, iyz0, iyz1, iyz, iz, kxstart, kxend;
2142     real    mx, my, mz;
2143     real    factor = M_PI*M_PI/(ewaldcoeff*ewaldcoeff);
2144     real    ets2, ets2vf;
2145     real    eterm, vterm, d1, d2, energy = 0;
2146     real    by, bz;
2147     real    virxx = 0, virxy = 0, virxz = 0, viryy = 0, viryz = 0, virzz = 0;
2148     real    rxx, ryx, ryy, rzx, rzy, rzz;
2149     real    *mhx, *mhy, *mhz, *m2, *denom, *tmp1, *tmp2;
2150     real    mhxk, mhyk, mhzk, m2k;
2151     real    mk;
2152     pme_work_t *work;
2153     real    corner_fac;
2154     ivec    complex_order;
2155     ivec    local_ndata, local_offset, local_size;
2156     nx = pme->nkx;
2157     ny = pme->nky;
2158     nz = pme->nkz;
2159
2160     /* Dimensions should be identical for A/B grid, so we just use A here */
2161     gmx_parallel_3dfft_complex_limits(pme->pfft_setup[PME_GRID_C6A],
2162                                       complex_order,
2163                                       local_ndata,
2164                                       local_offset,
2165                                       local_size);
2166     rxx = pme->recipbox[XX][XX];
2167     ryx = pme->recipbox[YY][XX];
2168     ryy = pme->recipbox[YY][YY];
2169     rzx = pme->recipbox[ZZ][XX];
2170     rzy = pme->recipbox[ZZ][YY];
2171     rzz = pme->recipbox[ZZ][ZZ];
2172
2173     maxkx = (nx+1)/2;
2174     maxky = (ny+1)/2;
2175     maxkz = nz/2+1;
2176
2177     work  = &pme->work[thread];
2178     mhx   = work->mhx;
2179     mhy   = work->mhy;
2180     mhz   = work->mhz;
2181     m2    = work->m2;
2182     denom = work->denom;
2183     tmp1  = work->tmp1;
2184     tmp2  = work->tmp2;
2185
2186     iyz0 = local_ndata[YY]*local_ndata[ZZ]* thread   /nthread;
2187     iyz1 = local_ndata[YY]*local_ndata[ZZ]*(thread+1)/nthread;
2188
2189     for (iyz = iyz0; iyz < iyz1; iyz++)
2190     {
2191         iy = iyz/local_ndata[ZZ];
2192         iz = iyz - iy*local_ndata[ZZ];
2193
2194         ky = iy + local_offset[YY];
2195
2196         if (ky < maxky)
2197         {
2198             my = ky;
2199         }
2200         else
2201         {
2202             my = (ky - ny);
2203         }
2204
2205         by = 3.0*vol*pme->bsp_mod[YY][ky]
2206             / (M_PI*sqrt(M_PI)*ewaldcoeff*ewaldcoeff*ewaldcoeff);
2207
2208         kz = iz + local_offset[ZZ];
2209
2210         mz = kz;
2211
2212         bz = pme->bsp_mod[ZZ][kz];
2213
2214         /* 0.5 correction for corner points */
2215         corner_fac = 1;
2216         if (kz == 0 || kz == (nz+1)/2)
2217         {
2218             corner_fac = 0.5;
2219         }
2220
2221         kxstart = local_offset[XX];
2222         kxend   = local_offset[XX] + local_ndata[XX];
2223         if (bEnerVir)
2224         {
2225             /* More expensive inner loop, especially because of the
2226              * storage of the mh elements in array's.  Because x is the
2227              * minor grid index, all mh elements depend on kx for
2228              * triclinic unit cells.
2229              */
2230
2231             /* Two explicit loops to avoid a conditional inside the loop */
2232             for (kx = kxstart; kx < maxkx; kx++)
2233             {
2234                 mx = kx;
2235
2236                 mhxk      = mx * rxx;
2237                 mhyk      = mx * ryx + my * ryy;
2238                 mhzk      = mx * rzx + my * rzy + mz * rzz;
2239                 m2k       = mhxk*mhxk + mhyk*mhyk + mhzk*mhzk;
2240                 mhx[kx]   = mhxk;
2241                 mhy[kx]   = mhyk;
2242                 mhz[kx]   = mhzk;
2243                 m2[kx]    = m2k;
2244                 denom[kx] = bz*by*pme->bsp_mod[XX][kx];
2245                 tmp1[kx]  = -factor*m2k;
2246                 tmp2[kx]  = sqrt(factor*m2k);
2247             }
2248
2249             for (kx = maxkx; kx < kxend; kx++)
2250             {
2251                 mx = (kx - nx);
2252
2253                 mhxk      = mx * rxx;
2254                 mhyk      = mx * ryx + my * ryy;
2255                 mhzk      = mx * rzx + my * rzy + mz * rzz;
2256                 m2k       = mhxk*mhxk + mhyk*mhyk + mhzk*mhzk;
2257                 mhx[kx]   = mhxk;
2258                 mhy[kx]   = mhyk;
2259                 mhz[kx]   = mhzk;
2260                 m2[kx]    = m2k;
2261                 denom[kx] = bz*by*pme->bsp_mod[XX][kx];
2262                 tmp1[kx]  = -factor*m2k;
2263                 tmp2[kx]  = sqrt(factor*m2k);
2264             }
2265
2266             calc_exponentials_lj(kxstart, kxend, tmp1, tmp2, denom);
2267
2268             for (kx = kxstart; kx < kxend; kx++)
2269             {
2270                 m2k   = factor*m2[kx];
2271                 eterm = -((1.0 - 2.0*m2k)*tmp1[kx]
2272                           + 2.0*m2k*tmp2[kx]);
2273                 vterm    = 3.0*(-tmp1[kx] + tmp2[kx]);
2274                 tmp1[kx] = eterm*denom[kx];
2275                 tmp2[kx] = vterm*denom[kx];
2276             }
2277
2278             if (!bLB)
2279             {
2280                 t_complex *p0;
2281                 real       struct2;
2282
2283                 p0 = grid[0] + iy*local_size[ZZ]*local_size[XX] + iz*local_size[XX];
2284                 for (kx = kxstart; kx < kxend; kx++, p0++)
2285                 {
2286                     d1      = p0->re;
2287                     d2      = p0->im;
2288
2289                     eterm   = tmp1[kx];
2290                     vterm   = tmp2[kx];
2291                     p0->re  = d1*eterm;
2292                     p0->im  = d2*eterm;
2293
2294                     struct2 = 2.0*(d1*d1+d2*d2);
2295
2296                     tmp1[kx] = eterm*struct2;
2297                     tmp2[kx] = vterm*struct2;
2298                 }
2299             }
2300             else
2301             {
2302                 real *struct2 = denom;
2303                 real  str2;
2304
2305                 for (kx = kxstart; kx < kxend; kx++)
2306                 {
2307                     struct2[kx] = 0.0;
2308                 }
2309                 /* Due to symmetry we only need to calculate 4 of the 7 terms */
2310                 for (ig = 0; ig <= 3; ++ig)
2311                 {
2312                     t_complex *p0, *p1;
2313                     real       scale;
2314
2315                     p0    = grid[ig] + iy*local_size[ZZ]*local_size[XX] + iz*local_size[XX];
2316                     p1    = grid[6-ig] + iy*local_size[ZZ]*local_size[XX] + iz*local_size[XX];
2317                     scale = 2.0*lb_scale_factor_symm[ig];
2318                     for (kx = kxstart; kx < kxend; ++kx, ++p0, ++p1)
2319                     {
2320                         struct2[kx] += scale*(p0->re*p1->re + p0->im*p1->im);
2321                     }
2322
2323                 }
2324                 for (ig = 0; ig <= 6; ++ig)
2325                 {
2326                     t_complex *p0;
2327
2328                     p0 = grid[ig] + iy*local_size[ZZ]*local_size[XX] + iz*local_size[XX];
2329                     for (kx = kxstart; kx < kxend; kx++, p0++)
2330                     {
2331                         d1     = p0->re;
2332                         d2     = p0->im;
2333
2334                         eterm  = tmp1[kx];
2335                         p0->re = d1*eterm;
2336                         p0->im = d2*eterm;
2337                     }
2338                 }
2339                 for (kx = kxstart; kx < kxend; kx++)
2340                 {
2341                     eterm    = tmp1[kx];
2342                     vterm    = tmp2[kx];
2343                     str2     = struct2[kx];
2344                     tmp1[kx] = eterm*str2;
2345                     tmp2[kx] = vterm*str2;
2346                 }
2347             }
2348
2349             for (kx = kxstart; kx < kxend; kx++)
2350             {
2351                 ets2     = corner_fac*tmp1[kx];
2352                 vterm    = 2.0*factor*tmp2[kx];
2353                 energy  += ets2;
2354                 ets2vf   = corner_fac*vterm;
2355                 virxx   += ets2vf*mhx[kx]*mhx[kx] - ets2;
2356                 virxy   += ets2vf*mhx[kx]*mhy[kx];
2357                 virxz   += ets2vf*mhx[kx]*mhz[kx];
2358                 viryy   += ets2vf*mhy[kx]*mhy[kx] - ets2;
2359                 viryz   += ets2vf*mhy[kx]*mhz[kx];
2360                 virzz   += ets2vf*mhz[kx]*mhz[kx] - ets2;
2361             }
2362         }
2363         else
2364         {
2365             /* We don't need to calculate the energy and the virial.
2366              *  In this case the triclinic overhead is small.
2367              */
2368
2369             /* Two explicit loops to avoid a conditional inside the loop */
2370
2371             for (kx = kxstart; kx < maxkx; kx++)
2372             {
2373                 mx = kx;
2374
2375                 mhxk      = mx * rxx;
2376                 mhyk      = mx * ryx + my * ryy;
2377                 mhzk      = mx * rzx + my * rzy + mz * rzz;
2378                 m2k       = mhxk*mhxk + mhyk*mhyk + mhzk*mhzk;
2379                 m2[kx]    = m2k;
2380                 denom[kx] = bz*by*pme->bsp_mod[XX][kx];
2381                 tmp1[kx]  = -factor*m2k;
2382                 tmp2[kx]  = sqrt(factor*m2k);
2383             }
2384
2385             for (kx = maxkx; kx < kxend; kx++)
2386             {
2387                 mx = (kx - nx);
2388
2389                 mhxk      = mx * rxx;
2390                 mhyk      = mx * ryx + my * ryy;
2391                 mhzk      = mx * rzx + my * rzy + mz * rzz;
2392                 m2k       = mhxk*mhxk + mhyk*mhyk + mhzk*mhzk;
2393                 m2[kx]    = m2k;
2394                 denom[kx] = bz*by*pme->bsp_mod[XX][kx];
2395                 tmp1[kx]  = -factor*m2k;
2396                 tmp2[kx]  = sqrt(factor*m2k);
2397             }
2398
2399             calc_exponentials_lj(kxstart, kxend, tmp1, tmp2, denom);
2400
2401             for (kx = kxstart; kx < kxend; kx++)
2402             {
2403                 m2k    = factor*m2[kx];
2404                 eterm  = -((1.0 - 2.0*m2k)*tmp1[kx]
2405                            + 2.0*m2k*tmp2[kx]);
2406                 tmp1[kx] = eterm*denom[kx];
2407             }
2408             gcount = (bLB ? 7 : 1);
2409             for (ig = 0; ig < gcount; ++ig)
2410             {
2411                 t_complex *p0;
2412
2413                 p0 = grid[ig] + iy*local_size[ZZ]*local_size[XX] + iz*local_size[XX];
2414                 for (kx = kxstart; kx < kxend; kx++, p0++)
2415                 {
2416                     d1      = p0->re;
2417                     d2      = p0->im;
2418
2419                     eterm   = tmp1[kx];
2420
2421                     p0->re  = d1*eterm;
2422                     p0->im  = d2*eterm;
2423                 }
2424             }
2425         }
2426     }
2427     if (bEnerVir)
2428     {
2429         work->vir_lj[XX][XX] = 0.25*virxx;
2430         work->vir_lj[YY][YY] = 0.25*viryy;
2431         work->vir_lj[ZZ][ZZ] = 0.25*virzz;
2432         work->vir_lj[XX][YY] = work->vir_lj[YY][XX] = 0.25*virxy;
2433         work->vir_lj[XX][ZZ] = work->vir_lj[ZZ][XX] = 0.25*virxz;
2434         work->vir_lj[YY][ZZ] = work->vir_lj[ZZ][YY] = 0.25*viryz;
2435
2436         /* This energy should be corrected for a charged system */
2437         work->energy_lj = 0.5*energy;
2438     }
2439     /* Return the loop count */
2440     return local_ndata[YY]*local_ndata[XX];
2441 }
2442
2443 static void get_pme_ener_vir_q(const gmx_pme_t pme, int nthread,
2444                                real *mesh_energy, matrix vir)
2445 {
2446     /* This function sums output over threads and should therefore
2447      * only be called after thread synchronization.
2448      */
2449     int thread;
2450
2451     *mesh_energy = pme->work[0].energy_q;
2452     copy_mat(pme->work[0].vir_q, vir);
2453
2454     for (thread = 1; thread < nthread; thread++)
2455     {
2456         *mesh_energy += pme->work[thread].energy_q;
2457         m_add(vir, pme->work[thread].vir_q, vir);
2458     }
2459 }
2460
2461 static void get_pme_ener_vir_lj(const gmx_pme_t pme, int nthread,
2462                                 real *mesh_energy, matrix vir)
2463 {
2464     /* This function sums output over threads and should therefore
2465      * only be called after thread synchronization.
2466      */
2467     int thread;
2468
2469     *mesh_energy = pme->work[0].energy_lj;
2470     copy_mat(pme->work[0].vir_lj, vir);
2471
2472     for (thread = 1; thread < nthread; thread++)
2473     {
2474         *mesh_energy += pme->work[thread].energy_lj;
2475         m_add(vir, pme->work[thread].vir_lj, vir);
2476     }
2477 }
2478
2479
2480 #define DO_FSPLINE(order)                      \
2481     for (ithx = 0; (ithx < order); ithx++)              \
2482     {                                              \
2483         index_x = (i0+ithx)*pny*pnz;               \
2484         tx      = thx[ithx];                       \
2485         dx      = dthx[ithx];                      \
2486                                                \
2487         for (ithy = 0; (ithy < order); ithy++)          \
2488         {                                          \
2489             index_xy = index_x+(j0+ithy)*pnz;      \
2490             ty       = thy[ithy];                  \
2491             dy       = dthy[ithy];                 \
2492             fxy1     = fz1 = 0;                    \
2493                                                \
2494             for (ithz = 0; (ithz < order); ithz++)      \
2495             {                                      \
2496                 gval  = grid[index_xy+(k0+ithz)];  \
2497                 fxy1 += thz[ithz]*gval;            \
2498                 fz1  += dthz[ithz]*gval;           \
2499             }                                      \
2500             fx += dx*ty*fxy1;                      \
2501             fy += tx*dy*fxy1;                      \
2502             fz += tx*ty*fz1;                       \
2503         }                                          \
2504     }
2505
2506
2507 static void gather_f_bsplines(gmx_pme_t pme, real *grid,
2508                               gmx_bool bClearF, pme_atomcomm_t *atc,
2509                               splinedata_t *spline,
2510                               real scale)
2511 {
2512     /* sum forces for local particles */
2513     int     nn, n, ithx, ithy, ithz, i0, j0, k0;
2514     int     index_x, index_xy;
2515     int     nx, ny, nz, pnx, pny, pnz;
2516     int *   idxptr;
2517     real    tx, ty, dx, dy, coefficient;
2518     real    fx, fy, fz, gval;
2519     real    fxy1, fz1;
2520     real    *thx, *thy, *thz, *dthx, *dthy, *dthz;
2521     int     norder;
2522     real    rxx, ryx, ryy, rzx, rzy, rzz;
2523     int     order;
2524
2525     pme_spline_work_t *work;
2526
2527 #if defined PME_SIMD4_SPREAD_GATHER && !defined PME_SIMD4_UNALIGNED
2528     real           thz_buffer[GMX_SIMD4_WIDTH*3],  *thz_aligned;
2529     real           dthz_buffer[GMX_SIMD4_WIDTH*3], *dthz_aligned;
2530
2531     thz_aligned  = gmx_simd4_align_r(thz_buffer);
2532     dthz_aligned = gmx_simd4_align_r(dthz_buffer);
2533 #endif
2534
2535     work = pme->spline_work;
2536
2537     order = pme->pme_order;
2538     thx   = spline->theta[XX];
2539     thy   = spline->theta[YY];
2540     thz   = spline->theta[ZZ];
2541     dthx  = spline->dtheta[XX];
2542     dthy  = spline->dtheta[YY];
2543     dthz  = spline->dtheta[ZZ];
2544     nx    = pme->nkx;
2545     ny    = pme->nky;
2546     nz    = pme->nkz;
2547     pnx   = pme->pmegrid_nx;
2548     pny   = pme->pmegrid_ny;
2549     pnz   = pme->pmegrid_nz;
2550
2551     rxx   = pme->recipbox[XX][XX];
2552     ryx   = pme->recipbox[YY][XX];
2553     ryy   = pme->recipbox[YY][YY];
2554     rzx   = pme->recipbox[ZZ][XX];
2555     rzy   = pme->recipbox[ZZ][YY];
2556     rzz   = pme->recipbox[ZZ][ZZ];
2557
2558     for (nn = 0; nn < spline->n; nn++)
2559     {
2560         n           = spline->ind[nn];
2561         coefficient = scale*atc->coefficient[n];
2562
2563         if (bClearF)
2564         {
2565             atc->f[n][XX] = 0;
2566             atc->f[n][YY] = 0;
2567             atc->f[n][ZZ] = 0;
2568         }
2569         if (coefficient != 0)
2570         {
2571             fx     = 0;
2572             fy     = 0;
2573             fz     = 0;
2574             idxptr = atc->idx[n];
2575             norder = nn*order;
2576
2577             i0   = idxptr[XX];
2578             j0   = idxptr[YY];
2579             k0   = idxptr[ZZ];
2580
2581             /* Pointer arithmetic alert, next six statements */
2582             thx  = spline->theta[XX] + norder;
2583             thy  = spline->theta[YY] + norder;
2584             thz  = spline->theta[ZZ] + norder;
2585             dthx = spline->dtheta[XX] + norder;
2586             dthy = spline->dtheta[YY] + norder;
2587             dthz = spline->dtheta[ZZ] + norder;
2588
2589             switch (order)
2590             {
2591                 case 4:
2592 #ifdef PME_SIMD4_SPREAD_GATHER
2593 #ifdef PME_SIMD4_UNALIGNED
2594 #define PME_GATHER_F_SIMD4_ORDER4
2595 #else
2596 #define PME_GATHER_F_SIMD4_ALIGNED
2597 #define PME_ORDER 4
2598 #endif
2599 #include "pme_simd4.h"
2600 #else
2601                     DO_FSPLINE(4);
2602 #endif
2603                     break;
2604                 case 5:
2605 #ifdef PME_SIMD4_SPREAD_GATHER
2606 #define PME_GATHER_F_SIMD4_ALIGNED
2607 #define PME_ORDER 5
2608 #include "pme_simd4.h"
2609 #else
2610                     DO_FSPLINE(5);
2611 #endif
2612                     break;
2613                 default:
2614                     DO_FSPLINE(order);
2615                     break;
2616             }
2617
2618             atc->f[n][XX] += -coefficient*( fx*nx*rxx );
2619             atc->f[n][YY] += -coefficient*( fx*nx*ryx + fy*ny*ryy );
2620             atc->f[n][ZZ] += -coefficient*( fx*nx*rzx + fy*ny*rzy + fz*nz*rzz );
2621         }
2622     }
2623     /* Since the energy and not forces are interpolated
2624      * the net force might not be exactly zero.
2625      * This can be solved by also interpolating F, but
2626      * that comes at a cost.
2627      * A better hack is to remove the net force every
2628      * step, but that must be done at a higher level
2629      * since this routine doesn't see all atoms if running
2630      * in parallel. Don't know how important it is?  EL 990726
2631      */
2632 }
2633
2634
2635 static real gather_energy_bsplines(gmx_pme_t pme, real *grid,
2636                                    pme_atomcomm_t *atc)
2637 {
2638     splinedata_t *spline;
2639     int     n, ithx, ithy, ithz, i0, j0, k0;
2640     int     index_x, index_xy;
2641     int *   idxptr;
2642     real    energy, pot, tx, ty, coefficient, gval;
2643     real    *thx, *thy, *thz;
2644     int     norder;
2645     int     order;
2646
2647     spline = &atc->spline[0];
2648
2649     order = pme->pme_order;
2650
2651     energy = 0;
2652     for (n = 0; (n < atc->n); n++)
2653     {
2654         coefficient      = atc->coefficient[n];
2655
2656         if (coefficient != 0)
2657         {
2658             idxptr = atc->idx[n];
2659             norder = n*order;
2660
2661             i0   = idxptr[XX];
2662             j0   = idxptr[YY];
2663             k0   = idxptr[ZZ];
2664
2665             /* Pointer arithmetic alert, next three statements */
2666             thx  = spline->theta[XX] + norder;
2667             thy  = spline->theta[YY] + norder;
2668             thz  = spline->theta[ZZ] + norder;
2669
2670             pot = 0;
2671             for (ithx = 0; (ithx < order); ithx++)
2672             {
2673                 index_x = (i0+ithx)*pme->pmegrid_ny*pme->pmegrid_nz;
2674                 tx      = thx[ithx];
2675
2676                 for (ithy = 0; (ithy < order); ithy++)
2677                 {
2678                     index_xy = index_x+(j0+ithy)*pme->pmegrid_nz;
2679                     ty       = thy[ithy];
2680
2681                     for (ithz = 0; (ithz < order); ithz++)
2682                     {
2683                         gval  = grid[index_xy+(k0+ithz)];
2684                         pot  += tx*ty*thz[ithz]*gval;
2685                     }
2686
2687                 }
2688             }
2689
2690             energy += pot*coefficient;
2691         }
2692     }
2693
2694     return energy;
2695 }
2696
2697 /* Macro to force loop unrolling by fixing order.
2698  * This gives a significant performance gain.
2699  */
2700 #define CALC_SPLINE(order)                     \
2701     {                                              \
2702         int j, k, l;                                 \
2703         real dr, div;                               \
2704         real data[PME_ORDER_MAX];                  \
2705         real ddata[PME_ORDER_MAX];                 \
2706                                                \
2707         for (j = 0; (j < DIM); j++)                     \
2708         {                                          \
2709             dr  = xptr[j];                         \
2710                                                \
2711             /* dr is relative offset from lower cell limit */ \
2712             data[order-1] = 0;                     \
2713             data[1]       = dr;                          \
2714             data[0]       = 1 - dr;                      \
2715                                                \
2716             for (k = 3; (k < order); k++)               \
2717             {                                      \
2718                 div       = 1.0/(k - 1.0);               \
2719                 data[k-1] = div*dr*data[k-2];      \
2720                 for (l = 1; (l < (k-1)); l++)           \
2721                 {                                  \
2722                     data[k-l-1] = div*((dr+l)*data[k-l-2]+(k-l-dr)* \
2723                                        data[k-l-1]);                \
2724                 }                                  \
2725                 data[0] = div*(1-dr)*data[0];      \
2726             }                                      \
2727             /* differentiate */                    \
2728             ddata[0] = -data[0];                   \
2729             for (k = 1; (k < order); k++)               \
2730             {                                      \
2731                 ddata[k] = data[k-1] - data[k];    \
2732             }                                      \
2733                                                \
2734             div           = 1.0/(order - 1);                 \
2735             data[order-1] = div*dr*data[order-2];  \
2736             for (l = 1; (l < (order-1)); l++)           \
2737             {                                      \
2738                 data[order-l-1] = div*((dr+l)*data[order-l-2]+    \
2739                                        (order-l-dr)*data[order-l-1]); \
2740             }                                      \
2741             data[0] = div*(1 - dr)*data[0];        \
2742                                                \
2743             for (k = 0; k < order; k++)                 \
2744             {                                      \
2745                 theta[j][i*order+k]  = data[k];    \
2746                 dtheta[j][i*order+k] = ddata[k];   \
2747             }                                      \
2748         }                                          \
2749     }
2750
2751 void make_bsplines(splinevec theta, splinevec dtheta, int order,
2752                    rvec fractx[], int nr, int ind[], real coefficient[],
2753                    gmx_bool bDoSplines)
2754 {
2755     /* construct splines for local atoms */
2756     int  i, ii;
2757     real *xptr;
2758
2759     for (i = 0; i < nr; i++)
2760     {
2761         /* With free energy we do not use the coefficient check.
2762          * In most cases this will be more efficient than calling make_bsplines
2763          * twice, since usually more than half the particles have non-zero coefficients.
2764          */
2765         ii = ind[i];
2766         if (bDoSplines || coefficient[ii] != 0.0)
2767         {
2768             xptr = fractx[ii];
2769             switch (order)
2770             {
2771                 case 4:  CALC_SPLINE(4);     break;
2772                 case 5:  CALC_SPLINE(5);     break;
2773                 default: CALC_SPLINE(order); break;
2774             }
2775         }
2776     }
2777 }
2778
2779
2780 void make_dft_mod(real *mod, real *data, int ndata)
2781 {
2782     int i, j;
2783     real sc, ss, arg;
2784
2785     for (i = 0; i < ndata; i++)
2786     {
2787         sc = ss = 0;
2788         for (j = 0; j < ndata; j++)
2789         {
2790             arg = (2.0*M_PI*i*j)/ndata;
2791             sc += data[j]*cos(arg);
2792             ss += data[j]*sin(arg);
2793         }
2794         mod[i] = sc*sc+ss*ss;
2795     }
2796     for (i = 0; i < ndata; i++)
2797     {
2798         if (mod[i] < 1e-7)
2799         {
2800             mod[i] = (mod[i-1]+mod[i+1])*0.5;
2801         }
2802     }
2803 }
2804
2805
2806 static void make_bspline_moduli(splinevec bsp_mod,
2807                                 int nx, int ny, int nz, int order)
2808 {
2809     int nmax = max(nx, max(ny, nz));
2810     real *data, *ddata, *bsp_data;
2811     int i, k, l;
2812     real div;
2813
2814     snew(data, order);
2815     snew(ddata, order);
2816     snew(bsp_data, nmax);
2817
2818     data[order-1] = 0;
2819     data[1]       = 0;
2820     data[0]       = 1;
2821
2822     for (k = 3; k < order; k++)
2823     {
2824         div       = 1.0/(k-1.0);
2825         data[k-1] = 0;
2826         for (l = 1; l < (k-1); l++)
2827         {
2828             data[k-l-1] = div*(l*data[k-l-2]+(k-l)*data[k-l-1]);
2829         }
2830         data[0] = div*data[0];
2831     }
2832     /* differentiate */
2833     ddata[0] = -data[0];
2834     for (k = 1; k < order; k++)
2835     {
2836         ddata[k] = data[k-1]-data[k];
2837     }
2838     div           = 1.0/(order-1);
2839     data[order-1] = 0;
2840     for (l = 1; l < (order-1); l++)
2841     {
2842         data[order-l-1] = div*(l*data[order-l-2]+(order-l)*data[order-l-1]);
2843     }
2844     data[0] = div*data[0];
2845
2846     for (i = 0; i < nmax; i++)
2847     {
2848         bsp_data[i] = 0;
2849     }
2850     for (i = 1; i <= order; i++)
2851     {
2852         bsp_data[i] = data[i-1];
2853     }
2854
2855     make_dft_mod(bsp_mod[XX], bsp_data, nx);
2856     make_dft_mod(bsp_mod[YY], bsp_data, ny);
2857     make_dft_mod(bsp_mod[ZZ], bsp_data, nz);
2858
2859     sfree(data);
2860     sfree(ddata);
2861     sfree(bsp_data);
2862 }
2863
2864
2865 /* Return the P3M optimal influence function */
2866 static double do_p3m_influence(double z, int order)
2867 {
2868     double z2, z4;
2869
2870     z2 = z*z;
2871     z4 = z2*z2;
2872
2873     /* The formula and most constants can be found in:
2874      * Ballenegger et al., JCTC 8, 936 (2012)
2875      */
2876     switch (order)
2877     {
2878         case 2:
2879             return 1.0 - 2.0*z2/3.0;
2880             break;
2881         case 3:
2882             return 1.0 - z2 + 2.0*z4/15.0;
2883             break;
2884         case 4:
2885             return 1.0 - 4.0*z2/3.0 + 2.0*z4/5.0 + 4.0*z2*z4/315.0;
2886             break;
2887         case 5:
2888             return 1.0 - 5.0*z2/3.0 + 7.0*z4/9.0 - 17.0*z2*z4/189.0 + 2.0*z4*z4/2835.0;
2889             break;
2890         case 6:
2891             return 1.0 - 2.0*z2 + 19.0*z4/15.0 - 256.0*z2*z4/945.0 + 62.0*z4*z4/4725.0 + 4.0*z2*z4*z4/155925.0;
2892             break;
2893         case 7:
2894             return 1.0 - 7.0*z2/3.0 + 28.0*z4/15.0 - 16.0*z2*z4/27.0 + 26.0*z4*z4/405.0 - 2.0*z2*z4*z4/1485.0 + 4.0*z4*z4*z4/6081075.0;
2895         case 8:
2896             return 1.0 - 8.0*z2/3.0 + 116.0*z4/45.0 - 344.0*z2*z4/315.0 + 914.0*z4*z4/4725.0 - 248.0*z4*z4*z2/22275.0 + 21844.0*z4*z4*z4/212837625.0 - 8.0*z4*z4*z4*z2/638512875.0;
2897             break;
2898     }
2899
2900     return 0.0;
2901 }
2902
2903 /* Calculate the P3M B-spline moduli for one dimension */
2904 static void make_p3m_bspline_moduli_dim(real *bsp_mod, int n, int order)
2905 {
2906     double zarg, zai, sinzai, infl;
2907     int    maxk, i;
2908
2909     if (order > 8)
2910     {
2911         gmx_fatal(FARGS, "The current P3M code only supports orders up to 8");
2912     }
2913
2914     zarg = M_PI/n;
2915
2916     maxk = (n + 1)/2;
2917
2918     for (i = -maxk; i < 0; i++)
2919     {
2920         zai          = zarg*i;
2921         sinzai       = sin(zai);
2922         infl         = do_p3m_influence(sinzai, order);
2923         bsp_mod[n+i] = infl*infl*pow(sinzai/zai, -2.0*order);
2924     }
2925     bsp_mod[0] = 1.0;
2926     for (i = 1; i < maxk; i++)
2927     {
2928         zai        = zarg*i;
2929         sinzai     = sin(zai);
2930         infl       = do_p3m_influence(sinzai, order);
2931         bsp_mod[i] = infl*infl*pow(sinzai/zai, -2.0*order);
2932     }
2933 }
2934
2935 /* Calculate the P3M B-spline moduli */
2936 static void make_p3m_bspline_moduli(splinevec bsp_mod,
2937                                     int nx, int ny, int nz, int order)
2938 {
2939     make_p3m_bspline_moduli_dim(bsp_mod[XX], nx, order);
2940     make_p3m_bspline_moduli_dim(bsp_mod[YY], ny, order);
2941     make_p3m_bspline_moduli_dim(bsp_mod[ZZ], nz, order);
2942 }
2943
2944
2945 static void setup_coordinate_communication(pme_atomcomm_t *atc)
2946 {
2947     int nslab, n, i;
2948     int fw, bw;
2949
2950     nslab = atc->nslab;
2951
2952     n = 0;
2953     for (i = 1; i <= nslab/2; i++)
2954     {
2955         fw = (atc->nodeid + i) % nslab;
2956         bw = (atc->nodeid - i + nslab) % nslab;
2957         if (n < nslab - 1)
2958         {
2959             atc->node_dest[n] = fw;
2960             atc->node_src[n]  = bw;
2961             n++;
2962         }
2963         if (n < nslab - 1)
2964         {
2965             atc->node_dest[n] = bw;
2966             atc->node_src[n]  = fw;
2967             n++;
2968         }
2969     }
2970 }
2971
2972 int gmx_pme_destroy(FILE *log, gmx_pme_t *pmedata)
2973 {
2974     int thread, i;
2975
2976     if (NULL != log)
2977     {
2978         fprintf(log, "Destroying PME data structures.\n");
2979     }
2980
2981     sfree((*pmedata)->nnx);
2982     sfree((*pmedata)->nny);
2983     sfree((*pmedata)->nnz);
2984
2985     for (i = 0; i < (*pmedata)->ngrids; ++i)
2986     {
2987         pmegrids_destroy(&(*pmedata)->pmegrid[i]);
2988         sfree((*pmedata)->fftgrid[i]);
2989         sfree((*pmedata)->cfftgrid[i]);
2990         gmx_parallel_3dfft_destroy((*pmedata)->pfft_setup[i]);
2991     }
2992
2993     sfree((*pmedata)->lb_buf1);
2994     sfree((*pmedata)->lb_buf2);
2995
2996     for (thread = 0; thread < (*pmedata)->nthread; thread++)
2997     {
2998         free_work(&(*pmedata)->work[thread]);
2999     }
3000     sfree((*pmedata)->work);
3001
3002     sfree(*pmedata);
3003     *pmedata = NULL;
3004
3005     return 0;
3006 }
3007
3008 static int mult_up(int n, int f)
3009 {
3010     return ((n + f - 1)/f)*f;
3011 }
3012
3013
3014 static double pme_load_imbalance(gmx_pme_t pme)
3015 {
3016     int    nma, nmi;
3017     double n1, n2, n3;
3018
3019     nma = pme->nnodes_major;
3020     nmi = pme->nnodes_minor;
3021
3022     n1 = mult_up(pme->nkx, nma)*mult_up(pme->nky, nmi)*pme->nkz;
3023     n2 = mult_up(pme->nkx, nma)*mult_up(pme->nkz, nmi)*pme->nky;
3024     n3 = mult_up(pme->nky, nma)*mult_up(pme->nkz, nmi)*pme->nkx;
3025
3026     /* pme_solve is roughly double the cost of an fft */
3027
3028     return (n1 + n2 + 3*n3)/(double)(6*pme->nkx*pme->nky*pme->nkz);
3029 }
3030
3031 static void init_atomcomm(gmx_pme_t pme, pme_atomcomm_t *atc,
3032                           int dimind, gmx_bool bSpread)
3033 {
3034     int nk, k, s, thread;
3035
3036     atc->dimind    = dimind;
3037     atc->nslab     = 1;
3038     atc->nodeid    = 0;
3039     atc->pd_nalloc = 0;
3040 #ifdef GMX_MPI
3041     if (pme->nnodes > 1)
3042     {
3043         atc->mpi_comm = pme->mpi_comm_d[dimind];
3044         MPI_Comm_size(atc->mpi_comm, &atc->nslab);
3045         MPI_Comm_rank(atc->mpi_comm, &atc->nodeid);
3046     }
3047     if (debug)
3048     {
3049         fprintf(debug, "For PME atom communication in dimind %d: nslab %d rank %d\n", atc->dimind, atc->nslab, atc->nodeid);
3050     }
3051 #endif
3052
3053     atc->bSpread   = bSpread;
3054     atc->pme_order = pme->pme_order;
3055
3056     if (atc->nslab > 1)
3057     {
3058         snew(atc->node_dest, atc->nslab);
3059         snew(atc->node_src, atc->nslab);
3060         setup_coordinate_communication(atc);
3061
3062         snew(atc->count_thread, pme->nthread);
3063         for (thread = 0; thread < pme->nthread; thread++)
3064         {
3065             snew(atc->count_thread[thread], atc->nslab);
3066         }
3067         atc->count = atc->count_thread[0];
3068         snew(atc->rcount, atc->nslab);
3069         snew(atc->buf_index, atc->nslab);
3070     }
3071
3072     atc->nthread = pme->nthread;
3073     if (atc->nthread > 1)
3074     {
3075         snew(atc->thread_plist, atc->nthread);
3076     }
3077     snew(atc->spline, atc->nthread);
3078     for (thread = 0; thread < atc->nthread; thread++)
3079     {
3080         if (atc->nthread > 1)
3081         {
3082             snew(atc->thread_plist[thread].n, atc->nthread+2*GMX_CACHE_SEP);
3083             atc->thread_plist[thread].n += GMX_CACHE_SEP;
3084         }
3085         snew(atc->spline[thread].thread_one, pme->nthread);
3086         atc->spline[thread].thread_one[thread] = 1;
3087     }
3088 }
3089
3090 static void
3091 init_overlap_comm(pme_overlap_t *  ol,
3092                   int              norder,
3093 #ifdef GMX_MPI
3094                   MPI_Comm         comm,
3095 #endif
3096                   int              nnodes,
3097                   int              nodeid,
3098                   int              ndata,
3099                   int              commplainsize)
3100 {
3101     int lbnd, rbnd, maxlr, b, i;
3102     int exten;
3103     int nn, nk;
3104     pme_grid_comm_t *pgc;
3105     gmx_bool bCont;
3106     int fft_start, fft_end, send_index1, recv_index1;
3107 #ifdef GMX_MPI
3108     MPI_Status stat;
3109
3110     ol->mpi_comm = comm;
3111 #endif
3112
3113     ol->nnodes = nnodes;
3114     ol->nodeid = nodeid;
3115
3116     /* Linear translation of the PME grid won't affect reciprocal space
3117      * calculations, so to optimize we only interpolate "upwards",
3118      * which also means we only have to consider overlap in one direction.
3119      * I.e., particles on this node might also be spread to grid indices
3120      * that belong to higher nodes (modulo nnodes)
3121      */
3122
3123     snew(ol->s2g0, ol->nnodes+1);
3124     snew(ol->s2g1, ol->nnodes);
3125     if (debug)
3126     {
3127         fprintf(debug, "PME slab boundaries:");
3128     }
3129     for (i = 0; i < nnodes; i++)
3130     {
3131         /* s2g0 the local interpolation grid start.
3132          * s2g1 the local interpolation grid end.
3133          * Because grid overlap communication only goes forward,
3134          * the grid the slabs for fft's should be rounded down.
3135          */
3136         ol->s2g0[i] = ( i   *ndata + 0       )/nnodes;
3137         ol->s2g1[i] = ((i+1)*ndata + nnodes-1)/nnodes + norder - 1;
3138
3139         if (debug)
3140         {
3141             fprintf(debug, "  %3d %3d", ol->s2g0[i], ol->s2g1[i]);
3142         }
3143     }
3144     ol->s2g0[nnodes] = ndata;
3145     if (debug)
3146     {
3147         fprintf(debug, "\n");
3148     }
3149
3150     /* Determine with how many nodes we need to communicate the grid overlap */
3151     b = 0;
3152     do
3153     {
3154         b++;
3155         bCont = FALSE;
3156         for (i = 0; i < nnodes; i++)
3157         {
3158             if ((i+b <  nnodes && ol->s2g1[i] > ol->s2g0[i+b]) ||
3159                 (i+b >= nnodes && ol->s2g1[i] > ol->s2g0[i+b-nnodes] + ndata))
3160             {
3161                 bCont = TRUE;
3162             }
3163         }
3164     }
3165     while (bCont && b < nnodes);
3166     ol->noverlap_nodes = b - 1;
3167
3168     snew(ol->send_id, ol->noverlap_nodes);
3169     snew(ol->recv_id, ol->noverlap_nodes);
3170     for (b = 0; b < ol->noverlap_nodes; b++)
3171     {
3172         ol->send_id[b] = (ol->nodeid + (b + 1)) % ol->nnodes;
3173         ol->recv_id[b] = (ol->nodeid - (b + 1) + ol->nnodes) % ol->nnodes;
3174     }
3175     snew(ol->comm_data, ol->noverlap_nodes);
3176
3177     ol->send_size = 0;
3178     for (b = 0; b < ol->noverlap_nodes; b++)
3179     {
3180         pgc = &ol->comm_data[b];
3181         /* Send */
3182         fft_start        = ol->s2g0[ol->send_id[b]];
3183         fft_end          = ol->s2g0[ol->send_id[b]+1];
3184         if (ol->send_id[b] < nodeid)
3185         {
3186             fft_start += ndata;
3187             fft_end   += ndata;
3188         }
3189         send_index1       = ol->s2g1[nodeid];
3190         send_index1       = min(send_index1, fft_end);
3191         pgc->send_index0  = fft_start;
3192         pgc->send_nindex  = max(0, send_index1 - pgc->send_index0);
3193         ol->send_size    += pgc->send_nindex;
3194
3195         /* We always start receiving to the first index of our slab */
3196         fft_start        = ol->s2g0[ol->nodeid];
3197         fft_end          = ol->s2g0[ol->nodeid+1];
3198         recv_index1      = ol->s2g1[ol->recv_id[b]];
3199         if (ol->recv_id[b] > nodeid)
3200         {
3201             recv_index1 -= ndata;
3202         }
3203         recv_index1      = min(recv_index1, fft_end);
3204         pgc->recv_index0 = fft_start;
3205         pgc->recv_nindex = max(0, recv_index1 - pgc->recv_index0);
3206     }
3207
3208 #ifdef GMX_MPI
3209     /* Communicate the buffer sizes to receive */
3210     for (b = 0; b < ol->noverlap_nodes; b++)
3211     {
3212         MPI_Sendrecv(&ol->send_size, 1, MPI_INT, ol->send_id[b], b,
3213                      &ol->comm_data[b].recv_size, 1, MPI_INT, ol->recv_id[b], b,
3214                      ol->mpi_comm, &stat);
3215     }
3216 #endif
3217
3218     /* For non-divisible grid we need pme_order iso pme_order-1 */
3219     snew(ol->sendbuf, norder*commplainsize);
3220     snew(ol->recvbuf, norder*commplainsize);
3221 }
3222
3223 static void
3224 make_gridindex5_to_localindex(int n, int local_start, int local_range,
3225                               int **global_to_local,
3226                               real **fraction_shift)
3227 {
3228     int i;
3229     int * gtl;
3230     real * fsh;
3231
3232     snew(gtl, 5*n);
3233     snew(fsh, 5*n);
3234     for (i = 0; (i < 5*n); i++)
3235     {
3236         /* Determine the global to local grid index */
3237         gtl[i] = (i - local_start + n) % n;
3238         /* For coordinates that fall within the local grid the fraction
3239          * is correct, we don't need to shift it.
3240          */
3241         fsh[i] = 0;
3242         if (local_range < n)
3243         {
3244             /* Due to rounding issues i could be 1 beyond the lower or
3245              * upper boundary of the local grid. Correct the index for this.
3246              * If we shift the index, we need to shift the fraction by
3247              * the same amount in the other direction to not affect
3248              * the weights.
3249              * Note that due to this shifting the weights at the end of
3250              * the spline might change, but that will only involve values
3251              * between zero and values close to the precision of a real,
3252              * which is anyhow the accuracy of the whole mesh calculation.
3253              */
3254             /* With local_range=0 we should not change i=local_start */
3255             if (i % n != local_start)
3256             {
3257                 if (gtl[i] == n-1)
3258                 {
3259                     gtl[i] = 0;
3260                     fsh[i] = -1;
3261                 }
3262                 else if (gtl[i] == local_range)
3263                 {
3264                     gtl[i] = local_range - 1;
3265                     fsh[i] = 1;
3266                 }
3267             }
3268         }
3269     }
3270
3271     *global_to_local = gtl;
3272     *fraction_shift  = fsh;
3273 }
3274
3275 static pme_spline_work_t *make_pme_spline_work(int gmx_unused order)
3276 {
3277     pme_spline_work_t *work;
3278
3279 #ifdef PME_SIMD4_SPREAD_GATHER
3280     real             tmp[GMX_SIMD4_WIDTH*3], *tmp_aligned;
3281     gmx_simd4_real_t zero_S;
3282     gmx_simd4_real_t real_mask_S0, real_mask_S1;
3283     int              of, i;
3284
3285     snew_aligned(work, 1, SIMD4_ALIGNMENT);
3286
3287     tmp_aligned = gmx_simd4_align_r(tmp);
3288
3289     zero_S = gmx_simd4_setzero_r();
3290
3291     /* Generate bit masks to mask out the unused grid entries,
3292      * as we only operate on order of the 8 grid entries that are
3293      * load into 2 SIMD registers.
3294      */
3295     for (of = 0; of < 2*GMX_SIMD4_WIDTH-(order-1); of++)
3296     {
3297         for (i = 0; i < 2*GMX_SIMD4_WIDTH; i++)
3298         {
3299             tmp_aligned[i] = (i >= of && i < of+order ? -1.0 : 1.0);
3300         }
3301         real_mask_S0      = gmx_simd4_load_r(tmp_aligned);
3302         real_mask_S1      = gmx_simd4_load_r(tmp_aligned+GMX_SIMD4_WIDTH);
3303         work->mask_S0[of] = gmx_simd4_cmplt_r(real_mask_S0, zero_S);
3304         work->mask_S1[of] = gmx_simd4_cmplt_r(real_mask_S1, zero_S);
3305     }
3306 #else
3307     work = NULL;
3308 #endif
3309
3310     return work;
3311 }
3312
3313 void gmx_pme_check_restrictions(int pme_order,
3314                                 int nkx, int nky, int nkz,
3315                                 int nnodes_major,
3316                                 int nnodes_minor,
3317                                 gmx_bool bUseThreads,
3318                                 gmx_bool bFatal,
3319                                 gmx_bool *bValidSettings)
3320 {
3321     if (pme_order > PME_ORDER_MAX)
3322     {
3323         if (!bFatal)
3324         {
3325             *bValidSettings = FALSE;
3326             return;
3327         }
3328         gmx_fatal(FARGS, "pme_order (%d) is larger than the maximum allowed value (%d). Modify and recompile the code if you really need such a high order.",
3329                   pme_order, PME_ORDER_MAX);
3330     }
3331
3332     if (nkx <= pme_order*(nnodes_major > 1 ? 2 : 1) ||
3333         nky <= pme_order*(nnodes_minor > 1 ? 2 : 1) ||
3334         nkz <= pme_order)
3335     {
3336         if (!bFatal)
3337         {
3338             *bValidSettings = FALSE;
3339             return;
3340         }
3341         gmx_fatal(FARGS, "The PME grid sizes need to be larger than pme_order (%d) and for dimensions with domain decomposition larger than 2*pme_order",
3342                   pme_order);
3343     }
3344
3345     /* Check for a limitation of the (current) sum_fftgrid_dd code.
3346      * We only allow multiple communication pulses in dim 1, not in dim 0.
3347      */
3348     if (bUseThreads && (nkx < nnodes_major*pme_order &&
3349                         nkx != nnodes_major*(pme_order - 1)))
3350     {
3351         if (!bFatal)
3352         {
3353             *bValidSettings = FALSE;
3354             return;
3355         }
3356         gmx_fatal(FARGS, "The number of PME grid lines per rank along x is %g. But when using OpenMP threads, the number of grid lines per rank along x should be >= pme_order (%d) or = pmeorder-1. To resolve this issue, use fewer ranks along x (and possibly more along y and/or z) by specifying -dd manually.",
3357                   nkx/(double)nnodes_major, pme_order);
3358     }
3359
3360     if (bValidSettings != NULL)
3361     {
3362         *bValidSettings = TRUE;
3363     }
3364
3365     return;
3366 }
3367
3368 int gmx_pme_init(gmx_pme_t *         pmedata,
3369                  t_commrec *         cr,
3370                  int                 nnodes_major,
3371                  int                 nnodes_minor,
3372                  t_inputrec *        ir,
3373                  int                 homenr,
3374                  gmx_bool            bFreeEnergy_q,
3375                  gmx_bool            bFreeEnergy_lj,
3376                  gmx_bool            bReproducible,
3377                  int                 nthread)
3378 {
3379     gmx_pme_t pme = NULL;
3380
3381     int  use_threads, sum_use_threads, i;
3382     ivec ndata;
3383
3384     if (debug)
3385     {
3386         fprintf(debug, "Creating PME data structures.\n");
3387     }
3388     snew(pme, 1);
3389
3390     pme->sum_qgrid_tmp       = NULL;
3391     pme->sum_qgrid_dd_tmp    = NULL;
3392     pme->buf_nalloc          = 0;
3393
3394     pme->nnodes              = 1;
3395     pme->bPPnode             = TRUE;
3396
3397     pme->nnodes_major        = nnodes_major;
3398     pme->nnodes_minor        = nnodes_minor;
3399
3400 #ifdef GMX_MPI
3401     if (nnodes_major*nnodes_minor > 1)
3402     {
3403         pme->mpi_comm = cr->mpi_comm_mygroup;
3404
3405         MPI_Comm_rank(pme->mpi_comm, &pme->nodeid);
3406         MPI_Comm_size(pme->mpi_comm, &pme->nnodes);
3407         if (pme->nnodes != nnodes_major*nnodes_minor)
3408         {
3409             gmx_incons("PME rank count mismatch");
3410         }
3411     }
3412     else
3413     {
3414         pme->mpi_comm = MPI_COMM_NULL;
3415     }
3416 #endif
3417
3418     if (pme->nnodes == 1)
3419     {
3420 #ifdef GMX_MPI
3421         pme->mpi_comm_d[0] = MPI_COMM_NULL;
3422         pme->mpi_comm_d[1] = MPI_COMM_NULL;
3423 #endif
3424         pme->ndecompdim   = 0;
3425         pme->nodeid_major = 0;
3426         pme->nodeid_minor = 0;
3427 #ifdef GMX_MPI
3428         pme->mpi_comm_d[0] = pme->mpi_comm_d[1] = MPI_COMM_NULL;
3429 #endif
3430     }
3431     else
3432     {
3433         if (nnodes_minor == 1)
3434         {
3435 #ifdef GMX_MPI
3436             pme->mpi_comm_d[0] = pme->mpi_comm;
3437             pme->mpi_comm_d[1] = MPI_COMM_NULL;
3438 #endif
3439             pme->ndecompdim   = 1;
3440             pme->nodeid_major = pme->nodeid;
3441             pme->nodeid_minor = 0;
3442
3443         }
3444         else if (nnodes_major == 1)
3445         {
3446 #ifdef GMX_MPI
3447             pme->mpi_comm_d[0] = MPI_COMM_NULL;
3448             pme->mpi_comm_d[1] = pme->mpi_comm;
3449 #endif
3450             pme->ndecompdim   = 1;
3451             pme->nodeid_major = 0;
3452             pme->nodeid_minor = pme->nodeid;
3453         }
3454         else
3455         {
3456             if (pme->nnodes % nnodes_major != 0)
3457             {
3458                 gmx_incons("For 2D PME decomposition, #PME ranks must be divisible by the number of ranks in the major dimension");
3459             }
3460             pme->ndecompdim = 2;
3461
3462 #ifdef GMX_MPI
3463             MPI_Comm_split(pme->mpi_comm, pme->nodeid % nnodes_minor,
3464                            pme->nodeid, &pme->mpi_comm_d[0]);  /* My communicator along major dimension */
3465             MPI_Comm_split(pme->mpi_comm, pme->nodeid/nnodes_minor,
3466                            pme->nodeid, &pme->mpi_comm_d[1]);  /* My communicator along minor dimension */
3467
3468             MPI_Comm_rank(pme->mpi_comm_d[0], &pme->nodeid_major);
3469             MPI_Comm_size(pme->mpi_comm_d[0], &pme->nnodes_major);
3470             MPI_Comm_rank(pme->mpi_comm_d[1], &pme->nodeid_minor);
3471             MPI_Comm_size(pme->mpi_comm_d[1], &pme->nnodes_minor);
3472 #endif
3473         }
3474         pme->bPPnode = (cr->duty & DUTY_PP);
3475     }
3476
3477     pme->nthread = nthread;
3478
3479     /* Check if any of the PME MPI ranks uses threads */
3480     use_threads = (pme->nthread > 1 ? 1 : 0);
3481 #ifdef GMX_MPI
3482     if (pme->nnodes > 1)
3483     {
3484         MPI_Allreduce(&use_threads, &sum_use_threads, 1, MPI_INT,
3485                       MPI_SUM, pme->mpi_comm);
3486     }
3487     else
3488 #endif
3489     {
3490         sum_use_threads = use_threads;
3491     }
3492     pme->bUseThreads = (sum_use_threads > 0);
3493
3494     if (ir->ePBC == epbcSCREW)
3495     {
3496         gmx_fatal(FARGS, "pme does not (yet) work with pbc = screw");
3497     }
3498
3499     pme->bFEP_q      = ((ir->efep != efepNO) && bFreeEnergy_q);
3500     pme->bFEP_lj     = ((ir->efep != efepNO) && bFreeEnergy_lj);
3501     pme->bFEP        = (pme->bFEP_q || pme->bFEP_lj);
3502     pme->nkx         = ir->nkx;
3503     pme->nky         = ir->nky;
3504     pme->nkz         = ir->nkz;
3505     pme->bP3M        = (ir->coulombtype == eelP3M_AD || getenv("GMX_PME_P3M") != NULL);
3506     pme->pme_order   = ir->pme_order;
3507
3508     /* Always constant electrostatics coefficients */
3509     pme->epsilon_r   = ir->epsilon_r;
3510
3511     /* Always constant LJ coefficients */
3512     pme->ljpme_combination_rule = ir->ljpme_combination_rule;
3513
3514     /* If we violate restrictions, generate a fatal error here */
3515     gmx_pme_check_restrictions(pme->pme_order,
3516                                pme->nkx, pme->nky, pme->nkz,
3517                                pme->nnodes_major,
3518                                pme->nnodes_minor,
3519                                pme->bUseThreads,
3520                                TRUE,
3521                                NULL);
3522
3523     if (pme->nnodes > 1)
3524     {
3525         double imbal;
3526
3527 #ifdef GMX_MPI
3528         MPI_Type_contiguous(DIM, mpi_type, &(pme->rvec_mpi));
3529         MPI_Type_commit(&(pme->rvec_mpi));
3530 #endif
3531
3532         /* Note that the coefficient spreading and force gathering, which usually
3533          * takes about the same amount of time as FFT+solve_pme,
3534          * is always fully load balanced
3535          * (unless the coefficient distribution is inhomogeneous).
3536          */
3537
3538         imbal = pme_load_imbalance(pme);
3539         if (imbal >= 1.2 && pme->nodeid_major == 0 && pme->nodeid_minor == 0)
3540         {
3541             fprintf(stderr,
3542                     "\n"
3543                     "NOTE: The load imbalance in PME FFT and solve is %d%%.\n"
3544                     "      For optimal PME load balancing\n"
3545                     "      PME grid_x (%d) and grid_y (%d) should be divisible by #PME_ranks_x (%d)\n"
3546                     "      and PME grid_y (%d) and grid_z (%d) should be divisible by #PME_ranks_y (%d)\n"
3547                     "\n",
3548                     (int)((imbal-1)*100 + 0.5),
3549                     pme->nkx, pme->nky, pme->nnodes_major,
3550                     pme->nky, pme->nkz, pme->nnodes_minor);
3551         }
3552     }
3553
3554     /* For non-divisible grid we need pme_order iso pme_order-1 */
3555     /* In sum_qgrid_dd x overlap is copied in place: take padding into account.
3556      * y is always copied through a buffer: we don't need padding in z,
3557      * but we do need the overlap in x because of the communication order.
3558      */
3559     init_overlap_comm(&pme->overlap[0], pme->pme_order,
3560 #ifdef GMX_MPI
3561                       pme->mpi_comm_d[0],
3562 #endif
3563                       pme->nnodes_major, pme->nodeid_major,
3564                       pme->nkx,
3565                       (div_round_up(pme->nky, pme->nnodes_minor)+pme->pme_order)*(pme->nkz+pme->pme_order-1));
3566
3567     /* Along overlap dim 1 we can send in multiple pulses in sum_fftgrid_dd.
3568      * We do this with an offset buffer of equal size, so we need to allocate
3569      * extra for the offset. That's what the (+1)*pme->nkz is for.
3570      */
3571     init_overlap_comm(&pme->overlap[1], pme->pme_order,
3572 #ifdef GMX_MPI
3573                       pme->mpi_comm_d[1],
3574 #endif
3575                       pme->nnodes_minor, pme->nodeid_minor,
3576                       pme->nky,
3577                       (div_round_up(pme->nkx, pme->nnodes_major)+pme->pme_order+1)*pme->nkz);
3578
3579     /* Double-check for a limitation of the (current) sum_fftgrid_dd code.
3580      * Note that gmx_pme_check_restrictions checked for this already.
3581      */
3582     if (pme->bUseThreads && pme->overlap[0].noverlap_nodes > 1)
3583     {
3584         gmx_incons("More than one communication pulse required for grid overlap communication along the major dimension while using threads");
3585     }
3586
3587     snew(pme->bsp_mod[XX], pme->nkx);
3588     snew(pme->bsp_mod[YY], pme->nky);
3589     snew(pme->bsp_mod[ZZ], pme->nkz);
3590
3591     /* The required size of the interpolation grid, including overlap.
3592      * The allocated size (pmegrid_n?) might be slightly larger.
3593      */
3594     pme->pmegrid_nx = pme->overlap[0].s2g1[pme->nodeid_major] -
3595         pme->overlap[0].s2g0[pme->nodeid_major];
3596     pme->pmegrid_ny = pme->overlap[1].s2g1[pme->nodeid_minor] -
3597         pme->overlap[1].s2g0[pme->nodeid_minor];
3598     pme->pmegrid_nz_base = pme->nkz;
3599     pme->pmegrid_nz      = pme->pmegrid_nz_base + pme->pme_order - 1;
3600     set_grid_alignment(&pme->pmegrid_nz, pme->pme_order);
3601
3602     pme->pmegrid_start_ix = pme->overlap[0].s2g0[pme->nodeid_major];
3603     pme->pmegrid_start_iy = pme->overlap[1].s2g0[pme->nodeid_minor];
3604     pme->pmegrid_start_iz = 0;
3605
3606     make_gridindex5_to_localindex(pme->nkx,
3607                                   pme->pmegrid_start_ix,
3608                                   pme->pmegrid_nx - (pme->pme_order-1),
3609                                   &pme->nnx, &pme->fshx);
3610     make_gridindex5_to_localindex(pme->nky,
3611                                   pme->pmegrid_start_iy,
3612                                   pme->pmegrid_ny - (pme->pme_order-1),
3613                                   &pme->nny, &pme->fshy);
3614     make_gridindex5_to_localindex(pme->nkz,
3615                                   pme->pmegrid_start_iz,
3616                                   pme->pmegrid_nz_base,
3617                                   &pme->nnz, &pme->fshz);
3618
3619     pme->spline_work = make_pme_spline_work(pme->pme_order);
3620
3621     ndata[0]    = pme->nkx;
3622     ndata[1]    = pme->nky;
3623     ndata[2]    = pme->nkz;
3624     /* It doesn't matter if we allocate too many grids here,
3625      * we only allocate and use the ones we need.
3626      */
3627     if (EVDW_PME(ir->vdwtype))
3628     {
3629         pme->ngrids = ((ir->ljpme_combination_rule == eljpmeLB) ? DO_Q_AND_LJ_LB : DO_Q_AND_LJ);
3630     }
3631     else
3632     {
3633         pme->ngrids = DO_Q;
3634     }
3635     snew(pme->fftgrid, pme->ngrids);
3636     snew(pme->cfftgrid, pme->ngrids);
3637     snew(pme->pfft_setup, pme->ngrids);
3638
3639     for (i = 0; i < pme->ngrids; ++i)
3640     {
3641         if ((i <  DO_Q && EEL_PME(ir->coulombtype) && (i == 0 ||
3642                                                        bFreeEnergy_q)) ||
3643             (i >= DO_Q && EVDW_PME(ir->vdwtype) && (i == 2 ||
3644                                                     bFreeEnergy_lj ||
3645                                                     ir->ljpme_combination_rule == eljpmeLB)))
3646         {
3647             pmegrids_init(&pme->pmegrid[i],
3648                           pme->pmegrid_nx, pme->pmegrid_ny, pme->pmegrid_nz,
3649                           pme->pmegrid_nz_base,
3650                           pme->pme_order,
3651                           pme->bUseThreads,
3652                           pme->nthread,
3653                           pme->overlap[0].s2g1[pme->nodeid_major]-pme->overlap[0].s2g0[pme->nodeid_major+1],
3654                           pme->overlap[1].s2g1[pme->nodeid_minor]-pme->overlap[1].s2g0[pme->nodeid_minor+1]);
3655             /* This routine will allocate the grid data to fit the FFTs */
3656             gmx_parallel_3dfft_init(&pme->pfft_setup[i], ndata,
3657                                     &pme->fftgrid[i], &pme->cfftgrid[i],
3658                                     pme->mpi_comm_d,
3659                                     bReproducible, pme->nthread);
3660
3661         }
3662     }
3663
3664     if (!pme->bP3M)
3665     {
3666         /* Use plain SPME B-spline interpolation */
3667         make_bspline_moduli(pme->bsp_mod, pme->nkx, pme->nky, pme->nkz, pme->pme_order);
3668     }
3669     else
3670     {
3671         /* Use the P3M grid-optimized influence function */
3672         make_p3m_bspline_moduli(pme->bsp_mod, pme->nkx, pme->nky, pme->nkz, pme->pme_order);
3673     }
3674
3675     /* Use atc[0] for spreading */
3676     init_atomcomm(pme, &pme->atc[0], nnodes_major > 1 ? 0 : 1, TRUE);
3677     if (pme->ndecompdim >= 2)
3678     {
3679         init_atomcomm(pme, &pme->atc[1], 1, FALSE);
3680     }
3681
3682     if (pme->nnodes == 1)
3683     {
3684         pme->atc[0].n = homenr;
3685         pme_realloc_atomcomm_things(&pme->atc[0]);
3686     }
3687
3688     pme->lb_buf1       = NULL;
3689     pme->lb_buf2       = NULL;
3690     pme->lb_buf_nalloc = 0;
3691
3692     {
3693         int thread;
3694
3695         /* Use fft5d, order after FFT is y major, z, x minor */
3696
3697         snew(pme->work, pme->nthread);
3698         for (thread = 0; thread < pme->nthread; thread++)
3699         {
3700             realloc_work(&pme->work[thread], pme->nkx);
3701         }
3702     }
3703
3704     *pmedata = pme;
3705
3706     return 0;
3707 }
3708
3709 static void reuse_pmegrids(const pmegrids_t *old, pmegrids_t *new)
3710 {
3711     int d, t;
3712
3713     for (d = 0; d < DIM; d++)
3714     {
3715         if (new->grid.n[d] > old->grid.n[d])
3716         {
3717             return;
3718         }
3719     }
3720
3721     sfree_aligned(new->grid.grid);
3722     new->grid.grid = old->grid.grid;
3723
3724     if (new->grid_th != NULL && new->nthread == old->nthread)
3725     {
3726         sfree_aligned(new->grid_all);
3727         for (t = 0; t < new->nthread; t++)
3728         {
3729             new->grid_th[t].grid = old->grid_th[t].grid;
3730         }
3731     }
3732 }
3733
3734 int gmx_pme_reinit(gmx_pme_t *         pmedata,
3735                    t_commrec *         cr,
3736                    gmx_pme_t           pme_src,
3737                    const t_inputrec *  ir,
3738                    ivec                grid_size)
3739 {
3740     t_inputrec irc;
3741     int homenr;
3742     int ret;
3743
3744     irc     = *ir;
3745     irc.nkx = grid_size[XX];
3746     irc.nky = grid_size[YY];
3747     irc.nkz = grid_size[ZZ];
3748
3749     if (pme_src->nnodes == 1)
3750     {
3751         homenr = pme_src->atc[0].n;
3752     }
3753     else
3754     {
3755         homenr = -1;
3756     }
3757
3758     ret = gmx_pme_init(pmedata, cr, pme_src->nnodes_major, pme_src->nnodes_minor,
3759                        &irc, homenr, pme_src->bFEP_q, pme_src->bFEP_lj, FALSE, pme_src->nthread);
3760
3761     if (ret == 0)
3762     {
3763         /* We can easily reuse the allocated pme grids in pme_src */
3764         reuse_pmegrids(&pme_src->pmegrid[PME_GRID_QA], &(*pmedata)->pmegrid[PME_GRID_QA]);
3765         /* We would like to reuse the fft grids, but that's harder */
3766     }
3767
3768     return ret;
3769 }
3770
3771
3772 static void copy_local_grid(gmx_pme_t pme, pmegrids_t *pmegrids,
3773                             int grid_index, int thread, real *fftgrid)
3774 {
3775     ivec local_fft_ndata, local_fft_offset, local_fft_size;
3776     int  fft_my, fft_mz;
3777     int  nsx, nsy, nsz;
3778     ivec nf;
3779     int  offx, offy, offz, x, y, z, i0, i0t;
3780     int  d;
3781     pmegrid_t *pmegrid;
3782     real *grid_th;
3783
3784     gmx_parallel_3dfft_real_limits(pme->pfft_setup[grid_index],
3785                                    local_fft_ndata,
3786                                    local_fft_offset,
3787                                    local_fft_size);
3788     fft_my = local_fft_size[YY];
3789     fft_mz = local_fft_size[ZZ];
3790
3791     pmegrid = &pmegrids->grid_th[thread];
3792
3793     nsx = pmegrid->s[XX];
3794     nsy = pmegrid->s[YY];
3795     nsz = pmegrid->s[ZZ];
3796
3797     for (d = 0; d < DIM; d++)
3798     {
3799         nf[d] = min(pmegrid->n[d] - (pmegrid->order - 1),
3800                     local_fft_ndata[d] - pmegrid->offset[d]);
3801     }
3802
3803     offx = pmegrid->offset[XX];
3804     offy = pmegrid->offset[YY];
3805     offz = pmegrid->offset[ZZ];
3806
3807     /* Directly copy the non-overlapping parts of the local grids.
3808      * This also initializes the full grid.
3809      */
3810     grid_th = pmegrid->grid;
3811     for (x = 0; x < nf[XX]; x++)
3812     {
3813         for (y = 0; y < nf[YY]; y++)
3814         {
3815             i0  = ((offx + x)*fft_my + (offy + y))*fft_mz + offz;
3816             i0t = (x*nsy + y)*nsz;
3817             for (z = 0; z < nf[ZZ]; z++)
3818             {
3819                 fftgrid[i0+z] = grid_th[i0t+z];
3820             }
3821         }
3822     }
3823 }
3824
3825 static void
3826 reduce_threadgrid_overlap(gmx_pme_t pme,
3827                           const pmegrids_t *pmegrids, int thread,
3828                           real *fftgrid, real *commbuf_x, real *commbuf_y,
3829                           int grid_index)
3830 {
3831     ivec local_fft_ndata, local_fft_offset, local_fft_size;
3832     int  fft_nx, fft_ny, fft_nz;
3833     int  fft_my, fft_mz;
3834     int  buf_my = -1;
3835     int  nsx, nsy, nsz;
3836     ivec ne;
3837     int  offx, offy, offz, x, y, z, i0, i0t;
3838     int  sx, sy, sz, fx, fy, fz, tx1, ty1, tz1, ox, oy, oz;
3839     gmx_bool bClearBufX, bClearBufY, bClearBufXY, bClearBuf;
3840     gmx_bool bCommX, bCommY;
3841     int  d;
3842     int  thread_f;
3843     const pmegrid_t *pmegrid, *pmegrid_g, *pmegrid_f;
3844     const real *grid_th;
3845     real *commbuf = NULL;
3846
3847     gmx_parallel_3dfft_real_limits(pme->pfft_setup[grid_index],
3848                                    local_fft_ndata,
3849                                    local_fft_offset,
3850                                    local_fft_size);
3851     fft_nx = local_fft_ndata[XX];
3852     fft_ny = local_fft_ndata[YY];
3853     fft_nz = local_fft_ndata[ZZ];
3854
3855     fft_my = local_fft_size[YY];
3856     fft_mz = local_fft_size[ZZ];
3857
3858     /* This routine is called when all thread have finished spreading.
3859      * Here each thread sums grid contributions calculated by other threads
3860      * to the thread local grid volume.
3861      * To minimize the number of grid copying operations,
3862      * this routines sums immediately from the pmegrid to the fftgrid.
3863      */
3864
3865     /* Determine which part of the full node grid we should operate on,
3866      * this is our thread local part of the full grid.
3867      */
3868     pmegrid = &pmegrids->grid_th[thread];
3869
3870     for (d = 0; d < DIM; d++)
3871     {
3872         ne[d] = min(pmegrid->offset[d]+pmegrid->n[d]-(pmegrid->order-1),
3873                     local_fft_ndata[d]);
3874     }
3875
3876     offx = pmegrid->offset[XX];
3877     offy = pmegrid->offset[YY];
3878     offz = pmegrid->offset[ZZ];
3879
3880
3881     bClearBufX  = TRUE;
3882     bClearBufY  = TRUE;
3883     bClearBufXY = TRUE;
3884
3885     /* Now loop over all the thread data blocks that contribute
3886      * to the grid region we (our thread) are operating on.
3887      */
3888     /* Note that fft_nx/y is equal to the number of grid points
3889      * between the first point of our node grid and the one of the next node.
3890      */
3891     for (sx = 0; sx >= -pmegrids->nthread_comm[XX]; sx--)
3892     {
3893         fx     = pmegrid->ci[XX] + sx;
3894         ox     = 0;
3895         bCommX = FALSE;
3896         if (fx < 0)
3897         {
3898             fx    += pmegrids->nc[XX];
3899             ox    -= fft_nx;
3900             bCommX = (pme->nnodes_major > 1);
3901         }
3902         pmegrid_g = &pmegrids->grid_th[fx*pmegrids->nc[YY]*pmegrids->nc[ZZ]];
3903         ox       += pmegrid_g->offset[XX];
3904         /* Determine the end of our part of the source grid */
3905         tx1 = min(ox + pmegrid_g->n[XX], ne[XX]);
3906
3907         for (sy = 0; sy >= -pmegrids->nthread_comm[YY]; sy--)
3908         {
3909             fy     = pmegrid->ci[YY] + sy;
3910             oy     = 0;
3911             bCommY = FALSE;
3912             if (fy < 0)
3913             {
3914                 fy    += pmegrids->nc[YY];
3915                 oy    -= fft_ny;
3916                 bCommY = (pme->nnodes_minor > 1);
3917             }
3918             pmegrid_g = &pmegrids->grid_th[fy*pmegrids->nc[ZZ]];
3919             oy       += pmegrid_g->offset[YY];
3920             /* Determine the end of our part of the source grid */
3921             ty1 = min(oy + pmegrid_g->n[YY], ne[YY]);
3922
3923             for (sz = 0; sz >= -pmegrids->nthread_comm[ZZ]; sz--)
3924             {
3925                 fz = pmegrid->ci[ZZ] + sz;
3926                 oz = 0;
3927                 if (fz < 0)
3928                 {
3929                     fz += pmegrids->nc[ZZ];
3930                     oz -= fft_nz;
3931                 }
3932                 pmegrid_g = &pmegrids->grid_th[fz];
3933                 oz       += pmegrid_g->offset[ZZ];
3934                 tz1       = min(oz + pmegrid_g->n[ZZ], ne[ZZ]);
3935
3936                 if (sx == 0 && sy == 0 && sz == 0)
3937                 {
3938                     /* We have already added our local contribution
3939                      * before calling this routine, so skip it here.
3940                      */
3941                     continue;
3942                 }
3943
3944                 thread_f = (fx*pmegrids->nc[YY] + fy)*pmegrids->nc[ZZ] + fz;
3945
3946                 pmegrid_f = &pmegrids->grid_th[thread_f];
3947
3948                 grid_th = pmegrid_f->grid;
3949
3950                 nsx = pmegrid_f->s[XX];
3951                 nsy = pmegrid_f->s[YY];
3952                 nsz = pmegrid_f->s[ZZ];
3953
3954 #ifdef DEBUG_PME_REDUCE
3955                 printf("n%d t%d add %d  %2d %2d %2d  %2d %2d %2d  %2d-%2d %2d-%2d, %2d-%2d %2d-%2d, %2d-%2d %2d-%2d\n",
3956                        pme->nodeid, thread, thread_f,
3957                        pme->pmegrid_start_ix,
3958                        pme->pmegrid_start_iy,
3959                        pme->pmegrid_start_iz,
3960                        sx, sy, sz,
3961                        offx-ox, tx1-ox, offx, tx1,
3962                        offy-oy, ty1-oy, offy, ty1,
3963                        offz-oz, tz1-oz, offz, tz1);
3964 #endif
3965
3966                 if (!(bCommX || bCommY))
3967                 {
3968                     /* Copy from the thread local grid to the node grid */
3969                     for (x = offx; x < tx1; x++)
3970                     {
3971                         for (y = offy; y < ty1; y++)
3972                         {
3973                             i0  = (x*fft_my + y)*fft_mz;
3974                             i0t = ((x - ox)*nsy + (y - oy))*nsz - oz;
3975                             for (z = offz; z < tz1; z++)
3976                             {
3977                                 fftgrid[i0+z] += grid_th[i0t+z];
3978                             }
3979                         }
3980                     }
3981                 }
3982                 else
3983                 {
3984                     /* The order of this conditional decides
3985                      * where the corner volume gets stored with x+y decomp.
3986                      */
3987                     if (bCommY)
3988                     {
3989                         commbuf = commbuf_y;
3990                         /* The y-size of the communication buffer is order-1 */
3991                         buf_my  = pmegrid->order - 1;
3992                         if (bCommX)
3993                         {
3994                             /* We index commbuf modulo the local grid size */
3995                             commbuf += buf_my*fft_nx*fft_nz;
3996
3997                             bClearBuf   = bClearBufXY;
3998                             bClearBufXY = FALSE;
3999                         }
4000                         else
4001                         {
4002                             bClearBuf  = bClearBufY;
4003                             bClearBufY = FALSE;
4004                         }
4005                     }
4006                     else
4007                     {
4008                         commbuf    = commbuf_x;
4009                         buf_my     = fft_ny;
4010                         bClearBuf  = bClearBufX;
4011                         bClearBufX = FALSE;
4012                     }
4013
4014                     /* Copy to the communication buffer */
4015                     for (x = offx; x < tx1; x++)
4016                     {
4017                         for (y = offy; y < ty1; y++)
4018                         {
4019                             i0  = (x*buf_my + y)*fft_nz;
4020                             i0t = ((x - ox)*nsy + (y - oy))*nsz - oz;
4021
4022                             if (bClearBuf)
4023                             {
4024                                 /* First access of commbuf, initialize it */
4025                                 for (z = offz; z < tz1; z++)
4026                                 {
4027                                     commbuf[i0+z]  = grid_th[i0t+z];
4028                                 }
4029                             }
4030                             else
4031                             {
4032                                 for (z = offz; z < tz1; z++)
4033                                 {
4034                                     commbuf[i0+z] += grid_th[i0t+z];
4035                                 }
4036                             }
4037                         }
4038                     }
4039                 }
4040             }
4041         }
4042     }
4043 }
4044
4045
4046 static void sum_fftgrid_dd(gmx_pme_t pme, real *fftgrid, int grid_index)
4047 {
4048     ivec local_fft_ndata, local_fft_offset, local_fft_size;
4049     pme_overlap_t *overlap;
4050     int  send_index0, send_nindex;
4051     int  recv_nindex;
4052 #ifdef GMX_MPI
4053     MPI_Status stat;
4054 #endif
4055     int  send_size_y, recv_size_y;
4056     int  ipulse, send_id, recv_id, datasize, gridsize, size_yx;
4057     real *sendptr, *recvptr;
4058     int  x, y, z, indg, indb;
4059
4060     /* Note that this routine is only used for forward communication.
4061      * Since the force gathering, unlike the coefficient spreading,
4062      * can be trivially parallelized over the particles,
4063      * the backwards process is much simpler and can use the "old"
4064      * communication setup.
4065      */
4066
4067     gmx_parallel_3dfft_real_limits(pme->pfft_setup[grid_index],
4068                                    local_fft_ndata,
4069                                    local_fft_offset,
4070                                    local_fft_size);
4071
4072     if (pme->nnodes_minor > 1)
4073     {
4074         /* Major dimension */
4075         overlap = &pme->overlap[1];
4076
4077         if (pme->nnodes_major > 1)
4078         {
4079             size_yx = pme->overlap[0].comm_data[0].send_nindex;
4080         }
4081         else
4082         {
4083             size_yx = 0;
4084         }
4085         datasize = (local_fft_ndata[XX] + size_yx)*local_fft_ndata[ZZ];
4086
4087         send_size_y = overlap->send_size;
4088
4089         for (ipulse = 0; ipulse < overlap->noverlap_nodes; ipulse++)
4090         {
4091             send_id       = overlap->send_id[ipulse];
4092             recv_id       = overlap->recv_id[ipulse];
4093             send_index0   =
4094                 overlap->comm_data[ipulse].send_index0 -
4095                 overlap->comm_data[0].send_index0;
4096             send_nindex   = overlap->comm_data[ipulse].send_nindex;
4097             /* We don't use recv_index0, as we always receive starting at 0 */
4098             recv_nindex   = overlap->comm_data[ipulse].recv_nindex;
4099             recv_size_y   = overlap->comm_data[ipulse].recv_size;
4100
4101             sendptr = overlap->sendbuf + send_index0*local_fft_ndata[ZZ];
4102             recvptr = overlap->recvbuf;
4103
4104 #ifdef GMX_MPI
4105             MPI_Sendrecv(sendptr, send_size_y*datasize, GMX_MPI_REAL,
4106                          send_id, ipulse,
4107                          recvptr, recv_size_y*datasize, GMX_MPI_REAL,
4108                          recv_id, ipulse,
4109                          overlap->mpi_comm, &stat);
4110 #endif
4111
4112             for (x = 0; x < local_fft_ndata[XX]; x++)
4113             {
4114                 for (y = 0; y < recv_nindex; y++)
4115                 {
4116                     indg = (x*local_fft_size[YY] + y)*local_fft_size[ZZ];
4117                     indb = (x*recv_size_y        + y)*local_fft_ndata[ZZ];
4118                     for (z = 0; z < local_fft_ndata[ZZ]; z++)
4119                     {
4120                         fftgrid[indg+z] += recvptr[indb+z];
4121                     }
4122                 }
4123             }
4124
4125             if (pme->nnodes_major > 1)
4126             {
4127                 /* Copy from the received buffer to the send buffer for dim 0 */
4128                 sendptr = pme->overlap[0].sendbuf;
4129                 for (x = 0; x < size_yx; x++)
4130                 {
4131                     for (y = 0; y < recv_nindex; y++)
4132                     {
4133                         indg = (x*local_fft_ndata[YY] + y)*local_fft_ndata[ZZ];
4134                         indb = ((local_fft_ndata[XX] + x)*recv_size_y + y)*local_fft_ndata[ZZ];
4135                         for (z = 0; z < local_fft_ndata[ZZ]; z++)
4136                         {
4137                             sendptr[indg+z] += recvptr[indb+z];
4138                         }
4139                     }
4140                 }
4141             }
4142         }
4143     }
4144
4145     /* We only support a single pulse here.
4146      * This is not a severe limitation, as this code is only used
4147      * with OpenMP and with OpenMP the (PME) domains can be larger.
4148      */
4149     if (pme->nnodes_major > 1)
4150     {
4151         /* Major dimension */
4152         overlap = &pme->overlap[0];
4153
4154         datasize = local_fft_ndata[YY]*local_fft_ndata[ZZ];
4155         gridsize = local_fft_size[YY] *local_fft_size[ZZ];
4156
4157         ipulse = 0;
4158
4159         send_id       = overlap->send_id[ipulse];
4160         recv_id       = overlap->recv_id[ipulse];
4161         send_nindex   = overlap->comm_data[ipulse].send_nindex;
4162         /* We don't use recv_index0, as we always receive starting at 0 */
4163         recv_nindex   = overlap->comm_data[ipulse].recv_nindex;
4164
4165         sendptr = overlap->sendbuf;
4166         recvptr = overlap->recvbuf;
4167
4168         if (debug != NULL)
4169         {
4170             fprintf(debug, "PME fftgrid comm %2d x %2d x %2d\n",
4171                     send_nindex, local_fft_ndata[YY], local_fft_ndata[ZZ]);
4172         }
4173
4174 #ifdef GMX_MPI
4175         MPI_Sendrecv(sendptr, send_nindex*datasize, GMX_MPI_REAL,
4176                      send_id, ipulse,
4177                      recvptr, recv_nindex*datasize, GMX_MPI_REAL,
4178                      recv_id, ipulse,
4179                      overlap->mpi_comm, &stat);
4180 #endif
4181
4182         for (x = 0; x < recv_nindex; x++)
4183         {
4184             for (y = 0; y < local_fft_ndata[YY]; y++)
4185             {
4186                 indg = (x*local_fft_size[YY]  + y)*local_fft_size[ZZ];
4187                 indb = (x*local_fft_ndata[YY] + y)*local_fft_ndata[ZZ];
4188                 for (z = 0; z < local_fft_ndata[ZZ]; z++)
4189                 {
4190                     fftgrid[indg+z] += recvptr[indb+z];
4191                 }
4192             }
4193         }
4194     }
4195 }
4196
4197
4198 static void spread_on_grid(gmx_pme_t pme,
4199                            pme_atomcomm_t *atc, pmegrids_t *grids,
4200                            gmx_bool bCalcSplines, gmx_bool bSpread,
4201                            real *fftgrid, gmx_bool bDoSplines, int grid_index)
4202 {
4203     int nthread, thread;
4204 #ifdef PME_TIME_THREADS
4205     gmx_cycles_t c1, c2, c3, ct1a, ct1b, ct1c;
4206     static double cs1     = 0, cs2 = 0, cs3 = 0;
4207     static double cs1a[6] = {0, 0, 0, 0, 0, 0};
4208     static int cnt        = 0;
4209 #endif
4210
4211     nthread = pme->nthread;
4212     assert(nthread > 0);
4213
4214 #ifdef PME_TIME_THREADS
4215     c1 = omp_cyc_start();
4216 #endif
4217     if (bCalcSplines)
4218     {
4219 #pragma omp parallel for num_threads(nthread) schedule(static)
4220         for (thread = 0; thread < nthread; thread++)
4221         {
4222             int start, end;
4223
4224             start = atc->n* thread   /nthread;
4225             end   = atc->n*(thread+1)/nthread;
4226
4227             /* Compute fftgrid index for all atoms,
4228              * with help of some extra variables.
4229              */
4230             calc_interpolation_idx(pme, atc, start, grid_index, end, thread);
4231         }
4232     }
4233 #ifdef PME_TIME_THREADS
4234     c1   = omp_cyc_end(c1);
4235     cs1 += (double)c1;
4236 #endif
4237
4238 #ifdef PME_TIME_THREADS
4239     c2 = omp_cyc_start();
4240 #endif
4241 #pragma omp parallel for num_threads(nthread) schedule(static)
4242     for (thread = 0; thread < nthread; thread++)
4243     {
4244         splinedata_t *spline;
4245         pmegrid_t *grid = NULL;
4246
4247         /* make local bsplines  */
4248         if (grids == NULL || !pme->bUseThreads)
4249         {
4250             spline = &atc->spline[0];
4251
4252             spline->n = atc->n;
4253
4254             if (bSpread)
4255             {
4256                 grid = &grids->grid;
4257             }
4258         }
4259         else
4260         {
4261             spline = &atc->spline[thread];
4262
4263             if (grids->nthread == 1)
4264             {
4265                 /* One thread, we operate on all coefficients */
4266                 spline->n = atc->n;
4267             }
4268             else
4269             {
4270                 /* Get the indices our thread should operate on */
4271                 make_thread_local_ind(atc, thread, spline);
4272             }
4273
4274             grid = &grids->grid_th[thread];
4275         }
4276
4277         if (bCalcSplines)
4278         {
4279             make_bsplines(spline->theta, spline->dtheta, pme->pme_order,
4280                           atc->fractx, spline->n, spline->ind, atc->coefficient, bDoSplines);
4281         }
4282
4283         if (bSpread)
4284         {
4285             /* put local atoms on grid. */
4286 #ifdef PME_TIME_SPREAD
4287             ct1a = omp_cyc_start();
4288 #endif
4289             spread_coefficients_bsplines_thread(grid, atc, spline, pme->spline_work);
4290
4291             if (pme->bUseThreads)
4292             {
4293                 copy_local_grid(pme, grids, grid_index, thread, fftgrid);
4294             }
4295 #ifdef PME_TIME_SPREAD
4296             ct1a          = omp_cyc_end(ct1a);
4297             cs1a[thread] += (double)ct1a;
4298 #endif
4299         }
4300     }
4301 #ifdef PME_TIME_THREADS
4302     c2   = omp_cyc_end(c2);
4303     cs2 += (double)c2;
4304 #endif
4305
4306     if (bSpread && pme->bUseThreads)
4307     {
4308 #ifdef PME_TIME_THREADS
4309         c3 = omp_cyc_start();
4310 #endif
4311 #pragma omp parallel for num_threads(grids->nthread) schedule(static)
4312         for (thread = 0; thread < grids->nthread; thread++)
4313         {
4314             reduce_threadgrid_overlap(pme, grids, thread,
4315                                       fftgrid,
4316                                       pme->overlap[0].sendbuf,
4317                                       pme->overlap[1].sendbuf,
4318                                       grid_index);
4319         }
4320 #ifdef PME_TIME_THREADS
4321         c3   = omp_cyc_end(c3);
4322         cs3 += (double)c3;
4323 #endif
4324
4325         if (pme->nnodes > 1)
4326         {
4327             /* Communicate the overlapping part of the fftgrid.
4328              * For this communication call we need to check pme->bUseThreads
4329              * to have all ranks communicate here, regardless of pme->nthread.
4330              */
4331             sum_fftgrid_dd(pme, fftgrid, grid_index);
4332         }
4333     }
4334
4335 #ifdef PME_TIME_THREADS
4336     cnt++;
4337     if (cnt % 20 == 0)
4338     {
4339         printf("idx %.2f spread %.2f red %.2f",
4340                cs1*1e-9, cs2*1e-9, cs3*1e-9);
4341 #ifdef PME_TIME_SPREAD
4342         for (thread = 0; thread < nthread; thread++)
4343         {
4344             printf(" %.2f", cs1a[thread]*1e-9);
4345         }
4346 #endif
4347         printf("\n");
4348     }
4349 #endif
4350 }
4351
4352
4353 static void dump_grid(FILE *fp,
4354                       int sx, int sy, int sz, int nx, int ny, int nz,
4355                       int my, int mz, const real *g)
4356 {
4357     int x, y, z;
4358
4359     for (x = 0; x < nx; x++)
4360     {
4361         for (y = 0; y < ny; y++)
4362         {
4363             for (z = 0; z < nz; z++)
4364             {
4365                 fprintf(fp, "%2d %2d %2d %6.3f\n",
4366                         sx+x, sy+y, sz+z, g[(x*my + y)*mz + z]);
4367             }
4368         }
4369     }
4370 }
4371
4372 static void dump_local_fftgrid(gmx_pme_t pme, const real *fftgrid)
4373 {
4374     ivec local_fft_ndata, local_fft_offset, local_fft_size;
4375
4376     gmx_parallel_3dfft_real_limits(pme->pfft_setup[PME_GRID_QA],
4377                                    local_fft_ndata,
4378                                    local_fft_offset,
4379                                    local_fft_size);
4380
4381     dump_grid(stderr,
4382               pme->pmegrid_start_ix,
4383               pme->pmegrid_start_iy,
4384               pme->pmegrid_start_iz,
4385               pme->pmegrid_nx-pme->pme_order+1,
4386               pme->pmegrid_ny-pme->pme_order+1,
4387               pme->pmegrid_nz-pme->pme_order+1,
4388               local_fft_size[YY],
4389               local_fft_size[ZZ],
4390               fftgrid);
4391 }
4392
4393
4394 void gmx_pme_calc_energy(gmx_pme_t pme, int n, rvec *x, real *q, real *V)
4395 {
4396     pme_atomcomm_t *atc;
4397     pmegrids_t *grid;
4398
4399     if (pme->nnodes > 1)
4400     {
4401         gmx_incons("gmx_pme_calc_energy called in parallel");
4402     }
4403     if (pme->bFEP_q > 1)
4404     {
4405         gmx_incons("gmx_pme_calc_energy with free energy");
4406     }
4407
4408     atc            = &pme->atc_energy;
4409     atc->nthread   = 1;
4410     if (atc->spline == NULL)
4411     {
4412         snew(atc->spline, atc->nthread);
4413     }
4414     atc->nslab     = 1;
4415     atc->bSpread   = TRUE;
4416     atc->pme_order = pme->pme_order;
4417     atc->n         = n;
4418     pme_realloc_atomcomm_things(atc);
4419     atc->x           = x;
4420     atc->coefficient = q;
4421
4422     /* We only use the A-charges grid */
4423     grid = &pme->pmegrid[PME_GRID_QA];
4424
4425     /* Only calculate the spline coefficients, don't actually spread */
4426     spread_on_grid(pme, atc, NULL, TRUE, FALSE, pme->fftgrid[PME_GRID_QA], FALSE, PME_GRID_QA);
4427
4428     *V = gather_energy_bsplines(pme, grid->grid.grid, atc);
4429 }
4430
4431
4432 static void reset_pmeonly_counters(gmx_wallcycle_t wcycle,
4433                                    gmx_walltime_accounting_t walltime_accounting,
4434                                    t_nrnb *nrnb, t_inputrec *ir,
4435                                    gmx_int64_t step)
4436 {
4437     /* Reset all the counters related to performance over the run */
4438     wallcycle_stop(wcycle, ewcRUN);
4439     wallcycle_reset_all(wcycle);
4440     init_nrnb(nrnb);
4441     if (ir->nsteps >= 0)
4442     {
4443         /* ir->nsteps is not used here, but we update it for consistency */
4444         ir->nsteps -= step - ir->init_step;
4445     }
4446     ir->init_step = step;
4447     wallcycle_start(wcycle, ewcRUN);
4448     walltime_accounting_start(walltime_accounting);
4449 }
4450
4451
4452 static void gmx_pmeonly_switch(int *npmedata, gmx_pme_t **pmedata,
4453                                ivec grid_size,
4454                                t_commrec *cr, t_inputrec *ir,
4455                                gmx_pme_t *pme_ret)
4456 {
4457     int ind;
4458     gmx_pme_t pme = NULL;
4459
4460     ind = 0;
4461     while (ind < *npmedata)
4462     {
4463         pme = (*pmedata)[ind];
4464         if (pme->nkx == grid_size[XX] &&
4465             pme->nky == grid_size[YY] &&
4466             pme->nkz == grid_size[ZZ])
4467         {
4468             *pme_ret = pme;
4469
4470             return;
4471         }
4472
4473         ind++;
4474     }
4475
4476     (*npmedata)++;
4477     srenew(*pmedata, *npmedata);
4478
4479     /* Generate a new PME data structure, copying part of the old pointers */
4480     gmx_pme_reinit(&((*pmedata)[ind]), cr, pme, ir, grid_size);
4481
4482     *pme_ret = (*pmedata)[ind];
4483 }
4484
4485 int gmx_pmeonly(gmx_pme_t pme,
4486                 t_commrec *cr,    t_nrnb *mynrnb,
4487                 gmx_wallcycle_t wcycle,
4488                 gmx_walltime_accounting_t walltime_accounting,
4489                 real ewaldcoeff_q, real ewaldcoeff_lj,
4490                 t_inputrec *ir)
4491 {
4492     int npmedata;
4493     gmx_pme_t *pmedata;
4494     gmx_pme_pp_t pme_pp;
4495     int  ret;
4496     int  natoms;
4497     matrix box;
4498     rvec *x_pp      = NULL, *f_pp = NULL;
4499     real *chargeA   = NULL, *chargeB = NULL;
4500     real *c6A       = NULL, *c6B = NULL;
4501     real *sigmaA    = NULL, *sigmaB = NULL;
4502     real lambda_q   = 0;
4503     real lambda_lj  = 0;
4504     int  maxshift_x = 0, maxshift_y = 0;
4505     real energy_q, energy_lj, dvdlambda_q, dvdlambda_lj;
4506     matrix vir_q, vir_lj;
4507     float cycles;
4508     int  count;
4509     gmx_bool bEnerVir;
4510     int pme_flags;
4511     gmx_int64_t step, step_rel;
4512     ivec grid_switch;
4513
4514     /* This data will only use with PME tuning, i.e. switching PME grids */
4515     npmedata = 1;
4516     snew(pmedata, npmedata);
4517     pmedata[0] = pme;
4518
4519     pme_pp = gmx_pme_pp_init(cr);
4520
4521     init_nrnb(mynrnb);
4522
4523     count = 0;
4524     do /****** this is a quasi-loop over time steps! */
4525     {
4526         /* The reason for having a loop here is PME grid tuning/switching */
4527         do
4528         {
4529             /* Domain decomposition */
4530             ret = gmx_pme_recv_coeffs_coords(pme_pp,
4531                                              &natoms,
4532                                              &chargeA, &chargeB,
4533                                              &c6A, &c6B,
4534                                              &sigmaA, &sigmaB,
4535                                              box, &x_pp, &f_pp,
4536                                              &maxshift_x, &maxshift_y,
4537                                              &pme->bFEP_q, &pme->bFEP_lj,
4538                                              &lambda_q, &lambda_lj,
4539                                              &bEnerVir,
4540                                              &pme_flags,
4541                                              &step,
4542                                              grid_switch, &ewaldcoeff_q, &ewaldcoeff_lj);
4543
4544             if (ret == pmerecvqxSWITCHGRID)
4545             {
4546                 /* Switch the PME grid to grid_switch */
4547                 gmx_pmeonly_switch(&npmedata, &pmedata, grid_switch, cr, ir, &pme);
4548             }
4549
4550             if (ret == pmerecvqxRESETCOUNTERS)
4551             {
4552                 /* Reset the cycle and flop counters */
4553                 reset_pmeonly_counters(wcycle, walltime_accounting, mynrnb, ir, step);
4554             }
4555         }
4556         while (ret == pmerecvqxSWITCHGRID || ret == pmerecvqxRESETCOUNTERS);
4557
4558         if (ret == pmerecvqxFINISH)
4559         {
4560             /* We should stop: break out of the loop */
4561             break;
4562         }
4563
4564         step_rel = step - ir->init_step;
4565
4566         if (count == 0)
4567         {
4568             wallcycle_start(wcycle, ewcRUN);
4569             walltime_accounting_start(walltime_accounting);
4570         }
4571
4572         wallcycle_start(wcycle, ewcPMEMESH);
4573
4574         dvdlambda_q  = 0;
4575         dvdlambda_lj = 0;
4576         clear_mat(vir_q);
4577         clear_mat(vir_lj);
4578
4579         gmx_pme_do(pme, 0, natoms, x_pp, f_pp,
4580                    chargeA, chargeB, c6A, c6B, sigmaA, sigmaB, box,
4581                    cr, maxshift_x, maxshift_y, mynrnb, wcycle,
4582                    vir_q, ewaldcoeff_q, vir_lj, ewaldcoeff_lj,
4583                    &energy_q, &energy_lj, lambda_q, lambda_lj, &dvdlambda_q, &dvdlambda_lj,
4584                    pme_flags | GMX_PME_DO_ALL_F | (bEnerVir ? GMX_PME_CALC_ENER_VIR : 0));
4585
4586         cycles = wallcycle_stop(wcycle, ewcPMEMESH);
4587
4588         gmx_pme_send_force_vir_ener(pme_pp,
4589                                     f_pp, vir_q, energy_q, vir_lj, energy_lj,
4590                                     dvdlambda_q, dvdlambda_lj, cycles);
4591
4592         count++;
4593     } /***** end of quasi-loop, we stop with the break above */
4594     while (TRUE);
4595
4596     walltime_accounting_end(walltime_accounting);
4597
4598     return 0;
4599 }
4600
4601 static void
4602 calc_initial_lb_coeffs(gmx_pme_t pme, real *local_c6, real *local_sigma)
4603 {
4604     int  i;
4605
4606     for (i = 0; i < pme->atc[0].n; ++i)
4607     {
4608         real sigma4;
4609
4610         sigma4                     = local_sigma[i];
4611         sigma4                     = sigma4*sigma4;
4612         sigma4                     = sigma4*sigma4;
4613         pme->atc[0].coefficient[i] = local_c6[i] / sigma4;
4614     }
4615 }
4616
4617 static void
4618 calc_next_lb_coeffs(gmx_pme_t pme, real *local_sigma)
4619 {
4620     int  i;
4621
4622     for (i = 0; i < pme->atc[0].n; ++i)
4623     {
4624         pme->atc[0].coefficient[i] *= local_sigma[i];
4625     }
4626 }
4627
4628 static void
4629 do_redist_pos_coeffs(gmx_pme_t pme, t_commrec *cr, int start, int homenr,
4630                      gmx_bool bFirst, rvec x[], real *data)
4631 {
4632     int      d;
4633     pme_atomcomm_t *atc;
4634     atc = &pme->atc[0];
4635
4636     for (d = pme->ndecompdim - 1; d >= 0; d--)
4637     {
4638         int             n_d;
4639         rvec           *x_d;
4640         real           *param_d;
4641
4642         if (d == pme->ndecompdim - 1)
4643         {
4644             n_d     = homenr;
4645             x_d     = x + start;
4646             param_d = data;
4647         }
4648         else
4649         {
4650             n_d     = pme->atc[d + 1].n;
4651             x_d     = atc->x;
4652             param_d = atc->coefficient;
4653         }
4654         atc      = &pme->atc[d];
4655         atc->npd = n_d;
4656         if (atc->npd > atc->pd_nalloc)
4657         {
4658             atc->pd_nalloc = over_alloc_dd(atc->npd);
4659             srenew(atc->pd, atc->pd_nalloc);
4660         }
4661         pme_calc_pidx_wrapper(n_d, pme->recipbox, x_d, atc);
4662         where();
4663         /* Redistribute x (only once) and qA/c6A or qB/c6B */
4664         if (DOMAINDECOMP(cr))
4665         {
4666             dd_pmeredist_pos_coeffs(pme, n_d, bFirst, x_d, param_d, atc);
4667         }
4668     }
4669 }
4670
4671 int gmx_pme_do(gmx_pme_t pme,
4672                int start,       int homenr,
4673                rvec x[],        rvec f[],
4674                real *chargeA,   real *chargeB,
4675                real *c6A,       real *c6B,
4676                real *sigmaA,    real *sigmaB,
4677                matrix box, t_commrec *cr,
4678                int  maxshift_x, int maxshift_y,
4679                t_nrnb *nrnb,    gmx_wallcycle_t wcycle,
4680                matrix vir_q,      real ewaldcoeff_q,
4681                matrix vir_lj,   real ewaldcoeff_lj,
4682                real *energy_q,  real *energy_lj,
4683                real lambda_q, real lambda_lj,
4684                real *dvdlambda_q, real *dvdlambda_lj,
4685                int flags)
4686 {
4687     int     d, i, j, k, ntot, npme, grid_index, max_grid_index;
4688     int     nx, ny, nz;
4689     int     n_d, local_ny;
4690     pme_atomcomm_t *atc = NULL;
4691     pmegrids_t *pmegrid = NULL;
4692     real    *grid       = NULL;
4693     real    *ptr;
4694     rvec    *x_d, *f_d;
4695     real    *coefficient = NULL;
4696     real    energy_AB[4];
4697     matrix  vir_AB[4];
4698     real    scale, lambda;
4699     gmx_bool bClearF;
4700     gmx_parallel_3dfft_t pfft_setup;
4701     real *  fftgrid;
4702     t_complex * cfftgrid;
4703     int     thread;
4704     gmx_bool bFirst, bDoSplines;
4705     int fep_state;
4706     int fep_states_lj           = pme->bFEP_lj ? 2 : 1;
4707     const gmx_bool bCalcEnerVir = flags & GMX_PME_CALC_ENER_VIR;
4708     const gmx_bool bCalcF       = flags & GMX_PME_CALC_F;
4709
4710     assert(pme->nnodes > 0);
4711     assert(pme->nnodes == 1 || pme->ndecompdim > 0);
4712
4713     if (pme->nnodes > 1)
4714     {
4715         atc      = &pme->atc[0];
4716         atc->npd = homenr;
4717         if (atc->npd > atc->pd_nalloc)
4718         {
4719             atc->pd_nalloc = over_alloc_dd(atc->npd);
4720             srenew(atc->pd, atc->pd_nalloc);
4721         }
4722         for (d = pme->ndecompdim-1; d >= 0; d--)
4723         {
4724             atc           = &pme->atc[d];
4725             atc->maxshift = (atc->dimind == 0 ? maxshift_x : maxshift_y);
4726         }
4727     }
4728     else
4729     {
4730         atc = &pme->atc[0];
4731         /* This could be necessary for TPI */
4732         pme->atc[0].n = homenr;
4733         if (DOMAINDECOMP(cr))
4734         {
4735             pme_realloc_atomcomm_things(atc);
4736         }
4737         atc->x = x;
4738         atc->f = f;
4739     }
4740
4741     m_inv_ur0(box, pme->recipbox);
4742     bFirst = TRUE;
4743
4744     /* For simplicity, we construct the splines for all particles if
4745      * more than one PME calculations is needed. Some optimization
4746      * could be done by keeping track of which atoms have splines
4747      * constructed, and construct new splines on each pass for atoms
4748      * that don't yet have them.
4749      */
4750
4751     bDoSplines = pme->bFEP || ((flags & GMX_PME_DO_COULOMB) && (flags & GMX_PME_DO_LJ));
4752
4753     /* We need a maximum of four separate PME calculations:
4754      * grid_index=0: Coulomb PME with charges from state A
4755      * grid_index=1: Coulomb PME with charges from state B
4756      * grid_index=2: LJ PME with C6 from state A
4757      * grid_index=3: LJ PME with C6 from state B
4758      * For Lorentz-Berthelot combination rules, a separate loop is used to
4759      * calculate all the terms
4760      */
4761
4762     /* If we are doing LJ-PME with LB, we only do Q here */
4763     max_grid_index = (pme->ljpme_combination_rule == eljpmeLB) ? DO_Q : DO_Q_AND_LJ;
4764
4765     for (grid_index = 0; grid_index < max_grid_index; ++grid_index)
4766     {
4767         /* Check if we should do calculations at this grid_index
4768          * If grid_index is odd we should be doing FEP
4769          * If grid_index < 2 we should be doing electrostatic PME
4770          * If grid_index >= 2 we should be doing LJ-PME
4771          */
4772         if ((grid_index <  DO_Q && (!(flags & GMX_PME_DO_COULOMB) ||
4773                                     (grid_index == 1 && !pme->bFEP_q))) ||
4774             (grid_index >= DO_Q && (!(flags & GMX_PME_DO_LJ) ||
4775                                     (grid_index == 3 && !pme->bFEP_lj))))
4776         {
4777             continue;
4778         }
4779         /* Unpack structure */
4780         pmegrid    = &pme->pmegrid[grid_index];
4781         fftgrid    = pme->fftgrid[grid_index];
4782         cfftgrid   = pme->cfftgrid[grid_index];
4783         pfft_setup = pme->pfft_setup[grid_index];
4784         switch (grid_index)
4785         {
4786             case 0: coefficient = chargeA + start; break;
4787             case 1: coefficient = chargeB + start; break;
4788             case 2: coefficient = c6A + start; break;
4789             case 3: coefficient = c6B + start; break;
4790         }
4791
4792         grid = pmegrid->grid.grid;
4793
4794         if (debug)
4795         {
4796             fprintf(debug, "PME: number of ranks = %d, rank = %d\n",
4797                     cr->nnodes, cr->nodeid);
4798             fprintf(debug, "Grid = %p\n", (void*)grid);
4799             if (grid == NULL)
4800             {
4801                 gmx_fatal(FARGS, "No grid!");
4802             }
4803         }
4804         where();
4805
4806         if (pme->nnodes == 1)
4807         {
4808             atc->coefficient = coefficient;
4809         }
4810         else
4811         {
4812             wallcycle_start(wcycle, ewcPME_REDISTXF);
4813             do_redist_pos_coeffs(pme, cr, start, homenr, bFirst, x, coefficient);
4814             where();
4815
4816             wallcycle_stop(wcycle, ewcPME_REDISTXF);
4817         }
4818
4819         if (debug)
4820         {
4821             fprintf(debug, "Rank= %6d, pme local particles=%6d\n",
4822                     cr->nodeid, atc->n);
4823         }
4824
4825         if (flags & GMX_PME_SPREAD)
4826         {
4827             wallcycle_start(wcycle, ewcPME_SPREADGATHER);
4828
4829             /* Spread the coefficients on a grid */
4830             spread_on_grid(pme, &pme->atc[0], pmegrid, bFirst, TRUE, fftgrid, bDoSplines, grid_index);
4831
4832             if (bFirst)
4833             {
4834                 inc_nrnb(nrnb, eNR_WEIGHTS, DIM*atc->n);
4835             }
4836             inc_nrnb(nrnb, eNR_SPREADBSP,
4837                      pme->pme_order*pme->pme_order*pme->pme_order*atc->n);
4838
4839             if (!pme->bUseThreads)
4840             {
4841                 wrap_periodic_pmegrid(pme, grid);
4842
4843                 /* sum contributions to local grid from other nodes */
4844 #ifdef GMX_MPI
4845                 if (pme->nnodes > 1)
4846                 {
4847                     gmx_sum_qgrid_dd(pme, grid, GMX_SUM_GRID_FORWARD);
4848                     where();
4849                 }
4850 #endif
4851
4852                 copy_pmegrid_to_fftgrid(pme, grid, fftgrid, grid_index);
4853             }
4854
4855             wallcycle_stop(wcycle, ewcPME_SPREADGATHER);
4856
4857             /*
4858                dump_local_fftgrid(pme,fftgrid);
4859                exit(0);
4860              */
4861         }
4862
4863         /* Here we start a large thread parallel region */
4864 #pragma omp parallel num_threads(pme->nthread) private(thread)
4865         {
4866             thread = gmx_omp_get_thread_num();
4867             if (flags & GMX_PME_SOLVE)
4868             {
4869                 int loop_count;
4870
4871                 /* do 3d-fft */
4872                 if (thread == 0)
4873                 {
4874                     wallcycle_start(wcycle, ewcPME_FFT);
4875                 }
4876                 gmx_parallel_3dfft_execute(pfft_setup, GMX_FFT_REAL_TO_COMPLEX,
4877                                            thread, wcycle);
4878                 if (thread == 0)
4879                 {
4880                     wallcycle_stop(wcycle, ewcPME_FFT);
4881                 }
4882                 where();
4883
4884                 /* solve in k-space for our local cells */
4885                 if (thread == 0)
4886                 {
4887                     wallcycle_start(wcycle, (grid_index < DO_Q ? ewcPME_SOLVE : ewcLJPME));
4888                 }
4889                 if (grid_index < DO_Q)
4890                 {
4891                     loop_count =
4892                         solve_pme_yzx(pme, cfftgrid, ewaldcoeff_q,
4893                                       box[XX][XX]*box[YY][YY]*box[ZZ][ZZ],
4894                                       bCalcEnerVir,
4895                                       pme->nthread, thread);
4896                 }
4897                 else
4898                 {
4899                     loop_count =
4900                         solve_pme_lj_yzx(pme, &cfftgrid, FALSE, ewaldcoeff_lj,
4901                                          box[XX][XX]*box[YY][YY]*box[ZZ][ZZ],
4902                                          bCalcEnerVir,
4903                                          pme->nthread, thread);
4904                 }
4905
4906                 if (thread == 0)
4907                 {
4908                     wallcycle_stop(wcycle, (grid_index < DO_Q ? ewcPME_SOLVE : ewcLJPME));
4909                     where();
4910                     inc_nrnb(nrnb, eNR_SOLVEPME, loop_count);
4911                 }
4912             }
4913
4914             if (bCalcF)
4915             {
4916                 /* do 3d-invfft */
4917                 if (thread == 0)
4918                 {
4919                     where();
4920                     wallcycle_start(wcycle, ewcPME_FFT);
4921                 }
4922                 gmx_parallel_3dfft_execute(pfft_setup, GMX_FFT_COMPLEX_TO_REAL,
4923                                            thread, wcycle);
4924                 if (thread == 0)
4925                 {
4926                     wallcycle_stop(wcycle, ewcPME_FFT);
4927
4928                     where();
4929
4930                     if (pme->nodeid == 0)
4931                     {
4932                         ntot  = pme->nkx*pme->nky*pme->nkz;
4933                         npme  = ntot*log((real)ntot)/log(2.0);
4934                         inc_nrnb(nrnb, eNR_FFT, 2*npme);
4935                     }
4936
4937                     /* Note: this wallcycle region is closed below
4938                        outside an OpenMP region, so take care if
4939                        refactoring code here. */
4940                     wallcycle_start(wcycle, ewcPME_SPREADGATHER);
4941                 }
4942
4943                 copy_fftgrid_to_pmegrid(pme, fftgrid, grid, grid_index, pme->nthread, thread);
4944             }
4945         }
4946         /* End of thread parallel section.
4947          * With MPI we have to synchronize here before gmx_sum_qgrid_dd.
4948          */
4949
4950         if (bCalcF)
4951         {
4952             /* distribute local grid to all nodes */
4953 #ifdef GMX_MPI
4954             if (pme->nnodes > 1)
4955             {
4956                 gmx_sum_qgrid_dd(pme, grid, GMX_SUM_GRID_BACKWARD);
4957             }
4958 #endif
4959             where();
4960
4961             unwrap_periodic_pmegrid(pme, grid);
4962
4963             /* interpolate forces for our local atoms */
4964
4965             where();
4966
4967             /* If we are running without parallelization,
4968              * atc->f is the actual force array, not a buffer,
4969              * therefore we should not clear it.
4970              */
4971             lambda  = grid_index < DO_Q ? lambda_q : lambda_lj;
4972             bClearF = (bFirst && PAR(cr));
4973 #pragma omp parallel for num_threads(pme->nthread) schedule(static)
4974             for (thread = 0; thread < pme->nthread; thread++)
4975             {
4976                 gather_f_bsplines(pme, grid, bClearF, atc,
4977                                   &atc->spline[thread],
4978                                   pme->bFEP ? (grid_index % 2 == 0 ? 1.0-lambda : lambda) : 1.0);
4979             }
4980
4981             where();
4982
4983             inc_nrnb(nrnb, eNR_GATHERFBSP,
4984                      pme->pme_order*pme->pme_order*pme->pme_order*pme->atc[0].n);
4985             /* Note: this wallcycle region is opened above inside an OpenMP
4986                region, so take care if refactoring code here. */
4987             wallcycle_stop(wcycle, ewcPME_SPREADGATHER);
4988         }
4989
4990         if (bCalcEnerVir)
4991         {
4992             /* This should only be called on the master thread
4993              * and after the threads have synchronized.
4994              */
4995             if (grid_index < 2)
4996             {
4997                 get_pme_ener_vir_q(pme, pme->nthread, &energy_AB[grid_index], vir_AB[grid_index]);
4998             }
4999             else
5000             {
5001                 get_pme_ener_vir_lj(pme, pme->nthread, &energy_AB[grid_index], vir_AB[grid_index]);
5002             }
5003         }
5004         bFirst = FALSE;
5005     } /* of grid_index-loop */
5006
5007     /* For Lorentz-Berthelot combination rules in LJ-PME, we need to calculate
5008      * seven terms. */
5009
5010     if ((flags & GMX_PME_DO_LJ) && pme->ljpme_combination_rule == eljpmeLB)
5011     {
5012         /* Loop over A- and B-state if we are doing FEP */
5013         for (fep_state = 0; fep_state < fep_states_lj; ++fep_state)
5014         {
5015             real *local_c6 = NULL, *local_sigma = NULL, *RedistC6 = NULL, *RedistSigma = NULL;
5016             if (pme->nnodes == 1)
5017             {
5018                 if (pme->lb_buf1 == NULL)
5019                 {
5020                     pme->lb_buf_nalloc = pme->atc[0].n;
5021                     snew(pme->lb_buf1, pme->lb_buf_nalloc);
5022                 }
5023                 pme->atc[0].coefficient = pme->lb_buf1;
5024                 switch (fep_state)
5025                 {
5026                     case 0:
5027                         local_c6      = c6A;
5028                         local_sigma   = sigmaA;
5029                         break;
5030                     case 1:
5031                         local_c6      = c6B;
5032                         local_sigma   = sigmaB;
5033                         break;
5034                     default:
5035                         gmx_incons("Trying to access wrong FEP-state in LJ-PME routine");
5036                 }
5037             }
5038             else
5039             {
5040                 atc = &pme->atc[0];
5041                 switch (fep_state)
5042                 {
5043                     case 0:
5044                         RedistC6      = c6A;
5045                         RedistSigma   = sigmaA;
5046                         break;
5047                     case 1:
5048                         RedistC6      = c6B;
5049                         RedistSigma   = sigmaB;
5050                         break;
5051                     default:
5052                         gmx_incons("Trying to access wrong FEP-state in LJ-PME routine");
5053                 }
5054                 wallcycle_start(wcycle, ewcPME_REDISTXF);
5055
5056                 do_redist_pos_coeffs(pme, cr, start, homenr, bFirst, x, RedistC6);
5057                 if (pme->lb_buf_nalloc < atc->n)
5058                 {
5059                     pme->lb_buf_nalloc = atc->nalloc;
5060                     srenew(pme->lb_buf1, pme->lb_buf_nalloc);
5061                     srenew(pme->lb_buf2, pme->lb_buf_nalloc);
5062                 }
5063                 local_c6 = pme->lb_buf1;
5064                 for (i = 0; i < atc->n; ++i)
5065                 {
5066                     local_c6[i] = atc->coefficient[i];
5067                 }
5068                 where();
5069
5070                 do_redist_pos_coeffs(pme, cr, start, homenr, FALSE, x, RedistSigma);
5071                 local_sigma = pme->lb_buf2;
5072                 for (i = 0; i < atc->n; ++i)
5073                 {
5074                     local_sigma[i] = atc->coefficient[i];
5075                 }
5076                 where();
5077
5078                 wallcycle_stop(wcycle, ewcPME_REDISTXF);
5079             }
5080             calc_initial_lb_coeffs(pme, local_c6, local_sigma);
5081
5082             /*Seven terms in LJ-PME with LB, grid_index < 2 reserved for electrostatics*/
5083             for (grid_index = 2; grid_index < 9; ++grid_index)
5084             {
5085                 /* Unpack structure */
5086                 pmegrid    = &pme->pmegrid[grid_index];
5087                 fftgrid    = pme->fftgrid[grid_index];
5088                 cfftgrid   = pme->cfftgrid[grid_index];
5089                 pfft_setup = pme->pfft_setup[grid_index];
5090                 calc_next_lb_coeffs(pme, local_sigma);
5091                 grid = pmegrid->grid.grid;
5092                 where();
5093
5094                 if (flags & GMX_PME_SPREAD)
5095                 {
5096                     wallcycle_start(wcycle, ewcPME_SPREADGATHER);
5097                     /* Spread the c6 on a grid */
5098                     spread_on_grid(pme, &pme->atc[0], pmegrid, bFirst, TRUE, fftgrid, bDoSplines, grid_index);
5099
5100                     if (bFirst)
5101                     {
5102                         inc_nrnb(nrnb, eNR_WEIGHTS, DIM*atc->n);
5103                     }
5104
5105                     inc_nrnb(nrnb, eNR_SPREADBSP,
5106                              pme->pme_order*pme->pme_order*pme->pme_order*atc->n);
5107                     if (pme->nthread == 1)
5108                     {
5109                         wrap_periodic_pmegrid(pme, grid);
5110                         /* sum contributions to local grid from other nodes */
5111 #ifdef GMX_MPI
5112                         if (pme->nnodes > 1)
5113                         {
5114                             gmx_sum_qgrid_dd(pme, grid, GMX_SUM_GRID_FORWARD);
5115                             where();
5116                         }
5117 #endif
5118                         copy_pmegrid_to_fftgrid(pme, grid, fftgrid, grid_index);
5119                     }
5120                     wallcycle_stop(wcycle, ewcPME_SPREADGATHER);
5121                 }
5122                 /*Here we start a large thread parallel region*/
5123 #pragma omp parallel num_threads(pme->nthread) private(thread)
5124                 {
5125                     thread = gmx_omp_get_thread_num();
5126                     if (flags & GMX_PME_SOLVE)
5127                     {
5128                         /* do 3d-fft */
5129                         if (thread == 0)
5130                         {
5131                             wallcycle_start(wcycle, ewcPME_FFT);
5132                         }
5133
5134                         gmx_parallel_3dfft_execute(pfft_setup, GMX_FFT_REAL_TO_COMPLEX,
5135                                                    thread, wcycle);
5136                         if (thread == 0)
5137                         {
5138                             wallcycle_stop(wcycle, ewcPME_FFT);
5139                         }
5140                         where();
5141                     }
5142                 }
5143                 bFirst = FALSE;
5144             }
5145             if (flags & GMX_PME_SOLVE)
5146             {
5147                 /* solve in k-space for our local cells */
5148 #pragma omp parallel num_threads(pme->nthread) private(thread)
5149                 {
5150                     int loop_count;
5151                     thread = gmx_omp_get_thread_num();
5152                     if (thread == 0)
5153                     {
5154                         wallcycle_start(wcycle, ewcLJPME);
5155                     }
5156
5157                     loop_count =
5158                         solve_pme_lj_yzx(pme, &pme->cfftgrid[2], TRUE, ewaldcoeff_lj,
5159                                          box[XX][XX]*box[YY][YY]*box[ZZ][ZZ],
5160                                          bCalcEnerVir,
5161                                          pme->nthread, thread);
5162                     if (thread == 0)
5163                     {
5164                         wallcycle_stop(wcycle, ewcLJPME);
5165                         where();
5166                         inc_nrnb(nrnb, eNR_SOLVEPME, loop_count);
5167                     }
5168                 }
5169             }
5170
5171             if (bCalcEnerVir)
5172             {
5173                 /* This should only be called on the master thread and
5174                  * after the threads have synchronized.
5175                  */
5176                 get_pme_ener_vir_lj(pme, pme->nthread, &energy_AB[2+fep_state], vir_AB[2+fep_state]);
5177             }
5178
5179             if (bCalcF)
5180             {
5181                 bFirst = !(flags & GMX_PME_DO_COULOMB);
5182                 calc_initial_lb_coeffs(pme, local_c6, local_sigma);
5183                 for (grid_index = 8; grid_index >= 2; --grid_index)
5184                 {
5185                     /* Unpack structure */
5186                     pmegrid    = &pme->pmegrid[grid_index];
5187                     fftgrid    = pme->fftgrid[grid_index];
5188                     cfftgrid   = pme->cfftgrid[grid_index];
5189                     pfft_setup = pme->pfft_setup[grid_index];
5190                     grid       = pmegrid->grid.grid;
5191                     calc_next_lb_coeffs(pme, local_sigma);
5192                     where();
5193 #pragma omp parallel num_threads(pme->nthread) private(thread)
5194                     {
5195                         thread = gmx_omp_get_thread_num();
5196                         /* do 3d-invfft */
5197                         if (thread == 0)
5198                         {
5199                             where();
5200                             wallcycle_start(wcycle, ewcPME_FFT);
5201                         }
5202
5203                         gmx_parallel_3dfft_execute(pfft_setup, GMX_FFT_COMPLEX_TO_REAL,
5204                                                    thread, wcycle);
5205                         if (thread == 0)
5206                         {
5207                             wallcycle_stop(wcycle, ewcPME_FFT);
5208
5209                             where();
5210
5211                             if (pme->nodeid == 0)
5212                             {
5213                                 ntot  = pme->nkx*pme->nky*pme->nkz;
5214                                 npme  = ntot*log((real)ntot)/log(2.0);
5215                                 inc_nrnb(nrnb, eNR_FFT, 2*npme);
5216                             }
5217                             wallcycle_start(wcycle, ewcPME_SPREADGATHER);
5218                         }
5219
5220                         copy_fftgrid_to_pmegrid(pme, fftgrid, grid, grid_index, pme->nthread, thread);
5221
5222                     } /*#pragma omp parallel*/
5223
5224                     /* distribute local grid to all nodes */
5225 #ifdef GMX_MPI
5226                     if (pme->nnodes > 1)
5227                     {
5228                         gmx_sum_qgrid_dd(pme, grid, GMX_SUM_GRID_BACKWARD);
5229                     }
5230 #endif
5231                     where();
5232
5233                     unwrap_periodic_pmegrid(pme, grid);
5234
5235                     /* interpolate forces for our local atoms */
5236                     where();
5237                     bClearF = (bFirst && PAR(cr));
5238                     scale   = pme->bFEP ? (fep_state < 1 ? 1.0-lambda_lj : lambda_lj) : 1.0;
5239                     scale  *= lb_scale_factor[grid_index-2];
5240 #pragma omp parallel for num_threads(pme->nthread) schedule(static)
5241                     for (thread = 0; thread < pme->nthread; thread++)
5242                     {
5243                         gather_f_bsplines(pme, grid, bClearF, &pme->atc[0],
5244                                           &pme->atc[0].spline[thread],
5245                                           scale);
5246                     }
5247                     where();
5248
5249                     inc_nrnb(nrnb, eNR_GATHERFBSP,
5250                              pme->pme_order*pme->pme_order*pme->pme_order*pme->atc[0].n);
5251                     wallcycle_stop(wcycle, ewcPME_SPREADGATHER);
5252
5253                     bFirst = FALSE;
5254                 } /* for (grid_index = 8; grid_index >= 2; --grid_index) */
5255             }     /* if (bCalcF) */
5256         }         /* for (fep_state = 0; fep_state < fep_states_lj; ++fep_state) */
5257     }             /* if ((flags & GMX_PME_DO_LJ) && pme->ljpme_combination_rule == eljpmeLB) */
5258
5259     if (bCalcF && pme->nnodes > 1)
5260     {
5261         wallcycle_start(wcycle, ewcPME_REDISTXF);
5262         for (d = 0; d < pme->ndecompdim; d++)
5263         {
5264             atc = &pme->atc[d];
5265             if (d == pme->ndecompdim - 1)
5266             {
5267                 n_d = homenr;
5268                 f_d = f + start;
5269             }
5270             else
5271             {
5272                 n_d = pme->atc[d+1].n;
5273                 f_d = pme->atc[d+1].f;
5274             }
5275             if (DOMAINDECOMP(cr))
5276             {
5277                 dd_pmeredist_f(pme, atc, n_d, f_d,
5278                                d == pme->ndecompdim-1 && pme->bPPnode);
5279             }
5280         }
5281
5282         wallcycle_stop(wcycle, ewcPME_REDISTXF);
5283     }
5284     where();
5285
5286     if (bCalcEnerVir)
5287     {
5288         if (flags & GMX_PME_DO_COULOMB)
5289         {
5290             if (!pme->bFEP_q)
5291             {
5292                 *energy_q = energy_AB[0];
5293                 m_add(vir_q, vir_AB[0], vir_q);
5294             }
5295             else
5296             {
5297                 *energy_q       = (1.0-lambda_q)*energy_AB[0] + lambda_q*energy_AB[1];
5298                 *dvdlambda_q   += energy_AB[1] - energy_AB[0];
5299                 for (i = 0; i < DIM; i++)
5300                 {
5301                     for (j = 0; j < DIM; j++)
5302                     {
5303                         vir_q[i][j] += (1.0-lambda_q)*vir_AB[0][i][j] +
5304                             lambda_q*vir_AB[1][i][j];
5305                     }
5306                 }
5307             }
5308             if (debug)
5309             {
5310                 fprintf(debug, "Electrostatic PME mesh energy: %g\n", *energy_q);
5311             }
5312         }
5313         else
5314         {
5315             *energy_q = 0;
5316         }
5317
5318         if (flags & GMX_PME_DO_LJ)
5319         {
5320             if (!pme->bFEP_lj)
5321             {
5322                 *energy_lj = energy_AB[2];
5323                 m_add(vir_lj, vir_AB[2], vir_lj);
5324             }
5325             else
5326             {
5327                 *energy_lj     = (1.0-lambda_lj)*energy_AB[2] + lambda_lj*energy_AB[3];
5328                 *dvdlambda_lj += energy_AB[3] - energy_AB[2];
5329                 for (i = 0; i < DIM; i++)
5330                 {
5331                     for (j = 0; j < DIM; j++)
5332                     {
5333                         vir_lj[i][j] += (1.0-lambda_lj)*vir_AB[2][i][j] + lambda_lj*vir_AB[3][i][j];
5334                     }
5335                 }
5336             }
5337             if (debug)
5338             {
5339                 fprintf(debug, "Lennard-Jones PME mesh energy: %g\n", *energy_lj);
5340             }
5341         }
5342         else
5343         {
5344             *energy_lj = 0;
5345         }
5346     }
5347     return 0;
5348 }