Code beautification with uncrustify
[alexxy/gromacs.git] / src / gromacs / mdlib / nbnxn_search.c
1 /* -*- mode: c; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; c-file-style: "stroustrup"; -*-
2  *
3  *
4  *                This source code is part of
5  *
6  *                 G   R   O   M   A   C   S
7  *
8  *          GROningen MAchine for Chemical Simulations
9  *
10  * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
11  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
12  * Copyright (c) 2001-2012, The GROMACS development team,
13  * check out http://www.gromacs.org for more information.
14
15  * This program is free software; you can redistribute it and/or
16  * modify it under the terms of the GNU General Public License
17  * as published by the Free Software Foundation; either version 2
18  * of the License, or (at your option) any later version.
19  *
20  * If you want to redistribute modifications, please consider that
21  * scientific software is very special. Version control is crucial -
22  * bugs must be traceable. We will be happy to consider code for
23  * inclusion in the official distribution, but derived work must not
24  * be called official GROMACS. Details are found in the README & COPYING
25  * files - if they are missing, get the official version at www.gromacs.org.
26  *
27  * To help us fund GROMACS development, we humbly ask that you cite
28  * the papers on the package - you can find them in the top README file.
29  *
30  * For more info, check our website at http://www.gromacs.org
31  */
32
33 #ifdef HAVE_CONFIG_H
34 #include <config.h>
35 #endif
36
37 #include <math.h>
38 #include <string.h>
39 #include "sysstuff.h"
40 #include "smalloc.h"
41 #include "macros.h"
42 #include "maths.h"
43 #include "vec.h"
44 #include "pbc.h"
45 #include "nbnxn_consts.h"
46 #include "nbnxn_internal.h"
47 #include "nbnxn_atomdata.h"
48 #include "nbnxn_search.h"
49 #include "gmx_cyclecounter.h"
50 #include "gmxfio.h"
51 #include "gmx_omp_nthreads.h"
52 #include "nrnb.h"
53
54
55 /* Pair search box lower and upper corner in x,y,z.
56  * Store this in 4 iso 3 reals, which is useful with SSE.
57  * To avoid complicating the code we also use 4 without SSE.
58  */
59 #define NNBSBB_C         4
60 #define NNBSBB_B         (2*NNBSBB_C)
61 /* Pair search box lower and upper bound in z only. */
62 #define NNBSBB_D         2
63 /* Pair search box lower and upper corner x,y,z indices */
64 #define BBL_X  0
65 #define BBL_Y  1
66 #define BBL_Z  2
67 #define BBU_X  4
68 #define BBU_Y  5
69 #define BBU_Z  6
70
71
72 #ifdef NBNXN_SEARCH_BB_SSE
73 /* We use SSE or AVX-128bit for bounding box calculations */
74
75 #ifndef GMX_DOUBLE
76 /* Single precision BBs + coordinates, we can also load coordinates using SSE */
77 #define NBNXN_SEARCH_SSE_SINGLE
78 #endif
79
80 /* Include basic SSE2 stuff */
81 #include <emmintrin.h>
82
83 #if defined NBNXN_SEARCH_SSE_SINGLE && (GPU_NSUBCELL == 4 || GPU_NSUBCELL == 8)
84 /* Store bounding boxes with x, y and z coordinates in packs of 4 */
85 #define NBNXN_PBB_SSE
86 #endif
87
88 /* The width of SSE/AVX128 with single precision for bounding boxes with GPU.
89  * Here AVX-256 turns out to be slightly slower than AVX-128.
90  */
91 #define STRIDE_PBB        4
92 #define STRIDE_PBB_2LOG   2
93
94 #endif /* NBNXN_SEARCH_BB_SSE */
95
96 #ifdef GMX_NBNXN_SIMD
97
98 /* The functions below are macros as they are performance sensitive */
99
100 /* 4x4 list, pack=4: no complex conversion required */
101 /* i-cluster to j-cluster conversion */
102 #define CI_TO_CJ_J4(ci)   (ci)
103 /* cluster index to coordinate array index conversion */
104 #define X_IND_CI_J4(ci)  ((ci)*STRIDE_P4)
105 #define X_IND_CJ_J4(cj)  ((cj)*STRIDE_P4)
106
107 /* 4x2 list, pack=4: j-cluster size is half the packing width */
108 /* i-cluster to j-cluster conversion */
109 #define CI_TO_CJ_J2(ci)  ((ci)<<1)
110 /* cluster index to coordinate array index conversion */
111 #define X_IND_CI_J2(ci)  ((ci)*STRIDE_P4)
112 #define X_IND_CJ_J2(cj)  (((cj)>>1)*STRIDE_P4 + ((cj) & 1)*(PACK_X4>>1))
113
114 /* 4x8 list, pack=8: i-cluster size is half the packing width */
115 /* i-cluster to j-cluster conversion */
116 #define CI_TO_CJ_J8(ci)  ((ci)>>1)
117 /* cluster index to coordinate array index conversion */
118 #define X_IND_CI_J8(ci)  (((ci)>>1)*STRIDE_P8 + ((ci) & 1)*(PACK_X8>>1))
119 #define X_IND_CJ_J8(cj)  ((cj)*STRIDE_P8)
120
121 /* The j-cluster size is matched to the SIMD width */
122 #if GMX_NBNXN_SIMD_BITWIDTH == 128
123 #ifdef GMX_DOUBLE
124 #define CI_TO_CJ_SIMD_4XN(ci)  CI_TO_CJ_J2(ci)
125 #define X_IND_CI_SIMD_4XN(ci)  X_IND_CI_J2(ci)
126 #define X_IND_CJ_SIMD_4XN(cj)  X_IND_CJ_J2(cj)
127 #else
128 #define CI_TO_CJ_SIMD_4XN(ci)  CI_TO_CJ_J4(ci)
129 #define X_IND_CI_SIMD_4XN(ci)  X_IND_CI_J4(ci)
130 #define X_IND_CJ_SIMD_4XN(cj)  X_IND_CJ_J4(cj)
131 #endif
132 #else
133 #if GMX_NBNXN_SIMD_BITWIDTH == 256
134 #ifdef GMX_DOUBLE
135 #define CI_TO_CJ_SIMD_4XN(ci)  CI_TO_CJ_J4(ci)
136 #define X_IND_CI_SIMD_4XN(ci)  X_IND_CI_J4(ci)
137 #define X_IND_CJ_SIMD_4XN(cj)  X_IND_CJ_J4(cj)
138 #else
139 #define CI_TO_CJ_SIMD_4XN(ci)  CI_TO_CJ_J8(ci)
140 #define X_IND_CI_SIMD_4XN(ci)  X_IND_CI_J8(ci)
141 #define X_IND_CJ_SIMD_4XN(cj)  X_IND_CJ_J8(cj)
142 /* Half SIMD with j-cluster size */
143 #define CI_TO_CJ_SIMD_2XNN(ci) CI_TO_CJ_J4(ci)
144 #define X_IND_CI_SIMD_2XNN(ci) X_IND_CI_J4(ci)
145 #define X_IND_CJ_SIMD_2XNN(cj) X_IND_CJ_J4(cj)
146 #endif
147 #else
148 #error "unsupported GMX_NBNXN_SIMD_WIDTH"
149 #endif
150 #endif
151
152 #endif /* GMX_NBNXN_SIMD */
153
154
155 /* Interaction masks for 4xN atom interactions.
156  * Bit i*CJ_SIZE + j tells if atom i and j interact.
157  */
158 /* All interaction mask is the same for all kernels */
159 #define NBNXN_INT_MASK_ALL        0xffffffff
160 /* 4x4 kernel diagonal mask */
161 #define NBNXN_INT_MASK_DIAG       0x08ce
162 /* 4x2 kernel diagonal masks */
163 #define NBNXN_INT_MASK_DIAG_J2_0  0x0002
164 #define NBNXN_INT_MASK_DIAG_J2_1  0x002F
165 /* 4x8 kernel diagonal masks */
166 #define NBNXN_INT_MASK_DIAG_J8_0  0xf0f8fcfe
167 #define NBNXN_INT_MASK_DIAG_J8_1  0x0080c0e0
168
169
170 #ifdef NBNXN_SEARCH_BB_SSE
171 /* Store bounding boxes corners as quadruplets: xxxxyyyyzzzz */
172 #define NBNXN_BBXXXX
173 /* Size of bounding box corners quadruplet */
174 #define NNBSBB_XXXX      (NNBSBB_D*DIM*STRIDE_PBB)
175 #endif
176
177 /* We shift the i-particles backward for PBC.
178  * This leads to more conditionals than shifting forward.
179  * We do this to get more balanced pair lists.
180  */
181 #define NBNXN_SHIFT_BACKWARD
182
183
184 /* This define is a lazy way to avoid interdependence of the grid
185  * and searching data structures.
186  */
187 #define NBNXN_NA_SC_MAX (GPU_NSUBCELL*NBNXN_GPU_CLUSTER_SIZE)
188
189
190 static void nbs_cycle_clear(nbnxn_cycle_t *cc)
191 {
192     int i;
193
194     for (i = 0; i < enbsCCnr; i++)
195     {
196         cc[i].count = 0;
197         cc[i].c     = 0;
198     }
199 }
200
201 static double Mcyc_av(const nbnxn_cycle_t *cc)
202 {
203     return (double)cc->c*1e-6/cc->count;
204 }
205
206 static void nbs_cycle_print(FILE *fp, const nbnxn_search_t nbs)
207 {
208     int n;
209     int t;
210
211     fprintf(fp, "\n");
212     fprintf(fp, "ns %4d grid %4.1f search %4.1f red.f %5.3f",
213             nbs->cc[enbsCCgrid].count,
214             Mcyc_av(&nbs->cc[enbsCCgrid]),
215             Mcyc_av(&nbs->cc[enbsCCsearch]),
216             Mcyc_av(&nbs->cc[enbsCCreducef]));
217
218     if (nbs->nthread_max > 1)
219     {
220         if (nbs->cc[enbsCCcombine].count > 0)
221         {
222             fprintf(fp, " comb %5.2f",
223                     Mcyc_av(&nbs->cc[enbsCCcombine]));
224         }
225         fprintf(fp, " s. th");
226         for (t = 0; t < nbs->nthread_max; t++)
227         {
228             fprintf(fp, " %4.1f",
229                     Mcyc_av(&nbs->work[t].cc[enbsCCsearch]));
230         }
231     }
232     fprintf(fp, "\n");
233 }
234
235 static void nbnxn_grid_init(nbnxn_grid_t * grid)
236 {
237     grid->cxy_na      = NULL;
238     grid->cxy_ind     = NULL;
239     grid->cxy_nalloc  = 0;
240     grid->bb          = NULL;
241     grid->bbj         = NULL;
242     grid->nc_nalloc   = 0;
243 }
244
245 static int get_2log(int n)
246 {
247     int log2;
248
249     log2 = 0;
250     while ((1<<log2) < n)
251     {
252         log2++;
253     }
254     if ((1<<log2) != n)
255     {
256         gmx_fatal(FARGS, "nbnxn na_c (%d) is not a power of 2", n);
257     }
258
259     return log2;
260 }
261
262 static int nbnxn_kernel_to_ci_size(int nb_kernel_type)
263 {
264     switch (nb_kernel_type)
265     {
266         case nbnxnk4x4_PlainC:
267         case nbnxnk4xN_SIMD_4xN:
268         case nbnxnk4xN_SIMD_2xNN:
269             return NBNXN_CPU_CLUSTER_I_SIZE;
270         case nbnxnk8x8x8_CUDA:
271         case nbnxnk8x8x8_PlainC:
272             /* The cluster size for super/sub lists is only set here.
273              * Any value should work for the pair-search and atomdata code.
274              * The kernels, of course, might require a particular value.
275              */
276             return NBNXN_GPU_CLUSTER_SIZE;
277         default:
278             gmx_incons("unknown kernel type");
279     }
280
281     return 0;
282 }
283
284 int nbnxn_kernel_to_cj_size(int nb_kernel_type)
285 {
286     int nbnxn_simd_width = 0;
287     int cj_size          = 0;
288
289 #ifdef GMX_NBNXN_SIMD
290     nbnxn_simd_width = GMX_NBNXN_SIMD_BITWIDTH/(sizeof(real)*8);
291 #endif
292
293     switch (nb_kernel_type)
294     {
295         case nbnxnk4x4_PlainC:
296             cj_size = NBNXN_CPU_CLUSTER_I_SIZE;
297             break;
298         case nbnxnk4xN_SIMD_4xN:
299             cj_size = nbnxn_simd_width;
300             break;
301         case nbnxnk4xN_SIMD_2xNN:
302             cj_size = nbnxn_simd_width/2;
303             break;
304         case nbnxnk8x8x8_CUDA:
305         case nbnxnk8x8x8_PlainC:
306             cj_size = nbnxn_kernel_to_ci_size(nb_kernel_type);
307             break;
308         default:
309             gmx_incons("unknown kernel type");
310     }
311
312     return cj_size;
313 }
314
315 static int ci_to_cj(int na_cj_2log, int ci)
316 {
317     switch (na_cj_2log)
318     {
319         case 2: return ci;     break;
320         case 1: return (ci<<1); break;
321         case 3: return (ci>>1); break;
322     }
323
324     return 0;
325 }
326
327 gmx_bool nbnxn_kernel_pairlist_simple(int nb_kernel_type)
328 {
329     if (nb_kernel_type == nbnxnkNotSet)
330     {
331         gmx_fatal(FARGS, "Non-bonded kernel type not set for Verlet-style pair-list.");
332     }
333
334     switch (nb_kernel_type)
335     {
336         case nbnxnk8x8x8_CUDA:
337         case nbnxnk8x8x8_PlainC:
338             return FALSE;
339
340         case nbnxnk4x4_PlainC:
341         case nbnxnk4xN_SIMD_4xN:
342         case nbnxnk4xN_SIMD_2xNN:
343             return TRUE;
344
345         default:
346             gmx_incons("Invalid nonbonded kernel type passed!");
347             return FALSE;
348     }
349 }
350
351 void nbnxn_init_search(nbnxn_search_t    * nbs_ptr,
352                        ivec               *n_dd_cells,
353                        gmx_domdec_zones_t *zones,
354                        int                 nthread_max)
355 {
356     nbnxn_search_t nbs;
357     int            d, g, t;
358
359     snew(nbs, 1);
360     *nbs_ptr = nbs;
361
362     nbs->DomDec = (n_dd_cells != NULL);
363
364     clear_ivec(nbs->dd_dim);
365     nbs->ngrid = 1;
366     if (nbs->DomDec)
367     {
368         nbs->zones = zones;
369
370         for (d = 0; d < DIM; d++)
371         {
372             if ((*n_dd_cells)[d] > 1)
373             {
374                 nbs->dd_dim[d] = 1;
375                 /* Each grid matches a DD zone */
376                 nbs->ngrid *= 2;
377             }
378         }
379     }
380
381     snew(nbs->grid, nbs->ngrid);
382     for (g = 0; g < nbs->ngrid; g++)
383     {
384         nbnxn_grid_init(&nbs->grid[g]);
385     }
386     nbs->cell        = NULL;
387     nbs->cell_nalloc = 0;
388     nbs->a           = NULL;
389     nbs->a_nalloc    = 0;
390
391     nbs->nthread_max = nthread_max;
392
393     /* Initialize the work data structures for each thread */
394     snew(nbs->work, nbs->nthread_max);
395     for (t = 0; t < nbs->nthread_max; t++)
396     {
397         nbs->work[t].cxy_na           = NULL;
398         nbs->work[t].cxy_na_nalloc    = 0;
399         nbs->work[t].sort_work        = NULL;
400         nbs->work[t].sort_work_nalloc = 0;
401     }
402
403     /* Initialize detailed nbsearch cycle counting */
404     nbs->print_cycles = (getenv("GMX_NBNXN_CYCLE") != 0);
405     nbs->search_count = 0;
406     nbs_cycle_clear(nbs->cc);
407     for (t = 0; t < nbs->nthread_max; t++)
408     {
409         nbs_cycle_clear(nbs->work[t].cc);
410     }
411 }
412
413 static real grid_atom_density(int n, rvec corner0, rvec corner1)
414 {
415     rvec size;
416
417     rvec_sub(corner1, corner0, size);
418
419     return n/(size[XX]*size[YY]*size[ZZ]);
420 }
421
422 static int set_grid_size_xy(const nbnxn_search_t nbs,
423                             nbnxn_grid_t *grid,
424                             int dd_zone,
425                             int n, rvec corner0, rvec corner1,
426                             real atom_density,
427                             int XFormat)
428 {
429     rvec size;
430     int  na_c;
431     real adens, tlen, tlen_x, tlen_y, nc_max;
432     int  t;
433
434     rvec_sub(corner1, corner0, size);
435
436     if (n > grid->na_sc)
437     {
438         /* target cell length */
439         if (grid->bSimple)
440         {
441             /* To minimize the zero interactions, we should make
442              * the largest of the i/j cell cubic.
443              */
444             na_c = max(grid->na_c, grid->na_cj);
445
446             /* Approximately cubic cells */
447             tlen   = pow(na_c/atom_density, 1.0/3.0);
448             tlen_x = tlen;
449             tlen_y = tlen;
450         }
451         else
452         {
453             /* Approximately cubic sub cells */
454             tlen   = pow(grid->na_c/atom_density, 1.0/3.0);
455             tlen_x = tlen*GPU_NSUBCELL_X;
456             tlen_y = tlen*GPU_NSUBCELL_Y;
457         }
458         /* We round ncx and ncy down, because we get less cell pairs
459          * in the nbsist when the fixed cell dimensions (x,y) are
460          * larger than the variable one (z) than the other way around.
461          */
462         grid->ncx = max(1, (int)(size[XX]/tlen_x));
463         grid->ncy = max(1, (int)(size[YY]/tlen_y));
464     }
465     else
466     {
467         grid->ncx = 1;
468         grid->ncy = 1;
469     }
470
471     grid->sx     = size[XX]/grid->ncx;
472     grid->sy     = size[YY]/grid->ncy;
473     grid->inv_sx = 1/grid->sx;
474     grid->inv_sy = 1/grid->sy;
475
476     if (dd_zone > 0)
477     {
478         /* This is a non-home zone, add an extra row of cells
479          * for particles communicated for bonded interactions.
480          * These can be beyond the cut-off. It doesn't matter where
481          * they end up on the grid, but for performance it's better
482          * if they don't end up in cells that can be within cut-off range.
483          */
484         grid->ncx++;
485         grid->ncy++;
486     }
487
488     /* We need one additional cell entry for particles moved by DD */
489     if (grid->ncx*grid->ncy+1 > grid->cxy_nalloc)
490     {
491         grid->cxy_nalloc = over_alloc_large(grid->ncx*grid->ncy+1);
492         srenew(grid->cxy_na, grid->cxy_nalloc);
493         srenew(grid->cxy_ind, grid->cxy_nalloc+1);
494     }
495     for (t = 0; t < nbs->nthread_max; t++)
496     {
497         if (grid->ncx*grid->ncy+1 > nbs->work[t].cxy_na_nalloc)
498         {
499             nbs->work[t].cxy_na_nalloc = over_alloc_large(grid->ncx*grid->ncy+1);
500             srenew(nbs->work[t].cxy_na, nbs->work[t].cxy_na_nalloc);
501         }
502     }
503
504     /* Worst case scenario of 1 atom in each last cell */
505     if (grid->na_cj <= grid->na_c)
506     {
507         nc_max = n/grid->na_sc + grid->ncx*grid->ncy;
508     }
509     else
510     {
511         nc_max = n/grid->na_sc + grid->ncx*grid->ncy*grid->na_cj/grid->na_c;
512     }
513
514     if (nc_max > grid->nc_nalloc)
515     {
516         int bb_nalloc;
517
518         grid->nc_nalloc = over_alloc_large(nc_max);
519         srenew(grid->nsubc, grid->nc_nalloc);
520         srenew(grid->bbcz, grid->nc_nalloc*NNBSBB_D);
521 #ifdef NBNXN_PBB_SSE
522         bb_nalloc = grid->nc_nalloc*GPU_NSUBCELL/STRIDE_PBB*NNBSBB_XXXX;
523 #else
524         bb_nalloc = grid->nc_nalloc*GPU_NSUBCELL*NNBSBB_B;
525 #endif
526         sfree_aligned(grid->bb);
527         /* This snew also zeros the contents, this avoid possible
528          * floating exceptions in SSE with the unused bb elements.
529          */
530         snew_aligned(grid->bb, bb_nalloc, 16);
531
532         if (grid->bSimple)
533         {
534             if (grid->na_cj == grid->na_c)
535             {
536                 grid->bbj = grid->bb;
537             }
538             else
539             {
540                 sfree_aligned(grid->bbj);
541                 snew_aligned(grid->bbj, bb_nalloc*grid->na_c/grid->na_cj, 16);
542             }
543         }
544
545         srenew(grid->flags, grid->nc_nalloc);
546     }
547
548     copy_rvec(corner0, grid->c0);
549     copy_rvec(corner1, grid->c1);
550
551     return nc_max;
552 }
553
554 /* We need to sort paricles in grid columns on z-coordinate.
555  * As particle are very often distributed homogeneously, we a sorting
556  * algorithm similar to pigeonhole sort. We multiply the z-coordinate
557  * by a factor, cast to an int and try to store in that hole. If the hole
558  * is full, we move this or another particle. A second pass is needed to make
559  * contiguous elements. SORT_GRID_OVERSIZE is the ratio of holes to particles.
560  * 4 is the optimal value for homogeneous particle distribution and allows
561  * for an O(#particles) sort up till distributions were all particles are
562  * concentrated in 1/4 of the space. No NlogN fallback is implemented,
563  * as it can be expensive to detect imhomogeneous particle distributions.
564  * SGSF is the maximum ratio of holes used, in the worst case all particles
565  * end up in the last hole and we need #particles extra holes at the end.
566  */
567 #define SORT_GRID_OVERSIZE 4
568 #define SGSF (SORT_GRID_OVERSIZE + 1)
569
570 /* Sort particle index a on coordinates x along dim.
571  * Backwards tells if we want decreasing iso increasing coordinates.
572  * h0 is the minimum of the coordinate range.
573  * invh is the inverse hole spacing.
574  * nsort, the theortical hole limit, is only used for debugging.
575  * sort is the sorting work array.
576  */
577 static void sort_atoms(int dim, gmx_bool Backwards,
578                        int *a, int n, rvec *x,
579                        real h0, real invh, int nsort, int *sort)
580 {
581     int i, c;
582     int zi, zim, zi_min, zi_max;
583     int cp, tmp;
584
585     if (n <= 1)
586     {
587         /* Nothing to do */
588         return;
589     }
590
591     /* Determine the index range used, so we can limit it for the second pass */
592     zi_min = INT_MAX;
593     zi_max = -1;
594
595     /* Sort the particles using a simple index sort */
596     for (i = 0; i < n; i++)
597     {
598         /* The cast takes care of float-point rounding effects below zero.
599          * This code assumes particles are less than 1/SORT_GRID_OVERSIZE
600          * times the box height out of the box.
601          */
602         zi = (int)((x[a[i]][dim] - h0)*invh);
603
604 #ifdef DEBUG_NBNXN_GRIDDING
605         if (zi < 0 || zi >= nsort)
606         {
607             gmx_fatal(FARGS, "(int)((x[%d][%c]=%f - %f)*%f) = %d, not in 0 - %d\n",
608                       a[i], 'x'+dim, x[a[i]][dim], h0, invh, zi, nsort);
609         }
610 #endif
611
612         /* Ideally this particle should go in sort cell zi,
613          * but that might already be in use,
614          * in that case find the first empty cell higher up
615          */
616         if (sort[zi] < 0)
617         {
618             sort[zi] = a[i];
619             zi_min   = min(zi_min, zi);
620             zi_max   = max(zi_max, zi);
621         }
622         else
623         {
624             /* We have multiple atoms in the same sorting slot.
625              * Sort on real z for minimal bounding box size.
626              * There is an extra check for identical z to ensure
627              * well-defined output order, independent of input order
628              * to ensure binary reproducibility after restarts.
629              */
630             while (sort[zi] >= 0 && ( x[a[i]][dim] >  x[sort[zi]][dim] ||
631                                       (x[a[i]][dim] == x[sort[zi]][dim] &&
632                                        a[i] > sort[zi])))
633             {
634                 zi++;
635             }
636
637             if (sort[zi] >= 0)
638             {
639                 /* Shift all elements by one slot until we find an empty slot */
640                 cp  = sort[zi];
641                 zim = zi + 1;
642                 while (sort[zim] >= 0)
643                 {
644                     tmp       = sort[zim];
645                     sort[zim] = cp;
646                     cp        = tmp;
647                     zim++;
648                 }
649                 sort[zim] = cp;
650                 zi_max    = max(zi_max, zim);
651             }
652             sort[zi] = a[i];
653             zi_max   = max(zi_max, zi);
654         }
655     }
656
657     c = 0;
658     if (!Backwards)
659     {
660         for (zi = 0; zi < nsort; zi++)
661         {
662             if (sort[zi] >= 0)
663             {
664                 a[c++]   = sort[zi];
665                 sort[zi] = -1;
666             }
667         }
668     }
669     else
670     {
671         for (zi = zi_max; zi >= zi_min; zi--)
672         {
673             if (sort[zi] >= 0)
674             {
675                 a[c++]   = sort[zi];
676                 sort[zi] = -1;
677             }
678         }
679     }
680     if (c < n)
681     {
682         gmx_incons("Lost particles while sorting");
683     }
684 }
685
686 #ifdef GMX_DOUBLE
687 #define R2F_D(x) ((float)((x) >= 0 ? ((1-GMX_FLOAT_EPS)*(x)) : ((1+GMX_FLOAT_EPS)*(x))))
688 #define R2F_U(x) ((float)((x) >= 0 ? ((1+GMX_FLOAT_EPS)*(x)) : ((1-GMX_FLOAT_EPS)*(x))))
689 #else
690 #define R2F_D(x) (x)
691 #define R2F_U(x) (x)
692 #endif
693
694 /* Coordinate order x,y,z, bb order xyz0 */
695 static void calc_bounding_box(int na, int stride, const real *x, float *bb)
696 {
697     int  i, j;
698     real xl, xh, yl, yh, zl, zh;
699
700     i  = 0;
701     xl = x[i+XX];
702     xh = x[i+XX];
703     yl = x[i+YY];
704     yh = x[i+YY];
705     zl = x[i+ZZ];
706     zh = x[i+ZZ];
707     i += stride;
708     for (j = 1; j < na; j++)
709     {
710         xl = min(xl, x[i+XX]);
711         xh = max(xh, x[i+XX]);
712         yl = min(yl, x[i+YY]);
713         yh = max(yh, x[i+YY]);
714         zl = min(zl, x[i+ZZ]);
715         zh = max(zh, x[i+ZZ]);
716         i += stride;
717     }
718     /* Note: possible double to float conversion here */
719     bb[BBL_X] = R2F_D(xl);
720     bb[BBL_Y] = R2F_D(yl);
721     bb[BBL_Z] = R2F_D(zl);
722     bb[BBU_X] = R2F_U(xh);
723     bb[BBU_Y] = R2F_U(yh);
724     bb[BBU_Z] = R2F_U(zh);
725 }
726
727 /* Packed coordinates, bb order xyz0 */
728 static void calc_bounding_box_x_x4(int na, const real *x, float *bb)
729 {
730     int  j;
731     real xl, xh, yl, yh, zl, zh;
732
733     xl = x[XX*PACK_X4];
734     xh = x[XX*PACK_X4];
735     yl = x[YY*PACK_X4];
736     yh = x[YY*PACK_X4];
737     zl = x[ZZ*PACK_X4];
738     zh = x[ZZ*PACK_X4];
739     for (j = 1; j < na; j++)
740     {
741         xl = min(xl, x[j+XX*PACK_X4]);
742         xh = max(xh, x[j+XX*PACK_X4]);
743         yl = min(yl, x[j+YY*PACK_X4]);
744         yh = max(yh, x[j+YY*PACK_X4]);
745         zl = min(zl, x[j+ZZ*PACK_X4]);
746         zh = max(zh, x[j+ZZ*PACK_X4]);
747     }
748     /* Note: possible double to float conversion here */
749     bb[BBL_X] = R2F_D(xl);
750     bb[BBL_Y] = R2F_D(yl);
751     bb[BBL_Z] = R2F_D(zl);
752     bb[BBU_X] = R2F_U(xh);
753     bb[BBU_Y] = R2F_U(yh);
754     bb[BBU_Z] = R2F_U(zh);
755 }
756
757 /* Packed coordinates, bb order xyz0 */
758 static void calc_bounding_box_x_x8(int na, const real *x, float *bb)
759 {
760     int  j;
761     real xl, xh, yl, yh, zl, zh;
762
763     xl = x[XX*PACK_X8];
764     xh = x[XX*PACK_X8];
765     yl = x[YY*PACK_X8];
766     yh = x[YY*PACK_X8];
767     zl = x[ZZ*PACK_X8];
768     zh = x[ZZ*PACK_X8];
769     for (j = 1; j < na; j++)
770     {
771         xl = min(xl, x[j+XX*PACK_X8]);
772         xh = max(xh, x[j+XX*PACK_X8]);
773         yl = min(yl, x[j+YY*PACK_X8]);
774         yh = max(yh, x[j+YY*PACK_X8]);
775         zl = min(zl, x[j+ZZ*PACK_X8]);
776         zh = max(zh, x[j+ZZ*PACK_X8]);
777     }
778     /* Note: possible double to float conversion here */
779     bb[BBL_X] = R2F_D(xl);
780     bb[BBL_Y] = R2F_D(yl);
781     bb[BBL_Z] = R2F_D(zl);
782     bb[BBU_X] = R2F_U(xh);
783     bb[BBU_Y] = R2F_U(yh);
784     bb[BBU_Z] = R2F_U(zh);
785 }
786
787 #ifdef NBNXN_SEARCH_BB_SSE
788
789 /* Packed coordinates, bb order xyz0 */
790 static void calc_bounding_box_x_x4_halves(int na, const real *x,
791                                           float *bb, float *bbj)
792 {
793     calc_bounding_box_x_x4(min(na, 2), x, bbj);
794
795     if (na > 2)
796     {
797         calc_bounding_box_x_x4(min(na-2, 2), x+(PACK_X4>>1), bbj+NNBSBB_B);
798     }
799     else
800     {
801         /* Set the "empty" bounding box to the same as the first one,
802          * so we don't need to treat special cases in the rest of the code.
803          */
804         _mm_store_ps(bbj+NNBSBB_B, _mm_load_ps(bbj));
805         _mm_store_ps(bbj+NNBSBB_B+NNBSBB_C, _mm_load_ps(bbj+NNBSBB_C));
806     }
807
808     _mm_store_ps(bb, _mm_min_ps(_mm_load_ps(bbj),
809                                 _mm_load_ps(bbj+NNBSBB_B)));
810     _mm_store_ps(bb+NNBSBB_C, _mm_max_ps(_mm_load_ps(bbj+NNBSBB_C),
811                                          _mm_load_ps(bbj+NNBSBB_B+NNBSBB_C)));
812 }
813
814 /* Coordinate order xyz, bb order xxxxyyyyzzzz */
815 static void calc_bounding_box_xxxx(int na, int stride, const real *x, float *bb)
816 {
817     int  i, j;
818     real xl, xh, yl, yh, zl, zh;
819
820     i  = 0;
821     xl = x[i+XX];
822     xh = x[i+XX];
823     yl = x[i+YY];
824     yh = x[i+YY];
825     zl = x[i+ZZ];
826     zh = x[i+ZZ];
827     i += stride;
828     for (j = 1; j < na; j++)
829     {
830         xl = min(xl, x[i+XX]);
831         xh = max(xh, x[i+XX]);
832         yl = min(yl, x[i+YY]);
833         yh = max(yh, x[i+YY]);
834         zl = min(zl, x[i+ZZ]);
835         zh = max(zh, x[i+ZZ]);
836         i += stride;
837     }
838     /* Note: possible double to float conversion here */
839     bb[0*STRIDE_PBB] = R2F_D(xl);
840     bb[1*STRIDE_PBB] = R2F_D(yl);
841     bb[2*STRIDE_PBB] = R2F_D(zl);
842     bb[3*STRIDE_PBB] = R2F_U(xh);
843     bb[4*STRIDE_PBB] = R2F_U(yh);
844     bb[5*STRIDE_PBB] = R2F_U(zh);
845 }
846
847 #endif /* NBNXN_SEARCH_BB_SSE */
848
849 #ifdef NBNXN_SEARCH_SSE_SINGLE
850
851 /* Coordinate order xyz?, bb order xyz0 */
852 static void calc_bounding_box_sse(int na, const float *x, float *bb)
853 {
854     __m128 bb_0_SSE, bb_1_SSE;
855     __m128 x_SSE;
856
857     int    i;
858
859     bb_0_SSE = _mm_load_ps(x);
860     bb_1_SSE = bb_0_SSE;
861
862     for (i = 1; i < na; i++)
863     {
864         x_SSE    = _mm_load_ps(x+i*NNBSBB_C);
865         bb_0_SSE = _mm_min_ps(bb_0_SSE, x_SSE);
866         bb_1_SSE = _mm_max_ps(bb_1_SSE, x_SSE);
867     }
868
869     _mm_store_ps(bb, bb_0_SSE);
870     _mm_store_ps(bb+4, bb_1_SSE);
871 }
872
873 /* Coordinate order xyz?, bb order xxxxyyyyzzzz */
874 static void calc_bounding_box_xxxx_sse(int na, const float *x,
875                                        float *bb_work,
876                                        real *bb)
877 {
878     calc_bounding_box_sse(na, x, bb_work);
879
880     bb[0*STRIDE_PBB] = bb_work[BBL_X];
881     bb[1*STRIDE_PBB] = bb_work[BBL_Y];
882     bb[2*STRIDE_PBB] = bb_work[BBL_Z];
883     bb[3*STRIDE_PBB] = bb_work[BBU_X];
884     bb[4*STRIDE_PBB] = bb_work[BBU_Y];
885     bb[5*STRIDE_PBB] = bb_work[BBU_Z];
886 }
887
888 #endif /* NBNXN_SEARCH_SSE_SINGLE */
889
890 #ifdef NBNXN_SEARCH_BB_SSE
891
892 /* Combines pairs of consecutive bounding boxes */
893 static void combine_bounding_box_pairs(nbnxn_grid_t *grid, const float *bb)
894 {
895     int    i, j, sc2, nc2, c2;
896     __m128 min_SSE, max_SSE;
897
898     for (i = 0; i < grid->ncx*grid->ncy; i++)
899     {
900         /* Starting bb in a column is expected to be 2-aligned */
901         sc2 = grid->cxy_ind[i]>>1;
902         /* For odd numbers skip the last bb here */
903         nc2 = (grid->cxy_na[i]+3)>>(2+1);
904         for (c2 = sc2; c2 < sc2+nc2; c2++)
905         {
906             min_SSE = _mm_min_ps(_mm_load_ps(bb+(c2*4+0)*NNBSBB_C),
907                                  _mm_load_ps(bb+(c2*4+2)*NNBSBB_C));
908             max_SSE = _mm_max_ps(_mm_load_ps(bb+(c2*4+1)*NNBSBB_C),
909                                  _mm_load_ps(bb+(c2*4+3)*NNBSBB_C));
910             _mm_store_ps(grid->bbj+(c2*2+0)*NNBSBB_C, min_SSE);
911             _mm_store_ps(grid->bbj+(c2*2+1)*NNBSBB_C, max_SSE);
912         }
913         if (((grid->cxy_na[i]+3)>>2) & 1)
914         {
915             /* Copy the last bb for odd bb count in this column */
916             for (j = 0; j < NNBSBB_C; j++)
917             {
918                 grid->bbj[(c2*2+0)*NNBSBB_C+j] = bb[(c2*4+0)*NNBSBB_C+j];
919                 grid->bbj[(c2*2+1)*NNBSBB_C+j] = bb[(c2*4+1)*NNBSBB_C+j];
920             }
921         }
922     }
923 }
924
925 #endif
926
927
928 /* Prints the average bb size, used for debug output */
929 static void print_bbsizes_simple(FILE                *fp,
930                                  const nbnxn_search_t nbs,
931                                  const nbnxn_grid_t  *grid)
932 {
933     int  c, d;
934     dvec ba;
935
936     clear_dvec(ba);
937     for (c = 0; c < grid->nc; c++)
938     {
939         for (d = 0; d < DIM; d++)
940         {
941             ba[d] += grid->bb[c*NNBSBB_B+NNBSBB_C+d] - grid->bb[c*NNBSBB_B+d];
942         }
943     }
944     dsvmul(1.0/grid->nc, ba, ba);
945
946     fprintf(fp, "ns bb: %4.2f %4.2f %4.2f  %4.2f %4.2f %4.2f rel %4.2f %4.2f %4.2f\n",
947             nbs->box[XX][XX]/grid->ncx,
948             nbs->box[YY][YY]/grid->ncy,
949             nbs->box[ZZ][ZZ]*grid->ncx*grid->ncy/grid->nc,
950             ba[XX], ba[YY], ba[ZZ],
951             ba[XX]*grid->ncx/nbs->box[XX][XX],
952             ba[YY]*grid->ncy/nbs->box[YY][YY],
953             ba[ZZ]*grid->nc/(grid->ncx*grid->ncy*nbs->box[ZZ][ZZ]));
954 }
955
956 /* Prints the average bb size, used for debug output */
957 static void print_bbsizes_supersub(FILE                *fp,
958                                    const nbnxn_search_t nbs,
959                                    const nbnxn_grid_t  *grid)
960 {
961     int  ns, c, s;
962     dvec ba;
963
964     clear_dvec(ba);
965     ns = 0;
966     for (c = 0; c < grid->nc; c++)
967     {
968 #ifdef NBNXN_BBXXXX
969         for (s = 0; s < grid->nsubc[c]; s += STRIDE_PBB)
970         {
971             int cs_w, i, d;
972
973             cs_w = (c*GPU_NSUBCELL + s)/STRIDE_PBB;
974             for (i = 0; i < STRIDE_PBB; i++)
975             {
976                 for (d = 0; d < DIM; d++)
977                 {
978                     ba[d] +=
979                         grid->bb[cs_w*NNBSBB_XXXX+(DIM+d)*STRIDE_PBB+i] -
980                         grid->bb[cs_w*NNBSBB_XXXX+     d *STRIDE_PBB+i];
981                 }
982             }
983         }
984 #else
985         for (s = 0; s < grid->nsubc[c]; s++)
986         {
987             int cs, d;
988
989             cs = c*GPU_NSUBCELL + s;
990             for (d = 0; d < DIM; d++)
991             {
992                 ba[d] +=
993                     grid->bb[cs*NNBSBB_B+NNBSBB_C+d] -
994                     grid->bb[cs*NNBSBB_B         +d];
995             }
996         }
997 #endif
998         ns += grid->nsubc[c];
999     }
1000     dsvmul(1.0/ns, ba, ba);
1001
1002     fprintf(fp, "ns bb: %4.2f %4.2f %4.2f  %4.2f %4.2f %4.2f rel %4.2f %4.2f %4.2f\n",
1003             nbs->box[XX][XX]/(grid->ncx*GPU_NSUBCELL_X),
1004             nbs->box[YY][YY]/(grid->ncy*GPU_NSUBCELL_Y),
1005             nbs->box[ZZ][ZZ]*grid->ncx*grid->ncy/(grid->nc*GPU_NSUBCELL_Z),
1006             ba[XX], ba[YY], ba[ZZ],
1007             ba[XX]*grid->ncx*GPU_NSUBCELL_X/nbs->box[XX][XX],
1008             ba[YY]*grid->ncy*GPU_NSUBCELL_Y/nbs->box[YY][YY],
1009             ba[ZZ]*grid->nc*GPU_NSUBCELL_Z/(grid->ncx*grid->ncy*nbs->box[ZZ][ZZ]));
1010 }
1011
1012 /* Potentially sorts atoms on LJ coefficients !=0 and ==0.
1013  * Also sets interaction flags.
1014  */
1015 void sort_on_lj(nbnxn_atomdata_t *nbat, int na_c,
1016                 int a0, int a1, const int *atinfo,
1017                 int *order,
1018                 int *flags)
1019 {
1020     int      subc, s, a, n1, n2, a_lj_max, i, j;
1021     int      sort1[NBNXN_NA_SC_MAX/GPU_NSUBCELL];
1022     int      sort2[NBNXN_NA_SC_MAX/GPU_NSUBCELL];
1023     gmx_bool haveQ;
1024
1025     *flags = 0;
1026
1027     subc = 0;
1028     for (s = a0; s < a1; s += na_c)
1029     {
1030         /* Make lists for this (sub-)cell on atoms with and without LJ */
1031         n1       = 0;
1032         n2       = 0;
1033         haveQ    = FALSE;
1034         a_lj_max = -1;
1035         for (a = s; a < min(s+na_c, a1); a++)
1036         {
1037             haveQ = haveQ || GET_CGINFO_HAS_Q(atinfo[order[a]]);
1038
1039             if (GET_CGINFO_HAS_VDW(atinfo[order[a]]))
1040             {
1041                 sort1[n1++] = order[a];
1042                 a_lj_max    = a;
1043             }
1044             else
1045             {
1046                 sort2[n2++] = order[a];
1047             }
1048         }
1049
1050         /* If we don't have atom with LJ, there's nothing to sort */
1051         if (n1 > 0)
1052         {
1053             *flags |= NBNXN_CI_DO_LJ(subc);
1054
1055             if (2*n1 <= na_c)
1056             {
1057                 /* Only sort when strictly necessary. Ordering particles
1058                  * Ordering particles can lead to less accurate summation
1059                  * due to rounding, both for LJ and Coulomb interactions.
1060                  */
1061                 if (2*(a_lj_max - s) >= na_c)
1062                 {
1063                     for (i = 0; i < n1; i++)
1064                     {
1065                         order[a0+i] = sort1[i];
1066                     }
1067                     for (j = 0; j < n2; j++)
1068                     {
1069                         order[a0+n1+j] = sort2[j];
1070                     }
1071                 }
1072
1073                 *flags |= NBNXN_CI_HALF_LJ(subc);
1074             }
1075         }
1076         if (haveQ)
1077         {
1078             *flags |= NBNXN_CI_DO_COUL(subc);
1079         }
1080         subc++;
1081     }
1082 }
1083
1084 /* Fill a pair search cell with atoms.
1085  * Potentially sorts atoms and sets the interaction flags.
1086  */
1087 void fill_cell(const nbnxn_search_t nbs,
1088                nbnxn_grid_t *grid,
1089                nbnxn_atomdata_t *nbat,
1090                int a0, int a1,
1091                const int *atinfo,
1092                rvec *x,
1093                int sx, int sy, int sz,
1094                float *bb_work)
1095 {
1096     int     na, a;
1097     size_t  offset;
1098     float  *bb_ptr;
1099
1100     na = a1 - a0;
1101
1102     if (grid->bSimple)
1103     {
1104         sort_on_lj(nbat, grid->na_c, a0, a1, atinfo, nbs->a,
1105                    grid->flags+(a0>>grid->na_c_2log)-grid->cell0);
1106     }
1107
1108     /* Now we have sorted the atoms, set the cell indices */
1109     for (a = a0; a < a1; a++)
1110     {
1111         nbs->cell[nbs->a[a]] = a;
1112     }
1113
1114     copy_rvec_to_nbat_real(nbs->a+a0, a1-a0, grid->na_c, x,
1115                            nbat->XFormat, nbat->x, a0,
1116                            sx, sy, sz);
1117
1118     if (nbat->XFormat == nbatX4)
1119     {
1120         /* Store the bounding boxes as xyz.xyz. */
1121         offset = ((a0 - grid->cell0*grid->na_sc)>>grid->na_c_2log)*NNBSBB_B;
1122         bb_ptr = grid->bb + offset;
1123
1124 #if defined GMX_DOUBLE && defined NBNXN_SEARCH_BB_SSE
1125         if (2*grid->na_cj == grid->na_c)
1126         {
1127             calc_bounding_box_x_x4_halves(na, nbat->x+X4_IND_A(a0), bb_ptr,
1128                                           grid->bbj+offset*2);
1129         }
1130         else
1131 #endif
1132         {
1133             calc_bounding_box_x_x4(na, nbat->x+X4_IND_A(a0), bb_ptr);
1134         }
1135     }
1136     else if (nbat->XFormat == nbatX8)
1137     {
1138         /* Store the bounding boxes as xyz.xyz. */
1139         offset = ((a0 - grid->cell0*grid->na_sc)>>grid->na_c_2log)*NNBSBB_B;
1140         bb_ptr = grid->bb + offset;
1141
1142         calc_bounding_box_x_x8(na, nbat->x+X8_IND_A(a0), bb_ptr);
1143     }
1144 #ifdef NBNXN_BBXXXX
1145     else if (!grid->bSimple)
1146     {
1147         /* Store the bounding boxes in a format convenient
1148          * for SSE calculations: xxxxyyyyzzzz...
1149          */
1150         bb_ptr =
1151             grid->bb +
1152             ((a0-grid->cell0*grid->na_sc)>>(grid->na_c_2log+STRIDE_PBB_2LOG))*NNBSBB_XXXX +
1153             (((a0-grid->cell0*grid->na_sc)>>grid->na_c_2log) & (STRIDE_PBB-1));
1154
1155 #ifdef NBNXN_SEARCH_SSE_SINGLE
1156         if (nbat->XFormat == nbatXYZQ)
1157         {
1158             calc_bounding_box_xxxx_sse(na, nbat->x+a0*nbat->xstride,
1159                                        bb_work, bb_ptr);
1160         }
1161         else
1162 #endif
1163         {
1164             calc_bounding_box_xxxx(na, nbat->xstride, nbat->x+a0*nbat->xstride,
1165                                    bb_ptr);
1166         }
1167         if (gmx_debug_at)
1168         {
1169             fprintf(debug, "%2d %2d %2d bb %5.2f %5.2f %5.2f %5.2f %5.2f %5.2f\n",
1170                     sx, sy, sz,
1171                     bb_ptr[0*STRIDE_PBB], bb_ptr[3*STRIDE_PBB],
1172                     bb_ptr[1*STRIDE_PBB], bb_ptr[4*STRIDE_PBB],
1173                     bb_ptr[2*STRIDE_PBB], bb_ptr[5*STRIDE_PBB]);
1174         }
1175     }
1176 #endif
1177     else
1178     {
1179         /* Store the bounding boxes as xyz.xyz. */
1180         bb_ptr = grid->bb+((a0-grid->cell0*grid->na_sc)>>grid->na_c_2log)*NNBSBB_B;
1181
1182         calc_bounding_box(na, nbat->xstride, nbat->x+a0*nbat->xstride,
1183                           bb_ptr);
1184
1185         if (gmx_debug_at)
1186         {
1187             int bbo;
1188             bbo = (a0 - grid->cell0*grid->na_sc)/grid->na_c;
1189             fprintf(debug, "%2d %2d %2d bb %5.2f %5.2f %5.2f %5.2f %5.2f %5.2f\n",
1190                     sx, sy, sz,
1191                     (grid->bb+bbo*NNBSBB_B)[BBL_X],
1192                     (grid->bb+bbo*NNBSBB_B)[BBU_X],
1193                     (grid->bb+bbo*NNBSBB_B)[BBL_Y],
1194                     (grid->bb+bbo*NNBSBB_B)[BBU_Y],
1195                     (grid->bb+bbo*NNBSBB_B)[BBL_Z],
1196                     (grid->bb+bbo*NNBSBB_B)[BBU_Z]);
1197         }
1198     }
1199 }
1200
1201 /* Spatially sort the atoms within one grid column */
1202 static void sort_columns_simple(const nbnxn_search_t nbs,
1203                                 int dd_zone,
1204                                 nbnxn_grid_t *grid,
1205                                 int a0, int a1,
1206                                 const int *atinfo,
1207                                 rvec *x,
1208                                 nbnxn_atomdata_t *nbat,
1209                                 int cxy_start, int cxy_end,
1210                                 int *sort_work)
1211 {
1212     int  cxy;
1213     int  cx, cy, cz, ncz, cfilled, c;
1214     int  na, ash, ind, a;
1215     int  na_c, ash_c;
1216
1217     if (debug)
1218     {
1219         fprintf(debug, "cell0 %d sorting columns %d - %d, atoms %d - %d\n",
1220                 grid->cell0, cxy_start, cxy_end, a0, a1);
1221     }
1222
1223     /* Sort the atoms within each x,y column in 3 dimensions */
1224     for (cxy = cxy_start; cxy < cxy_end; cxy++)
1225     {
1226         cx = cxy/grid->ncy;
1227         cy = cxy - cx*grid->ncy;
1228
1229         na  = grid->cxy_na[cxy];
1230         ncz = grid->cxy_ind[cxy+1] - grid->cxy_ind[cxy];
1231         ash = (grid->cell0 + grid->cxy_ind[cxy])*grid->na_sc;
1232
1233         /* Sort the atoms within each x,y column on z coordinate */
1234         sort_atoms(ZZ, FALSE,
1235                    nbs->a+ash, na, x,
1236                    grid->c0[ZZ],
1237                    ncz*grid->na_sc*SORT_GRID_OVERSIZE/nbs->box[ZZ][ZZ],
1238                    ncz*grid->na_sc*SGSF, sort_work);
1239
1240         /* Fill the ncz cells in this column */
1241         cfilled = grid->cxy_ind[cxy];
1242         for (cz = 0; cz < ncz; cz++)
1243         {
1244             c  = grid->cxy_ind[cxy] + cz;
1245
1246             ash_c = ash + cz*grid->na_sc;
1247             na_c  = min(grid->na_sc, na-(ash_c-ash));
1248
1249             fill_cell(nbs, grid, nbat,
1250                       ash_c, ash_c+na_c, atinfo, x,
1251                       grid->na_sc*cx + (dd_zone >> 2),
1252                       grid->na_sc*cy + (dd_zone & 3),
1253                       grid->na_sc*cz,
1254                       NULL);
1255
1256             /* This copy to bbcz is not really necessary.
1257              * But it allows to use the same grid search code
1258              * for the simple and supersub cell setups.
1259              */
1260             if (na_c > 0)
1261             {
1262                 cfilled = c;
1263             }
1264             grid->bbcz[c*NNBSBB_D  ] = grid->bb[cfilled*NNBSBB_B+2];
1265             grid->bbcz[c*NNBSBB_D+1] = grid->bb[cfilled*NNBSBB_B+6];
1266         }
1267
1268         /* Set the unused atom indices to -1 */
1269         for (ind = na; ind < ncz*grid->na_sc; ind++)
1270         {
1271             nbs->a[ash+ind] = -1;
1272         }
1273     }
1274 }
1275
1276 /* Spatially sort the atoms within one grid column */
1277 static void sort_columns_supersub(const nbnxn_search_t nbs,
1278                                   int dd_zone,
1279                                   nbnxn_grid_t *grid,
1280                                   int a0, int a1,
1281                                   const int *atinfo,
1282                                   rvec *x,
1283                                   nbnxn_atomdata_t *nbat,
1284                                   int cxy_start, int cxy_end,
1285                                   int *sort_work)
1286 {
1287     int  cxy;
1288     int  cx, cy, cz = -1, c = -1, ncz;
1289     int  na, ash, na_c, ind, a;
1290     int  subdiv_z, sub_z, na_z, ash_z;
1291     int  subdiv_y, sub_y, na_y, ash_y;
1292     int  subdiv_x, sub_x, na_x, ash_x;
1293
1294     /* cppcheck-suppress unassignedVariable */
1295     float bb_work_array[NNBSBB_B+3], *bb_work_align;
1296
1297     bb_work_align = (float *)(((size_t)(bb_work_array+3)) & (~((size_t)15)));
1298
1299     if (debug)
1300     {
1301         fprintf(debug, "cell0 %d sorting columns %d - %d, atoms %d - %d\n",
1302                 grid->cell0, cxy_start, cxy_end, a0, a1);
1303     }
1304
1305     subdiv_x = grid->na_c;
1306     subdiv_y = GPU_NSUBCELL_X*subdiv_x;
1307     subdiv_z = GPU_NSUBCELL_Y*subdiv_y;
1308
1309     /* Sort the atoms within each x,y column in 3 dimensions */
1310     for (cxy = cxy_start; cxy < cxy_end; cxy++)
1311     {
1312         cx = cxy/grid->ncy;
1313         cy = cxy - cx*grid->ncy;
1314
1315         na  = grid->cxy_na[cxy];
1316         ncz = grid->cxy_ind[cxy+1] - grid->cxy_ind[cxy];
1317         ash = (grid->cell0 + grid->cxy_ind[cxy])*grid->na_sc;
1318
1319         /* Sort the atoms within each x,y column on z coordinate */
1320         sort_atoms(ZZ, FALSE,
1321                    nbs->a+ash, na, x,
1322                    grid->c0[ZZ],
1323                    ncz*grid->na_sc*SORT_GRID_OVERSIZE/nbs->box[ZZ][ZZ],
1324                    ncz*grid->na_sc*SGSF, sort_work);
1325
1326         /* This loop goes over the supercells and subcells along z at once */
1327         for (sub_z = 0; sub_z < ncz*GPU_NSUBCELL_Z; sub_z++)
1328         {
1329             ash_z = ash + sub_z*subdiv_z;
1330             na_z  = min(subdiv_z, na-(ash_z-ash));
1331
1332             /* We have already sorted on z */
1333
1334             if (sub_z % GPU_NSUBCELL_Z == 0)
1335             {
1336                 cz = sub_z/GPU_NSUBCELL_Z;
1337                 c  = grid->cxy_ind[cxy] + cz;
1338
1339                 /* The number of atoms in this supercell */
1340                 na_c = min(grid->na_sc, na-(ash_z-ash));
1341
1342                 grid->nsubc[c] = min(GPU_NSUBCELL, (na_c+grid->na_c-1)/grid->na_c);
1343
1344                 /* Store the z-boundaries of the super cell */
1345                 grid->bbcz[c*NNBSBB_D  ] = x[nbs->a[ash_z]][ZZ];
1346                 grid->bbcz[c*NNBSBB_D+1] = x[nbs->a[ash_z+na_c-1]][ZZ];
1347             }
1348
1349 #if GPU_NSUBCELL_Y > 1
1350             /* Sort the atoms along y */
1351             sort_atoms(YY, (sub_z & 1),
1352                        nbs->a+ash_z, na_z, x,
1353                        grid->c0[YY]+cy*grid->sy, grid->inv_sy,
1354                        subdiv_y*SGSF, sort_work);
1355 #endif
1356
1357             for (sub_y = 0; sub_y < GPU_NSUBCELL_Y; sub_y++)
1358             {
1359                 ash_y = ash_z + sub_y*subdiv_y;
1360                 na_y  = min(subdiv_y, na-(ash_y-ash));
1361
1362 #if GPU_NSUBCELL_X > 1
1363                 /* Sort the atoms along x */
1364                 sort_atoms(XX, ((cz*GPU_NSUBCELL_Y + sub_y) & 1),
1365                            nbs->a+ash_y, na_y, x,
1366                            grid->c0[XX]+cx*grid->sx, grid->inv_sx,
1367                            subdiv_x*SGSF, sort_work);
1368 #endif
1369
1370                 for (sub_x = 0; sub_x < GPU_NSUBCELL_X; sub_x++)
1371                 {
1372                     ash_x = ash_y + sub_x*subdiv_x;
1373                     na_x  = min(subdiv_x, na-(ash_x-ash));
1374
1375                     fill_cell(nbs, grid, nbat,
1376                               ash_x, ash_x+na_x, atinfo, x,
1377                               grid->na_c*(cx*GPU_NSUBCELL_X+sub_x) + (dd_zone >> 2),
1378                               grid->na_c*(cy*GPU_NSUBCELL_Y+sub_y) + (dd_zone & 3),
1379                               grid->na_c*sub_z,
1380                               bb_work_align);
1381                 }
1382             }
1383         }
1384
1385         /* Set the unused atom indices to -1 */
1386         for (ind = na; ind < ncz*grid->na_sc; ind++)
1387         {
1388             nbs->a[ash+ind] = -1;
1389         }
1390     }
1391 }
1392
1393 /* Determine in which grid column atoms should go */
1394 static void calc_column_indices(nbnxn_grid_t *grid,
1395                                 int a0, int a1,
1396                                 rvec *x,
1397                                 int dd_zone, const int *move,
1398                                 int thread, int nthread,
1399                                 int *cell,
1400                                 int *cxy_na)
1401 {
1402     int  n0, n1, i;
1403     int  cx, cy;
1404
1405     /* We add one extra cell for particles which moved during DD */
1406     for (i = 0; i < grid->ncx*grid->ncy+1; i++)
1407     {
1408         cxy_na[i] = 0;
1409     }
1410
1411     n0 = a0 + (int)((thread+0)*(a1 - a0))/nthread;
1412     n1 = a0 + (int)((thread+1)*(a1 - a0))/nthread;
1413     if (dd_zone == 0)
1414     {
1415         /* Home zone */
1416         for (i = n0; i < n1; i++)
1417         {
1418             if (move == NULL || move[i] >= 0)
1419             {
1420                 /* We need to be careful with rounding,
1421                  * particles might be a few bits outside the local zone.
1422                  * The int cast takes care of the lower bound,
1423                  * we will explicitly take care of the upper bound.
1424                  */
1425                 cx = (int)((x[i][XX] - grid->c0[XX])*grid->inv_sx);
1426                 cy = (int)((x[i][YY] - grid->c0[YY])*grid->inv_sy);
1427
1428 #ifdef DEBUG_NBNXN_GRIDDING
1429                 if (cx < 0 || cx >= grid->ncx ||
1430                     cy < 0 || cy >= grid->ncy)
1431                 {
1432                     gmx_fatal(FARGS,
1433                               "grid cell cx %d cy %d out of range (max %d %d)\n"
1434                               "atom %f %f %f, grid->c0 %f %f",
1435                               cx, cy, grid->ncx, grid->ncy,
1436                               x[i][XX], x[i][YY], x[i][ZZ], grid->c0[XX], grid->c0[YY]);
1437                 }
1438 #endif
1439                 /* Take care of potential rouding issues */
1440                 cx = min(cx, grid->ncx - 1);
1441                 cy = min(cy, grid->ncy - 1);
1442
1443                 /* For the moment cell will contain only the, grid local,
1444                  * x and y indices, not z.
1445                  */
1446                 cell[i] = cx*grid->ncy + cy;
1447             }
1448             else
1449             {
1450                 /* Put this moved particle after the end of the grid,
1451                  * so we can process it later without using conditionals.
1452                  */
1453                 cell[i] = grid->ncx*grid->ncy;
1454             }
1455
1456             cxy_na[cell[i]]++;
1457         }
1458     }
1459     else
1460     {
1461         /* Non-home zone */
1462         for (i = n0; i < n1; i++)
1463         {
1464             cx = (int)((x[i][XX] - grid->c0[XX])*grid->inv_sx);
1465             cy = (int)((x[i][YY] - grid->c0[YY])*grid->inv_sy);
1466
1467             /* For non-home zones there could be particles outside
1468              * the non-bonded cut-off range, which have been communicated
1469              * for bonded interactions only. For the result it doesn't
1470              * matter where these end up on the grid. For performance
1471              * we put them in an extra row at the border.
1472              */
1473             cx = max(cx, 0);
1474             cx = min(cx, grid->ncx - 1);
1475             cy = max(cy, 0);
1476             cy = min(cy, grid->ncy - 1);
1477
1478             /* For the moment cell will contain only the, grid local,
1479              * x and y indices, not z.
1480              */
1481             cell[i] = cx*grid->ncy + cy;
1482
1483             cxy_na[cell[i]]++;
1484         }
1485     }
1486 }
1487
1488 /* Determine in which grid cells the atoms should go */
1489 static void calc_cell_indices(const nbnxn_search_t nbs,
1490                               int dd_zone,
1491                               nbnxn_grid_t *grid,
1492                               int a0, int a1,
1493                               const int *atinfo,
1494                               rvec *x,
1495                               const int *move,
1496                               nbnxn_atomdata_t *nbat)
1497 {
1498     int   n0, n1, i;
1499     int   cx, cy, cxy, ncz_max, ncz;
1500     int   nthread, thread;
1501     int  *cxy_na, cxy_na_i;
1502
1503     nthread = gmx_omp_nthreads_get(emntPairsearch);
1504
1505 #pragma omp parallel for num_threads(nthread) schedule(static)
1506     for (thread = 0; thread < nthread; thread++)
1507     {
1508         calc_column_indices(grid, a0, a1, x, dd_zone, move, thread, nthread,
1509                             nbs->cell, nbs->work[thread].cxy_na);
1510     }
1511
1512     /* Make the cell index as a function of x and y */
1513     ncz_max          = 0;
1514     ncz              = 0;
1515     grid->cxy_ind[0] = 0;
1516     for (i = 0; i < grid->ncx*grid->ncy+1; i++)
1517     {
1518         /* We set ncz_max at the beginning of the loop iso at the end
1519          * to skip i=grid->ncx*grid->ncy which are moved particles
1520          * that do not need to be ordered on the grid.
1521          */
1522         if (ncz > ncz_max)
1523         {
1524             ncz_max = ncz;
1525         }
1526         cxy_na_i = nbs->work[0].cxy_na[i];
1527         for (thread = 1; thread < nthread; thread++)
1528         {
1529             cxy_na_i += nbs->work[thread].cxy_na[i];
1530         }
1531         ncz = (cxy_na_i + grid->na_sc - 1)/grid->na_sc;
1532         if (nbat->XFormat == nbatX8)
1533         {
1534             /* Make the number of cell a multiple of 2 */
1535             ncz = (ncz + 1) & ~1;
1536         }
1537         grid->cxy_ind[i+1] = grid->cxy_ind[i] + ncz;
1538         /* Clear cxy_na, so we can reuse the array below */
1539         grid->cxy_na[i] = 0;
1540     }
1541     grid->nc = grid->cxy_ind[grid->ncx*grid->ncy] - grid->cxy_ind[0];
1542
1543     nbat->natoms = (grid->cell0 + grid->nc)*grid->na_sc;
1544
1545     if (debug)
1546     {
1547         fprintf(debug, "ns na_sc %d na_c %d super-cells: %d x %d y %d z %.1f maxz %d\n",
1548                 grid->na_sc, grid->na_c, grid->nc,
1549                 grid->ncx, grid->ncy, grid->nc/((double)(grid->ncx*grid->ncy)),
1550                 ncz_max);
1551         if (gmx_debug_at)
1552         {
1553             i = 0;
1554             for (cy = 0; cy < grid->ncy; cy++)
1555             {
1556                 for (cx = 0; cx < grid->ncx; cx++)
1557                 {
1558                     fprintf(debug, " %2d", grid->cxy_ind[i+1]-grid->cxy_ind[i]);
1559                     i++;
1560                 }
1561                 fprintf(debug, "\n");
1562             }
1563         }
1564     }
1565
1566     /* Make sure the work array for sorting is large enough */
1567     if (ncz_max*grid->na_sc*SGSF > nbs->work[0].sort_work_nalloc)
1568     {
1569         for (thread = 0; thread < nbs->nthread_max; thread++)
1570         {
1571             nbs->work[thread].sort_work_nalloc =
1572                 over_alloc_large(ncz_max*grid->na_sc*SGSF);
1573             srenew(nbs->work[thread].sort_work,
1574                    nbs->work[thread].sort_work_nalloc);
1575             /* When not in use, all elements should be -1 */
1576             for (i = 0; i < nbs->work[thread].sort_work_nalloc; i++)
1577             {
1578                 nbs->work[thread].sort_work[i] = -1;
1579             }
1580         }
1581     }
1582
1583     /* Now we know the dimensions we can fill the grid.
1584      * This is the first, unsorted fill. We sort the columns after this.
1585      */
1586     for (i = a0; i < a1; i++)
1587     {
1588         /* At this point nbs->cell contains the local grid x,y indices */
1589         cxy = nbs->cell[i];
1590         nbs->a[(grid->cell0 + grid->cxy_ind[cxy])*grid->na_sc + grid->cxy_na[cxy]++] = i;
1591     }
1592
1593     if (dd_zone == 0)
1594     {
1595         /* Set the cell indices for the moved particles */
1596         n0 = grid->nc*grid->na_sc;
1597         n1 = grid->nc*grid->na_sc+grid->cxy_na[grid->ncx*grid->ncy];
1598         if (dd_zone == 0)
1599         {
1600             for (i = n0; i < n1; i++)
1601             {
1602                 nbs->cell[nbs->a[i]] = i;
1603             }
1604         }
1605     }
1606
1607     /* Sort the super-cell columns along z into the sub-cells. */
1608 #pragma omp parallel for num_threads(nbs->nthread_max) schedule(static)
1609     for (thread = 0; thread < nbs->nthread_max; thread++)
1610     {
1611         if (grid->bSimple)
1612         {
1613             sort_columns_simple(nbs, dd_zone, grid, a0, a1, atinfo, x, nbat,
1614                                 ((thread+0)*grid->ncx*grid->ncy)/nthread,
1615                                 ((thread+1)*grid->ncx*grid->ncy)/nthread,
1616                                 nbs->work[thread].sort_work);
1617         }
1618         else
1619         {
1620             sort_columns_supersub(nbs, dd_zone, grid, a0, a1, atinfo, x, nbat,
1621                                   ((thread+0)*grid->ncx*grid->ncy)/nthread,
1622                                   ((thread+1)*grid->ncx*grid->ncy)/nthread,
1623                                   nbs->work[thread].sort_work);
1624         }
1625     }
1626
1627 #ifdef NBNXN_SEARCH_BB_SSE
1628     if (grid->bSimple && nbat->XFormat == nbatX8)
1629     {
1630         combine_bounding_box_pairs(grid, grid->bb);
1631     }
1632 #endif
1633
1634     if (!grid->bSimple)
1635     {
1636         grid->nsubc_tot = 0;
1637         for (i = 0; i < grid->nc; i++)
1638         {
1639             grid->nsubc_tot += grid->nsubc[i];
1640         }
1641     }
1642
1643     if (debug)
1644     {
1645         if (grid->bSimple)
1646         {
1647             print_bbsizes_simple(debug, nbs, grid);
1648         }
1649         else
1650         {
1651             fprintf(debug, "ns non-zero sub-cells: %d average atoms %.2f\n",
1652                     grid->nsubc_tot, (a1-a0)/(double)grid->nsubc_tot);
1653
1654             print_bbsizes_supersub(debug, nbs, grid);
1655         }
1656     }
1657 }
1658
1659 static void init_buffer_flags(nbnxn_buffer_flags_t *flags,
1660                               int                   natoms)
1661 {
1662     int b;
1663
1664     flags->nflag = (natoms + NBNXN_BUFFERFLAG_SIZE - 1)/NBNXN_BUFFERFLAG_SIZE;
1665     if (flags->nflag > flags->flag_nalloc)
1666     {
1667         flags->flag_nalloc = over_alloc_large(flags->nflag);
1668         srenew(flags->flag, flags->flag_nalloc);
1669     }
1670     for (b = 0; b < flags->nflag; b++)
1671     {
1672         flags->flag[b] = 0;
1673     }
1674 }
1675
1676 /* Sets up a grid and puts the atoms on the grid.
1677  * This function only operates on one domain of the domain decompostion.
1678  * Note that without domain decomposition there is only one domain.
1679  */
1680 void nbnxn_put_on_grid(nbnxn_search_t nbs,
1681                        int ePBC, matrix box,
1682                        int dd_zone,
1683                        rvec corner0, rvec corner1,
1684                        int a0, int a1,
1685                        real atom_density,
1686                        const int *atinfo,
1687                        rvec *x,
1688                        int nmoved, int *move,
1689                        int nb_kernel_type,
1690                        nbnxn_atomdata_t *nbat)
1691 {
1692     nbnxn_grid_t *grid;
1693     int           n;
1694     int           nc_max_grid, nc_max;
1695
1696     grid = &nbs->grid[dd_zone];
1697
1698     nbs_cycle_start(&nbs->cc[enbsCCgrid]);
1699
1700     grid->bSimple = nbnxn_kernel_pairlist_simple(nb_kernel_type);
1701
1702     grid->na_c      = nbnxn_kernel_to_ci_size(nb_kernel_type);
1703     grid->na_cj     = nbnxn_kernel_to_cj_size(nb_kernel_type);
1704     grid->na_sc     = (grid->bSimple ? 1 : GPU_NSUBCELL)*grid->na_c;
1705     grid->na_c_2log = get_2log(grid->na_c);
1706
1707     nbat->na_c = grid->na_c;
1708
1709     if (dd_zone == 0)
1710     {
1711         grid->cell0 = 0;
1712     }
1713     else
1714     {
1715         grid->cell0 =
1716             (nbs->grid[dd_zone-1].cell0 + nbs->grid[dd_zone-1].nc)*
1717             nbs->grid[dd_zone-1].na_sc/grid->na_sc;
1718     }
1719
1720     n = a1 - a0;
1721
1722     if (dd_zone == 0)
1723     {
1724         nbs->ePBC = ePBC;
1725         copy_mat(box, nbs->box);
1726
1727         if (atom_density >= 0)
1728         {
1729             grid->atom_density = atom_density;
1730         }
1731         else
1732         {
1733             grid->atom_density = grid_atom_density(n-nmoved, corner0, corner1);
1734         }
1735
1736         grid->cell0 = 0;
1737
1738         nbs->natoms_local    = a1 - nmoved;
1739         /* We assume that nbnxn_put_on_grid is called first
1740          * for the local atoms (dd_zone=0).
1741          */
1742         nbs->natoms_nonlocal = a1 - nmoved;
1743     }
1744     else
1745     {
1746         nbs->natoms_nonlocal = max(nbs->natoms_nonlocal, a1);
1747     }
1748
1749     nc_max_grid = set_grid_size_xy(nbs, grid,
1750                                    dd_zone, n-nmoved, corner0, corner1,
1751                                    nbs->grid[0].atom_density,
1752                                    nbat->XFormat);
1753
1754     nc_max = grid->cell0 + nc_max_grid;
1755
1756     if (a1 > nbs->cell_nalloc)
1757     {
1758         nbs->cell_nalloc = over_alloc_large(a1);
1759         srenew(nbs->cell, nbs->cell_nalloc);
1760     }
1761
1762     /* To avoid conditionals we store the moved particles at the end of a,
1763      * make sure we have enough space.
1764      */
1765     if (nc_max*grid->na_sc + nmoved > nbs->a_nalloc)
1766     {
1767         nbs->a_nalloc = over_alloc_large(nc_max*grid->na_sc + nmoved);
1768         srenew(nbs->a, nbs->a_nalloc);
1769     }
1770
1771     /* We need padding up to a multiple of the buffer flag size: simply add */
1772     if (nc_max*grid->na_sc + NBNXN_BUFFERFLAG_SIZE > nbat->nalloc)
1773     {
1774         nbnxn_atomdata_realloc(nbat, nc_max*grid->na_sc+NBNXN_BUFFERFLAG_SIZE);
1775     }
1776
1777     calc_cell_indices(nbs, dd_zone, grid, a0, a1, atinfo, x, move, nbat);
1778
1779     if (dd_zone == 0)
1780     {
1781         nbat->natoms_local = nbat->natoms;
1782     }
1783
1784     nbs_cycle_stop(&nbs->cc[enbsCCgrid]);
1785 }
1786
1787 /* Calls nbnxn_put_on_grid for all non-local domains */
1788 void nbnxn_put_on_grid_nonlocal(nbnxn_search_t            nbs,
1789                                 const gmx_domdec_zones_t *zones,
1790                                 const int                *atinfo,
1791                                 rvec                     *x,
1792                                 int                       nb_kernel_type,
1793                                 nbnxn_atomdata_t         *nbat)
1794 {
1795     int  zone, d;
1796     rvec c0, c1;
1797
1798     for (zone = 1; zone < zones->n; zone++)
1799     {
1800         for (d = 0; d < DIM; d++)
1801         {
1802             c0[d] = zones->size[zone].bb_x0[d];
1803             c1[d] = zones->size[zone].bb_x1[d];
1804         }
1805
1806         nbnxn_put_on_grid(nbs, nbs->ePBC, NULL,
1807                           zone, c0, c1,
1808                           zones->cg_range[zone],
1809                           zones->cg_range[zone+1],
1810                           -1,
1811                           atinfo,
1812                           x,
1813                           0, NULL,
1814                           nb_kernel_type,
1815                           nbat);
1816     }
1817 }
1818
1819 /* Add simple grid type information to the local super/sub grid */
1820 void nbnxn_grid_add_simple(nbnxn_search_t    nbs,
1821                            nbnxn_atomdata_t *nbat)
1822 {
1823     nbnxn_grid_t *grid;
1824     float        *bbcz, *bb;
1825     int           ncd, sc;
1826
1827     grid = &nbs->grid[0];
1828
1829     if (grid->bSimple)
1830     {
1831         gmx_incons("nbnxn_grid_simple called with a simple grid");
1832     }
1833
1834     ncd = grid->na_sc/NBNXN_CPU_CLUSTER_I_SIZE;
1835
1836     if (grid->nc*ncd > grid->nc_nalloc_simple)
1837     {
1838         grid->nc_nalloc_simple = over_alloc_large(grid->nc*ncd);
1839         srenew(grid->bbcz_simple, grid->nc_nalloc_simple*NNBSBB_D);
1840         srenew(grid->bb_simple, grid->nc_nalloc_simple*NNBSBB_B);
1841         srenew(grid->flags_simple, grid->nc_nalloc_simple);
1842         if (nbat->XFormat)
1843         {
1844             sfree_aligned(grid->bbj);
1845             snew_aligned(grid->bbj, grid->nc_nalloc_simple/2, 16);
1846         }
1847     }
1848
1849     bbcz = grid->bbcz_simple;
1850     bb   = grid->bb_simple;
1851
1852 #pragma omp parallel for num_threads(gmx_omp_nthreads_get(emntPairsearch)) schedule(static)
1853     for (sc = 0; sc < grid->nc; sc++)
1854     {
1855         int c, tx, na;
1856
1857         for (c = 0; c < ncd; c++)
1858         {
1859             tx = sc*ncd + c;
1860
1861             na = NBNXN_CPU_CLUSTER_I_SIZE;
1862             while (na > 0 &&
1863                    nbat->type[tx*NBNXN_CPU_CLUSTER_I_SIZE+na-1] == nbat->ntype-1)
1864             {
1865                 na--;
1866             }
1867
1868             if (na > 0)
1869             {
1870                 switch (nbat->XFormat)
1871                 {
1872                     case nbatX4:
1873                         /* PACK_X4==NBNXN_CPU_CLUSTER_I_SIZE, so this is simple */
1874                         calc_bounding_box_x_x4(na, nbat->x+tx*STRIDE_P4,
1875                                                bb+tx*NNBSBB_B);
1876                         break;
1877                     case nbatX8:
1878                         /* PACK_X8>NBNXN_CPU_CLUSTER_I_SIZE, more complicated */
1879                         calc_bounding_box_x_x8(na, nbat->x+X8_IND_A(tx*NBNXN_CPU_CLUSTER_I_SIZE),
1880                                                bb+tx*NNBSBB_B);
1881                         break;
1882                     default:
1883                         calc_bounding_box(na, nbat->xstride,
1884                                           nbat->x+tx*NBNXN_CPU_CLUSTER_I_SIZE*nbat->xstride,
1885                                           bb+tx*NNBSBB_B);
1886                         break;
1887                 }
1888                 bbcz[tx*NNBSBB_D+0] = bb[tx*NNBSBB_B         +ZZ];
1889                 bbcz[tx*NNBSBB_D+1] = bb[tx*NNBSBB_B+NNBSBB_C+ZZ];
1890
1891                 /* No interaction optimization yet here */
1892                 grid->flags_simple[tx] = NBNXN_CI_DO_LJ(0) | NBNXN_CI_DO_COUL(0);
1893             }
1894             else
1895             {
1896                 grid->flags_simple[tx] = 0;
1897             }
1898         }
1899     }
1900
1901 #ifdef NBNXN_SEARCH_BB_SSE
1902     if (grid->bSimple && nbat->XFormat == nbatX8)
1903     {
1904         combine_bounding_box_pairs(grid, grid->bb_simple);
1905     }
1906 #endif
1907 }
1908
1909 void nbnxn_get_ncells(nbnxn_search_t nbs, int *ncx, int *ncy)
1910 {
1911     *ncx = nbs->grid[0].ncx;
1912     *ncy = nbs->grid[0].ncy;
1913 }
1914
1915 void nbnxn_get_atomorder(nbnxn_search_t nbs, int **a, int *n)
1916 {
1917     const nbnxn_grid_t *grid;
1918
1919     grid = &nbs->grid[0];
1920
1921     /* Return the atom order for the home cell (index 0) */
1922     *a  = nbs->a;
1923
1924     *n = grid->cxy_ind[grid->ncx*grid->ncy]*grid->na_sc;
1925 }
1926
1927 void nbnxn_set_atomorder(nbnxn_search_t nbs)
1928 {
1929     nbnxn_grid_t *grid;
1930     int           ao, cx, cy, cxy, cz, j;
1931
1932     /* Set the atom order for the home cell (index 0) */
1933     grid = &nbs->grid[0];
1934
1935     ao = 0;
1936     for (cx = 0; cx < grid->ncx; cx++)
1937     {
1938         for (cy = 0; cy < grid->ncy; cy++)
1939         {
1940             cxy = cx*grid->ncy + cy;
1941             j   = grid->cxy_ind[cxy]*grid->na_sc;
1942             for (cz = 0; cz < grid->cxy_na[cxy]; cz++)
1943             {
1944                 nbs->a[j]     = ao;
1945                 nbs->cell[ao] = j;
1946                 ao++;
1947                 j++;
1948             }
1949         }
1950     }
1951 }
1952
1953 /* Determines the cell range along one dimension that
1954  * the bounding box b0 - b1 sees.
1955  */
1956 static void get_cell_range(real b0, real b1,
1957                            int nc, real c0, real s, real invs,
1958                            real d2, real r2, int *cf, int *cl)
1959 {
1960     *cf = max((int)((b0 - c0)*invs), 0);
1961
1962     while (*cf > 0 && d2 + sqr((b0 - c0) - (*cf-1+1)*s) < r2)
1963     {
1964         (*cf)--;
1965     }
1966
1967     *cl = min((int)((b1 - c0)*invs), nc-1);
1968     while (*cl < nc-1 && d2 + sqr((*cl+1)*s - (b1 - c0)) < r2)
1969     {
1970         (*cl)++;
1971     }
1972 }
1973
1974 /* Reference code calculating the distance^2 between two bounding boxes */
1975 static float box_dist2(float bx0, float bx1, float by0,
1976                        float by1, float bz0, float bz1,
1977                        const float *bb)
1978 {
1979     float d2;
1980     float dl, dh, dm, dm0;
1981
1982     d2 = 0;
1983
1984     dl  = bx0 - bb[BBU_X];
1985     dh  = bb[BBL_X] - bx1;
1986     dm  = max(dl, dh);
1987     dm0 = max(dm, 0);
1988     d2 += dm0*dm0;
1989
1990     dl  = by0 - bb[BBU_Y];
1991     dh  = bb[BBL_Y] - by1;
1992     dm  = max(dl, dh);
1993     dm0 = max(dm, 0);
1994     d2 += dm0*dm0;
1995
1996     dl  = bz0 - bb[BBU_Z];
1997     dh  = bb[BBL_Z] - bz1;
1998     dm  = max(dl, dh);
1999     dm0 = max(dm, 0);
2000     d2 += dm0*dm0;
2001
2002     return d2;
2003 }
2004
2005 /* Plain C code calculating the distance^2 between two bounding boxes */
2006 static float subc_bb_dist2(int si, const float *bb_i_ci,
2007                            int csj, const float *bb_j_all)
2008 {
2009     const float *bb_i, *bb_j;
2010     float        d2;
2011     float        dl, dh, dm, dm0;
2012
2013     bb_i = bb_i_ci  +  si*NNBSBB_B;
2014     bb_j = bb_j_all + csj*NNBSBB_B;
2015
2016     d2 = 0;
2017
2018     dl  = bb_i[BBL_X] - bb_j[BBU_X];
2019     dh  = bb_j[BBL_X] - bb_i[BBU_X];
2020     dm  = max(dl, dh);
2021     dm0 = max(dm, 0);
2022     d2 += dm0*dm0;
2023
2024     dl  = bb_i[BBL_Y] - bb_j[BBU_Y];
2025     dh  = bb_j[BBL_Y] - bb_i[BBU_Y];
2026     dm  = max(dl, dh);
2027     dm0 = max(dm, 0);
2028     d2 += dm0*dm0;
2029
2030     dl  = bb_i[BBL_Z] - bb_j[BBU_Z];
2031     dh  = bb_j[BBL_Z] - bb_i[BBU_Z];
2032     dm  = max(dl, dh);
2033     dm0 = max(dm, 0);
2034     d2 += dm0*dm0;
2035
2036     return d2;
2037 }
2038
2039 #ifdef NBNXN_SEARCH_BB_SSE
2040
2041 /* SSE code for bb distance for bb format xyz0 */
2042 static float subc_bb_dist2_sse(int na_c,
2043                                int si, const float *bb_i_ci,
2044                                int csj, const float *bb_j_all)
2045 {
2046     const float *bb_i, *bb_j;
2047
2048     __m128       bb_i_SSE0, bb_i_SSE1;
2049     __m128       bb_j_SSE0, bb_j_SSE1;
2050     __m128       dl_SSE;
2051     __m128       dh_SSE;
2052     __m128       dm_SSE;
2053     __m128       dm0_SSE;
2054     __m128       d2_SSE;
2055 #ifndef GMX_X86_SSE4_1
2056     float        d2_array[7], *d2_align;
2057
2058     d2_align = (float *)(((size_t)(d2_array+3)) & (~((size_t)15)));
2059 #else
2060     float d2;
2061 #endif
2062
2063     bb_i = bb_i_ci  +  si*NNBSBB_B;
2064     bb_j = bb_j_all + csj*NNBSBB_B;
2065
2066     bb_i_SSE0 = _mm_load_ps(bb_i);
2067     bb_i_SSE1 = _mm_load_ps(bb_i+NNBSBB_C);
2068     bb_j_SSE0 = _mm_load_ps(bb_j);
2069     bb_j_SSE1 = _mm_load_ps(bb_j+NNBSBB_C);
2070
2071     dl_SSE    = _mm_sub_ps(bb_i_SSE0, bb_j_SSE1);
2072     dh_SSE    = _mm_sub_ps(bb_j_SSE0, bb_i_SSE1);
2073
2074     dm_SSE    = _mm_max_ps(dl_SSE, dh_SSE);
2075     dm0_SSE   = _mm_max_ps(dm_SSE, _mm_setzero_ps());
2076 #ifndef GMX_X86_SSE4_1
2077     d2_SSE    = _mm_mul_ps(dm0_SSE, dm0_SSE);
2078
2079     _mm_store_ps(d2_align, d2_SSE);
2080
2081     return d2_align[0] + d2_align[1] + d2_align[2];
2082 #else
2083     /* SSE4.1 dot product of components 0,1,2 */
2084     d2_SSE    = _mm_dp_ps(dm0_SSE, dm0_SSE, 0x71);
2085
2086     _mm_store_ss(&d2, d2_SSE);
2087
2088     return d2;
2089 #endif
2090 }
2091
2092 /* Calculate bb bounding distances of bb_i[si,...,si+3] and store them in d2 */
2093 #define SUBC_BB_DIST2_SSE_XXXX_INNER(si, bb_i, d2) \
2094     {                                                \
2095         int    shi;                                  \
2096                                                  \
2097         __m128 dx_0, dy_0, dz_0;                       \
2098         __m128 dx_1, dy_1, dz_1;                       \
2099                                                  \
2100         __m128 mx, my, mz;                             \
2101         __m128 m0x, m0y, m0z;                          \
2102                                                  \
2103         __m128 d2x, d2y, d2z;                          \
2104         __m128 d2s, d2t;                              \
2105                                                  \
2106         shi = si*NNBSBB_D*DIM;                       \
2107                                                  \
2108         xi_l = _mm_load_ps(bb_i+shi+0*STRIDE_PBB);   \
2109         yi_l = _mm_load_ps(bb_i+shi+1*STRIDE_PBB);   \
2110         zi_l = _mm_load_ps(bb_i+shi+2*STRIDE_PBB);   \
2111         xi_h = _mm_load_ps(bb_i+shi+3*STRIDE_PBB);   \
2112         yi_h = _mm_load_ps(bb_i+shi+4*STRIDE_PBB);   \
2113         zi_h = _mm_load_ps(bb_i+shi+5*STRIDE_PBB);   \
2114                                                  \
2115         dx_0 = _mm_sub_ps(xi_l, xj_h);                \
2116         dy_0 = _mm_sub_ps(yi_l, yj_h);                \
2117         dz_0 = _mm_sub_ps(zi_l, zj_h);                \
2118                                                  \
2119         dx_1 = _mm_sub_ps(xj_l, xi_h);                \
2120         dy_1 = _mm_sub_ps(yj_l, yi_h);                \
2121         dz_1 = _mm_sub_ps(zj_l, zi_h);                \
2122                                                  \
2123         mx   = _mm_max_ps(dx_0, dx_1);                \
2124         my   = _mm_max_ps(dy_0, dy_1);                \
2125         mz   = _mm_max_ps(dz_0, dz_1);                \
2126                                                  \
2127         m0x  = _mm_max_ps(mx, zero);                  \
2128         m0y  = _mm_max_ps(my, zero);                  \
2129         m0z  = _mm_max_ps(mz, zero);                  \
2130                                                  \
2131         d2x  = _mm_mul_ps(m0x, m0x);                  \
2132         d2y  = _mm_mul_ps(m0y, m0y);                  \
2133         d2z  = _mm_mul_ps(m0z, m0z);                  \
2134                                                  \
2135         d2s  = _mm_add_ps(d2x, d2y);                  \
2136         d2t  = _mm_add_ps(d2s, d2z);                  \
2137                                                  \
2138         _mm_store_ps(d2+si, d2t);                     \
2139     }
2140
2141 /* SSE code for nsi bb distances for bb format xxxxyyyyzzzz */
2142 static void subc_bb_dist2_sse_xxxx(const float *bb_j,
2143                                    int nsi, const float *bb_i,
2144                                    float *d2)
2145 {
2146     __m128 xj_l, yj_l, zj_l;
2147     __m128 xj_h, yj_h, zj_h;
2148     __m128 xi_l, yi_l, zi_l;
2149     __m128 xi_h, yi_h, zi_h;
2150
2151     __m128 zero;
2152
2153     zero = _mm_setzero_ps();
2154
2155     xj_l = _mm_set1_ps(bb_j[0*STRIDE_PBB]);
2156     yj_l = _mm_set1_ps(bb_j[1*STRIDE_PBB]);
2157     zj_l = _mm_set1_ps(bb_j[2*STRIDE_PBB]);
2158     xj_h = _mm_set1_ps(bb_j[3*STRIDE_PBB]);
2159     yj_h = _mm_set1_ps(bb_j[4*STRIDE_PBB]);
2160     zj_h = _mm_set1_ps(bb_j[5*STRIDE_PBB]);
2161
2162     /* Here we "loop" over si (0,STRIDE_PBB) from 0 to nsi with step STRIDE_PBB.
2163      * But as we know the number of iterations is 1 or 2, we unroll manually.
2164      */
2165     SUBC_BB_DIST2_SSE_XXXX_INNER(0, bb_i, d2);
2166     if (STRIDE_PBB < nsi)
2167     {
2168         SUBC_BB_DIST2_SSE_XXXX_INNER(STRIDE_PBB, bb_i, d2);
2169     }
2170 }
2171
2172 #endif /* NBNXN_SEARCH_BB_SSE */
2173
2174 /* Plain C function which determines if any atom pair between two cells
2175  * is within distance sqrt(rl2).
2176  */
2177 static gmx_bool subc_in_range_x(int na_c,
2178                                 int si, const real *x_i,
2179                                 int csj, int stride, const real *x_j,
2180                                 real rl2)
2181 {
2182     int  i, j, i0, j0;
2183     real d2;
2184
2185     for (i = 0; i < na_c; i++)
2186     {
2187         i0 = (si*na_c + i)*DIM;
2188         for (j = 0; j < na_c; j++)
2189         {
2190             j0 = (csj*na_c + j)*stride;
2191
2192             d2 = sqr(x_i[i0  ] - x_j[j0  ]) +
2193                 sqr(x_i[i0+1] - x_j[j0+1]) +
2194                 sqr(x_i[i0+2] - x_j[j0+2]);
2195
2196             if (d2 < rl2)
2197             {
2198                 return TRUE;
2199             }
2200         }
2201     }
2202
2203     return FALSE;
2204 }
2205
2206 /* SSE function which determines if any atom pair between two cells,
2207  * both with 8 atoms, is within distance sqrt(rl2).
2208  */
2209 static gmx_bool subc_in_range_sse8(int na_c,
2210                                    int si, const real *x_i,
2211                                    int csj, int stride, const real *x_j,
2212                                    real rl2)
2213 {
2214 #ifdef NBNXN_SEARCH_SSE_SINGLE
2215     __m128 ix_SSE0, iy_SSE0, iz_SSE0;
2216     __m128 ix_SSE1, iy_SSE1, iz_SSE1;
2217
2218     __m128 rc2_SSE;
2219
2220     int    na_c_sse;
2221     int    j0, j1;
2222
2223     rc2_SSE   = _mm_set1_ps(rl2);
2224
2225     na_c_sse = NBNXN_GPU_CLUSTER_SIZE/STRIDE_PBB;
2226     ix_SSE0  = _mm_load_ps(x_i+(si*na_c_sse*DIM+0)*STRIDE_PBB);
2227     iy_SSE0  = _mm_load_ps(x_i+(si*na_c_sse*DIM+1)*STRIDE_PBB);
2228     iz_SSE0  = _mm_load_ps(x_i+(si*na_c_sse*DIM+2)*STRIDE_PBB);
2229     ix_SSE1  = _mm_load_ps(x_i+(si*na_c_sse*DIM+3)*STRIDE_PBB);
2230     iy_SSE1  = _mm_load_ps(x_i+(si*na_c_sse*DIM+4)*STRIDE_PBB);
2231     iz_SSE1  = _mm_load_ps(x_i+(si*na_c_sse*DIM+5)*STRIDE_PBB);
2232
2233     /* We loop from the outer to the inner particles to maximize
2234      * the chance that we find a pair in range quickly and return.
2235      */
2236     j0 = csj*na_c;
2237     j1 = j0 + na_c - 1;
2238     while (j0 < j1)
2239     {
2240         __m128 jx0_SSE, jy0_SSE, jz0_SSE;
2241         __m128 jx1_SSE, jy1_SSE, jz1_SSE;
2242
2243         __m128 dx_SSE0, dy_SSE0, dz_SSE0;
2244         __m128 dx_SSE1, dy_SSE1, dz_SSE1;
2245         __m128 dx_SSE2, dy_SSE2, dz_SSE2;
2246         __m128 dx_SSE3, dy_SSE3, dz_SSE3;
2247
2248         __m128 rsq_SSE0;
2249         __m128 rsq_SSE1;
2250         __m128 rsq_SSE2;
2251         __m128 rsq_SSE3;
2252
2253         __m128 wco_SSE0;
2254         __m128 wco_SSE1;
2255         __m128 wco_SSE2;
2256         __m128 wco_SSE3;
2257         __m128 wco_any_SSE01, wco_any_SSE23, wco_any_SSE;
2258
2259         jx0_SSE = _mm_load1_ps(x_j+j0*stride+0);
2260         jy0_SSE = _mm_load1_ps(x_j+j0*stride+1);
2261         jz0_SSE = _mm_load1_ps(x_j+j0*stride+2);
2262
2263         jx1_SSE = _mm_load1_ps(x_j+j1*stride+0);
2264         jy1_SSE = _mm_load1_ps(x_j+j1*stride+1);
2265         jz1_SSE = _mm_load1_ps(x_j+j1*stride+2);
2266
2267         /* Calculate distance */
2268         dx_SSE0            = _mm_sub_ps(ix_SSE0, jx0_SSE);
2269         dy_SSE0            = _mm_sub_ps(iy_SSE0, jy0_SSE);
2270         dz_SSE0            = _mm_sub_ps(iz_SSE0, jz0_SSE);
2271         dx_SSE1            = _mm_sub_ps(ix_SSE1, jx0_SSE);
2272         dy_SSE1            = _mm_sub_ps(iy_SSE1, jy0_SSE);
2273         dz_SSE1            = _mm_sub_ps(iz_SSE1, jz0_SSE);
2274         dx_SSE2            = _mm_sub_ps(ix_SSE0, jx1_SSE);
2275         dy_SSE2            = _mm_sub_ps(iy_SSE0, jy1_SSE);
2276         dz_SSE2            = _mm_sub_ps(iz_SSE0, jz1_SSE);
2277         dx_SSE3            = _mm_sub_ps(ix_SSE1, jx1_SSE);
2278         dy_SSE3            = _mm_sub_ps(iy_SSE1, jy1_SSE);
2279         dz_SSE3            = _mm_sub_ps(iz_SSE1, jz1_SSE);
2280
2281         /* rsq = dx*dx+dy*dy+dz*dz */
2282         rsq_SSE0           = gmx_mm_calc_rsq_ps(dx_SSE0, dy_SSE0, dz_SSE0);
2283         rsq_SSE1           = gmx_mm_calc_rsq_ps(dx_SSE1, dy_SSE1, dz_SSE1);
2284         rsq_SSE2           = gmx_mm_calc_rsq_ps(dx_SSE2, dy_SSE2, dz_SSE2);
2285         rsq_SSE3           = gmx_mm_calc_rsq_ps(dx_SSE3, dy_SSE3, dz_SSE3);
2286
2287         wco_SSE0           = _mm_cmplt_ps(rsq_SSE0, rc2_SSE);
2288         wco_SSE1           = _mm_cmplt_ps(rsq_SSE1, rc2_SSE);
2289         wco_SSE2           = _mm_cmplt_ps(rsq_SSE2, rc2_SSE);
2290         wco_SSE3           = _mm_cmplt_ps(rsq_SSE3, rc2_SSE);
2291
2292         wco_any_SSE01      = _mm_or_ps(wco_SSE0, wco_SSE1);
2293         wco_any_SSE23      = _mm_or_ps(wco_SSE2, wco_SSE3);
2294         wco_any_SSE        = _mm_or_ps(wco_any_SSE01, wco_any_SSE23);
2295
2296         if (_mm_movemask_ps(wco_any_SSE))
2297         {
2298             return TRUE;
2299         }
2300
2301         j0++;
2302         j1--;
2303     }
2304     return FALSE;
2305
2306 #else
2307     /* No SSE */
2308     gmx_incons("SSE function called without SSE support");
2309
2310     return TRUE;
2311 #endif
2312 }
2313
2314 /* Returns the j sub-cell for index cj_ind */
2315 static int nbl_cj(const nbnxn_pairlist_t *nbl, int cj_ind)
2316 {
2317     return nbl->cj4[cj_ind >> NBNXN_GPU_JGROUP_SIZE_2LOG].cj[cj_ind & (NBNXN_GPU_JGROUP_SIZE - 1)];
2318 }
2319
2320 /* Returns the i-interaction mask of the j sub-cell for index cj_ind */
2321 static unsigned nbl_imask0(const nbnxn_pairlist_t *nbl, int cj_ind)
2322 {
2323     return nbl->cj4[cj_ind >> NBNXN_GPU_JGROUP_SIZE_2LOG].imei[0].imask;
2324 }
2325
2326 /* Ensures there is enough space for extra extra exclusion masks */
2327 static void check_excl_space(nbnxn_pairlist_t *nbl, int extra)
2328 {
2329     if (nbl->nexcl+extra > nbl->excl_nalloc)
2330     {
2331         nbl->excl_nalloc = over_alloc_small(nbl->nexcl+extra);
2332         nbnxn_realloc_void((void **)&nbl->excl,
2333                            nbl->nexcl*sizeof(*nbl->excl),
2334                            nbl->excl_nalloc*sizeof(*nbl->excl),
2335                            nbl->alloc, nbl->free);
2336     }
2337 }
2338
2339 /* Ensures there is enough space for ncell extra j-cells in the list */
2340 static void check_subcell_list_space_simple(nbnxn_pairlist_t *nbl,
2341                                             int               ncell)
2342 {
2343     int cj_max;
2344
2345     cj_max = nbl->ncj + ncell;
2346
2347     if (cj_max > nbl->cj_nalloc)
2348     {
2349         nbl->cj_nalloc = over_alloc_small(cj_max);
2350         nbnxn_realloc_void((void **)&nbl->cj,
2351                            nbl->ncj*sizeof(*nbl->cj),
2352                            nbl->cj_nalloc*sizeof(*nbl->cj),
2353                            nbl->alloc, nbl->free);
2354     }
2355 }
2356
2357 /* Ensures there is enough space for ncell extra j-subcells in the list */
2358 static void check_subcell_list_space_supersub(nbnxn_pairlist_t *nbl,
2359                                               int               nsupercell)
2360 {
2361     int ncj4_max, j4, j, w, t;
2362
2363 #define NWARP       2
2364 #define WARP_SIZE  32
2365
2366     /* We can have maximally nsupercell*GPU_NSUBCELL sj lists */
2367     /* We can store 4 j-subcell - i-supercell pairs in one struct.
2368      * since we round down, we need one extra entry.
2369      */
2370     ncj4_max = ((nbl->work->cj_ind + nsupercell*GPU_NSUBCELL + NBNXN_GPU_JGROUP_SIZE - 1) >> NBNXN_GPU_JGROUP_SIZE_2LOG);
2371
2372     if (ncj4_max > nbl->cj4_nalloc)
2373     {
2374         nbl->cj4_nalloc = over_alloc_small(ncj4_max);
2375         nbnxn_realloc_void((void **)&nbl->cj4,
2376                            nbl->work->cj4_init*sizeof(*nbl->cj4),
2377                            nbl->cj4_nalloc*sizeof(*nbl->cj4),
2378                            nbl->alloc, nbl->free);
2379     }
2380
2381     if (ncj4_max > nbl->work->cj4_init)
2382     {
2383         for (j4 = nbl->work->cj4_init; j4 < ncj4_max; j4++)
2384         {
2385             /* No i-subcells and no excl's in the list initially */
2386             for (w = 0; w < NWARP; w++)
2387             {
2388                 nbl->cj4[j4].imei[w].imask    = 0U;
2389                 nbl->cj4[j4].imei[w].excl_ind = 0;
2390
2391             }
2392         }
2393         nbl->work->cj4_init = ncj4_max;
2394     }
2395 }
2396
2397 /* Set all excl masks for one GPU warp no exclusions */
2398 static void set_no_excls(nbnxn_excl_t *excl)
2399 {
2400     int t;
2401
2402     for (t = 0; t < WARP_SIZE; t++)
2403     {
2404         /* Turn all interaction bits on */
2405         excl->pair[t] = NBNXN_INT_MASK_ALL;
2406     }
2407 }
2408
2409 /* Initializes a single nbnxn_pairlist_t data structure */
2410 static void nbnxn_init_pairlist(nbnxn_pairlist_t *nbl,
2411                                 gmx_bool          bSimple,
2412                                 nbnxn_alloc_t    *alloc,
2413                                 nbnxn_free_t     *free)
2414 {
2415     if (alloc == NULL)
2416     {
2417         nbl->alloc = nbnxn_alloc_aligned;
2418     }
2419     else
2420     {
2421         nbl->alloc = alloc;
2422     }
2423     if (free == NULL)
2424     {
2425         nbl->free = nbnxn_free_aligned;
2426     }
2427     else
2428     {
2429         nbl->free = free;
2430     }
2431
2432     nbl->bSimple     = bSimple;
2433     nbl->na_sc       = 0;
2434     nbl->na_ci       = 0;
2435     nbl->na_cj       = 0;
2436     nbl->nci         = 0;
2437     nbl->ci          = NULL;
2438     nbl->ci_nalloc   = 0;
2439     nbl->ncj         = 0;
2440     nbl->cj          = NULL;
2441     nbl->cj_nalloc   = 0;
2442     nbl->ncj4        = 0;
2443     /* We need one element extra in sj, so alloc initially with 1 */
2444     nbl->cj4_nalloc  = 0;
2445     nbl->cj4         = NULL;
2446     nbl->nci_tot     = 0;
2447
2448     if (!nbl->bSimple)
2449     {
2450         nbl->excl        = NULL;
2451         nbl->excl_nalloc = 0;
2452         nbl->nexcl       = 0;
2453         check_excl_space(nbl, 1);
2454         nbl->nexcl       = 1;
2455         set_no_excls(&nbl->excl[0]);
2456     }
2457
2458     snew(nbl->work, 1);
2459 #ifdef NBNXN_BBXXXX
2460     snew_aligned(nbl->work->bb_ci, GPU_NSUBCELL/STRIDE_PBB*NNBSBB_XXXX, NBNXN_MEM_ALIGN);
2461 #else
2462     snew_aligned(nbl->work->bb_ci, GPU_NSUBCELL*NNBSBB_B, NBNXN_MEM_ALIGN);
2463 #endif
2464     snew_aligned(nbl->work->x_ci, NBNXN_NA_SC_MAX*DIM, NBNXN_MEM_ALIGN);
2465 #ifdef GMX_NBNXN_SIMD
2466     snew_aligned(nbl->work->x_ci_simd_4xn, 1, NBNXN_MEM_ALIGN);
2467     snew_aligned(nbl->work->x_ci_simd_2xnn, 1, NBNXN_MEM_ALIGN);
2468 #endif
2469     snew_aligned(nbl->work->d2, GPU_NSUBCELL, NBNXN_MEM_ALIGN);
2470 }
2471
2472 void nbnxn_init_pairlist_set(nbnxn_pairlist_set_t *nbl_list,
2473                              gmx_bool bSimple, gmx_bool bCombined,
2474                              nbnxn_alloc_t *alloc,
2475                              nbnxn_free_t  *free)
2476 {
2477     int i;
2478
2479     nbl_list->bSimple   = bSimple;
2480     nbl_list->bCombined = bCombined;
2481
2482     nbl_list->nnbl = gmx_omp_nthreads_get(emntNonbonded);
2483
2484     if (!nbl_list->bCombined &&
2485         nbl_list->nnbl > NBNXN_BUFFERFLAG_MAX_THREADS)
2486     {
2487         gmx_fatal(FARGS, "%d OpenMP threads were requested. Since the non-bonded force buffer reduction is prohibitively slow with more than %d threads, we do not allow this. Use %d or less OpenMP threads.",
2488                   nbl_list->nnbl, NBNXN_BUFFERFLAG_MAX_THREADS, NBNXN_BUFFERFLAG_MAX_THREADS);
2489     }
2490
2491     snew(nbl_list->nbl, nbl_list->nnbl);
2492     /* Execute in order to avoid memory interleaving between threads */
2493 #pragma omp parallel for num_threads(nbl_list->nnbl) schedule(static)
2494     for (i = 0; i < nbl_list->nnbl; i++)
2495     {
2496         /* Allocate the nblist data structure locally on each thread
2497          * to optimize memory access for NUMA architectures.
2498          */
2499         snew(nbl_list->nbl[i], 1);
2500
2501         /* Only list 0 is used on the GPU, use normal allocation for i>0 */
2502         if (i == 0)
2503         {
2504             nbnxn_init_pairlist(nbl_list->nbl[i], nbl_list->bSimple, alloc, free);
2505         }
2506         else
2507         {
2508             nbnxn_init_pairlist(nbl_list->nbl[i], nbl_list->bSimple, NULL, NULL);
2509         }
2510     }
2511 }
2512
2513 /* Print statistics of a pair list, used for debug output */
2514 static void print_nblist_statistics_simple(FILE *fp, const nbnxn_pairlist_t *nbl,
2515                                            const nbnxn_search_t nbs, real rl)
2516 {
2517     const nbnxn_grid_t *grid;
2518     int                 cs[SHIFTS];
2519     int                 s, i, j;
2520     int                 npexcl;
2521
2522     /* This code only produces correct statistics with domain decomposition */
2523     grid = &nbs->grid[0];
2524
2525     fprintf(fp, "nbl nci %d ncj %d\n",
2526             nbl->nci, nbl->ncj);
2527     fprintf(fp, "nbl na_sc %d rl %g ncp %d per cell %.1f atoms %.1f ratio %.2f\n",
2528             nbl->na_sc, rl, nbl->ncj, nbl->ncj/(double)grid->nc,
2529             nbl->ncj/(double)grid->nc*grid->na_sc,
2530             nbl->ncj/(double)grid->nc*grid->na_sc/(0.5*4.0/3.0*M_PI*rl*rl*rl*grid->nc*grid->na_sc/det(nbs->box)));
2531
2532     fprintf(fp, "nbl average j cell list length %.1f\n",
2533             0.25*nbl->ncj/(double)nbl->nci);
2534
2535     for (s = 0; s < SHIFTS; s++)
2536     {
2537         cs[s] = 0;
2538     }
2539     npexcl = 0;
2540     for (i = 0; i < nbl->nci; i++)
2541     {
2542         cs[nbl->ci[i].shift & NBNXN_CI_SHIFT] +=
2543             nbl->ci[i].cj_ind_end - nbl->ci[i].cj_ind_start;
2544
2545         j = nbl->ci[i].cj_ind_start;
2546         while (j < nbl->ci[i].cj_ind_end &&
2547                nbl->cj[j].excl != NBNXN_INT_MASK_ALL)
2548         {
2549             npexcl++;
2550             j++;
2551         }
2552     }
2553     fprintf(fp, "nbl cell pairs, total: %d excl: %d %.1f%%\n",
2554             nbl->ncj, npexcl, 100*npexcl/(double)nbl->ncj);
2555     for (s = 0; s < SHIFTS; s++)
2556     {
2557         if (cs[s] > 0)
2558         {
2559             fprintf(fp, "nbl shift %2d ncj %3d\n", s, cs[s]);
2560         }
2561     }
2562 }
2563
2564 /* Print statistics of a pair lists, used for debug output */
2565 static void print_nblist_statistics_supersub(FILE *fp, const nbnxn_pairlist_t *nbl,
2566                                              const nbnxn_search_t nbs, real rl)
2567 {
2568     const nbnxn_grid_t *grid;
2569     int                 i, j4, j, si, b;
2570     int                 c[GPU_NSUBCELL+1];
2571
2572     /* This code only produces correct statistics with domain decomposition */
2573     grid = &nbs->grid[0];
2574
2575     fprintf(fp, "nbl nsci %d ncj4 %d nsi %d excl4 %d\n",
2576             nbl->nsci, nbl->ncj4, nbl->nci_tot, nbl->nexcl);
2577     fprintf(fp, "nbl na_c %d rl %g ncp %d per cell %.1f atoms %.1f ratio %.2f\n",
2578             nbl->na_ci, rl, nbl->nci_tot, nbl->nci_tot/(double)grid->nsubc_tot,
2579             nbl->nci_tot/(double)grid->nsubc_tot*grid->na_c,
2580             nbl->nci_tot/(double)grid->nsubc_tot*grid->na_c/(0.5*4.0/3.0*M_PI*rl*rl*rl*grid->nsubc_tot*grid->na_c/det(nbs->box)));
2581
2582     fprintf(fp, "nbl average j super cell list length %.1f\n",
2583             0.25*nbl->ncj4/(double)nbl->nsci);
2584     fprintf(fp, "nbl average i sub cell list length %.1f\n",
2585             nbl->nci_tot/((double)nbl->ncj4));
2586
2587     for (si = 0; si <= GPU_NSUBCELL; si++)
2588     {
2589         c[si] = 0;
2590     }
2591     for (i = 0; i < nbl->nsci; i++)
2592     {
2593         for (j4 = nbl->sci[i].cj4_ind_start; j4 < nbl->sci[i].cj4_ind_end; j4++)
2594         {
2595             for (j = 0; j < NBNXN_GPU_JGROUP_SIZE; j++)
2596             {
2597                 b = 0;
2598                 for (si = 0; si < GPU_NSUBCELL; si++)
2599                 {
2600                     if (nbl->cj4[j4].imei[0].imask & (1U << (j*GPU_NSUBCELL + si)))
2601                     {
2602                         b++;
2603                     }
2604                 }
2605                 c[b]++;
2606             }
2607         }
2608     }
2609     for (b = 0; b <= GPU_NSUBCELL; b++)
2610     {
2611         fprintf(fp, "nbl j-list #i-subcell %d %7d %4.1f\n",
2612                 b, c[b], 100.0*c[b]/(double)(nbl->ncj4*NBNXN_GPU_JGROUP_SIZE));
2613     }
2614 }
2615
2616 /* Print the full pair list, used for debug output */
2617 static void print_supersub_nsp(const char             *fn,
2618                                const nbnxn_pairlist_t *nbl,
2619                                int                     iloc)
2620 {
2621     char  buf[STRLEN];
2622     FILE *fp;
2623     int   i, nsp, j4, p;
2624
2625     sprintf(buf, "%s_%s.xvg", fn, NONLOCAL_I(iloc) ? "nl" : "l");
2626     fp = ffopen(buf, "w");
2627
2628     for (i = 0; i < nbl->nci; i++)
2629     {
2630         nsp = 0;
2631         for (j4 = nbl->sci[i].cj4_ind_start; j4 < nbl->sci[i].cj4_ind_end; j4++)
2632         {
2633             for (p = 0; p < NBNXN_GPU_JGROUP_SIZE*GPU_NSUBCELL; p++)
2634             {
2635                 nsp += (nbl->cj4[j4].imei[0].imask >> p) & 1;
2636             }
2637         }
2638         fprintf(fp, "%4d %3d %3d\n",
2639                 i,
2640                 nsp,
2641                 nbl->sci[i].cj4_ind_end-nbl->sci[i].cj4_ind_start);
2642     }
2643
2644     fclose(fp);
2645 }
2646
2647 /* Returns a pointer to the exclusion mask for cj4-unit cj4, warp warp */
2648 static void low_get_nbl_exclusions(nbnxn_pairlist_t *nbl, int cj4,
2649                                    int warp, nbnxn_excl_t **excl)
2650 {
2651     if (nbl->cj4[cj4].imei[warp].excl_ind == 0)
2652     {
2653         /* No exclusions set, make a new list entry */
2654         nbl->cj4[cj4].imei[warp].excl_ind = nbl->nexcl;
2655         nbl->nexcl++;
2656         *excl = &nbl->excl[nbl->cj4[cj4].imei[warp].excl_ind];
2657         set_no_excls(*excl);
2658     }
2659     else
2660     {
2661         /* We already have some exclusions, new ones can be added to the list */
2662         *excl = &nbl->excl[nbl->cj4[cj4].imei[warp].excl_ind];
2663     }
2664 }
2665
2666 /* Returns a pointer to the exclusion mask for cj4-unit cj4, warp warp,
2667  * allocates extra memory, if necessary.
2668  */
2669 static void get_nbl_exclusions_1(nbnxn_pairlist_t *nbl, int cj4,
2670                                  int warp, nbnxn_excl_t **excl)
2671 {
2672     if (nbl->cj4[cj4].imei[warp].excl_ind == 0)
2673     {
2674         /* We need to make a new list entry, check if we have space */
2675         check_excl_space(nbl, 1);
2676     }
2677     low_get_nbl_exclusions(nbl, cj4, warp, excl);
2678 }
2679
2680 /* Returns pointers to the exclusion mask for cj4-unit cj4 for both warps,
2681  * allocates extra memory, if necessary.
2682  */
2683 static void get_nbl_exclusions_2(nbnxn_pairlist_t *nbl, int cj4,
2684                                  nbnxn_excl_t **excl_w0,
2685                                  nbnxn_excl_t **excl_w1)
2686 {
2687     /* Check for space we might need */
2688     check_excl_space(nbl, 2);
2689
2690     low_get_nbl_exclusions(nbl, cj4, 0, excl_w0);
2691     low_get_nbl_exclusions(nbl, cj4, 1, excl_w1);
2692 }
2693
2694 /* Sets the self exclusions i=j and pair exclusions i>j */
2695 static void set_self_and_newton_excls_supersub(nbnxn_pairlist_t *nbl,
2696                                                int cj4_ind, int sj_offset,
2697                                                int si)
2698 {
2699     nbnxn_excl_t *excl[2];
2700     int           ei, ej, w;
2701
2702     /* Here we only set the set self and double pair exclusions */
2703
2704     get_nbl_exclusions_2(nbl, cj4_ind, &excl[0], &excl[1]);
2705
2706     /* Only minor < major bits set */
2707     for (ej = 0; ej < nbl->na_ci; ej++)
2708     {
2709         w = (ej>>2);
2710         for (ei = ej; ei < nbl->na_ci; ei++)
2711         {
2712             excl[w]->pair[(ej & (NBNXN_GPU_JGROUP_SIZE-1))*nbl->na_ci + ei] &=
2713                 ~(1U << (sj_offset*GPU_NSUBCELL + si));
2714         }
2715     }
2716 }
2717
2718 /* Returns a diagonal or off-diagonal interaction mask for plain C lists */
2719 static unsigned int get_imask(gmx_bool rdiag, int ci, int cj)
2720 {
2721     return (rdiag && ci == cj ? NBNXN_INT_MASK_DIAG : NBNXN_INT_MASK_ALL);
2722 }
2723
2724 /* Returns a diagonal or off-diagonal interaction mask for SIMD128 lists */
2725 static unsigned int get_imask_x86_simd128(gmx_bool rdiag, int ci, int cj)
2726 {
2727 #ifndef GMX_DOUBLE /* cj-size = 4 */
2728     return (rdiag && ci == cj ? NBNXN_INT_MASK_DIAG : NBNXN_INT_MASK_ALL);
2729 #else              /* cj-size = 2 */
2730     return (rdiag && ci*2 == cj ? NBNXN_INT_MASK_DIAG_J2_0 :
2731             (rdiag && ci*2+1 == cj ? NBNXN_INT_MASK_DIAG_J2_1 :
2732              NBNXN_INT_MASK_ALL));
2733 #endif
2734 }
2735
2736 /* Returns a diagonal or off-diagonal interaction mask for SIMD256 lists */
2737 static unsigned int get_imask_x86_simd256(gmx_bool rdiag, int ci, int cj)
2738 {
2739 #ifndef GMX_DOUBLE /* cj-size = 8 */
2740     return (rdiag && ci == cj*2 ? NBNXN_INT_MASK_DIAG_J8_0 :
2741             (rdiag && ci == cj*2+1 ? NBNXN_INT_MASK_DIAG_J8_1 :
2742              NBNXN_INT_MASK_ALL));
2743 #else              /* cj-size = 4 */
2744     return (rdiag && ci == cj ? NBNXN_INT_MASK_DIAG : NBNXN_INT_MASK_ALL);
2745 #endif
2746 }
2747
2748 #ifdef GMX_NBNXN_SIMD
2749 #if GMX_NBNXN_SIMD_BITWIDTH == 128
2750 #define get_imask_x86_simd_4xn  get_imask_x86_simd128
2751 #else
2752 #if GMX_NBNXN_SIMD_BITWIDTH == 256
2753 #define get_imask_x86_simd_4xn  get_imask_x86_simd256
2754 #define get_imask_x86_simd_2xnn get_imask_x86_simd128
2755 #else
2756 #error "unsupported GMX_NBNXN_SIMD_BITWIDTH"
2757 #endif
2758 #endif
2759 #endif
2760
2761 /* Plain C code for making a pair list of cell ci vs cell cjf-cjl.
2762  * Checks bounding box distances and possibly atom pair distances.
2763  */
2764 static void make_cluster_list_simple(const nbnxn_grid_t *gridj,
2765                                      nbnxn_pairlist_t *nbl,
2766                                      int ci, int cjf, int cjl,
2767                                      gmx_bool remove_sub_diag,
2768                                      const real *x_j,
2769                                      real rl2, float rbb2,
2770                                      int *ndistc)
2771 {
2772     const nbnxn_list_work_t *work;
2773
2774     const float             *bb_ci;
2775     const real              *x_ci;
2776
2777     gmx_bool                 InRange;
2778     real                     d2;
2779     int                      cjf_gl, cjl_gl, cj;
2780
2781     work = nbl->work;
2782
2783     bb_ci = nbl->work->bb_ci;
2784     x_ci  = nbl->work->x_ci;
2785
2786     InRange = FALSE;
2787     while (!InRange && cjf <= cjl)
2788     {
2789         d2       = subc_bb_dist2(0, bb_ci, cjf, gridj->bb);
2790         *ndistc += 2;
2791
2792         /* Check if the distance is within the distance where
2793          * we use only the bounding box distance rbb,
2794          * or within the cut-off and there is at least one atom pair
2795          * within the cut-off.
2796          */
2797         if (d2 < rbb2)
2798         {
2799             InRange = TRUE;
2800         }
2801         else if (d2 < rl2)
2802         {
2803             int i, j;
2804
2805             cjf_gl = gridj->cell0 + cjf;
2806             for (i = 0; i < NBNXN_CPU_CLUSTER_I_SIZE && !InRange; i++)
2807             {
2808                 for (j = 0; j < NBNXN_CPU_CLUSTER_I_SIZE; j++)
2809                 {
2810                     InRange = InRange ||
2811                         (sqr(x_ci[i*STRIDE_XYZ+XX] - x_j[(cjf_gl*NBNXN_CPU_CLUSTER_I_SIZE+j)*STRIDE_XYZ+XX]) +
2812                          sqr(x_ci[i*STRIDE_XYZ+YY] - x_j[(cjf_gl*NBNXN_CPU_CLUSTER_I_SIZE+j)*STRIDE_XYZ+YY]) +
2813                          sqr(x_ci[i*STRIDE_XYZ+ZZ] - x_j[(cjf_gl*NBNXN_CPU_CLUSTER_I_SIZE+j)*STRIDE_XYZ+ZZ]) < rl2);
2814                 }
2815             }
2816             *ndistc += NBNXN_CPU_CLUSTER_I_SIZE*NBNXN_CPU_CLUSTER_I_SIZE;
2817         }
2818         if (!InRange)
2819         {
2820             cjf++;
2821         }
2822     }
2823     if (!InRange)
2824     {
2825         return;
2826     }
2827
2828     InRange = FALSE;
2829     while (!InRange && cjl > cjf)
2830     {
2831         d2       = subc_bb_dist2(0, bb_ci, cjl, gridj->bb);
2832         *ndistc += 2;
2833
2834         /* Check if the distance is within the distance where
2835          * we use only the bounding box distance rbb,
2836          * or within the cut-off and there is at least one atom pair
2837          * within the cut-off.
2838          */
2839         if (d2 < rbb2)
2840         {
2841             InRange = TRUE;
2842         }
2843         else if (d2 < rl2)
2844         {
2845             int i, j;
2846
2847             cjl_gl = gridj->cell0 + cjl;
2848             for (i = 0; i < NBNXN_CPU_CLUSTER_I_SIZE && !InRange; i++)
2849             {
2850                 for (j = 0; j < NBNXN_CPU_CLUSTER_I_SIZE; j++)
2851                 {
2852                     InRange = InRange ||
2853                         (sqr(x_ci[i*STRIDE_XYZ+XX] - x_j[(cjl_gl*NBNXN_CPU_CLUSTER_I_SIZE+j)*STRIDE_XYZ+XX]) +
2854                          sqr(x_ci[i*STRIDE_XYZ+YY] - x_j[(cjl_gl*NBNXN_CPU_CLUSTER_I_SIZE+j)*STRIDE_XYZ+YY]) +
2855                          sqr(x_ci[i*STRIDE_XYZ+ZZ] - x_j[(cjl_gl*NBNXN_CPU_CLUSTER_I_SIZE+j)*STRIDE_XYZ+ZZ]) < rl2);
2856                 }
2857             }
2858             *ndistc += NBNXN_CPU_CLUSTER_I_SIZE*NBNXN_CPU_CLUSTER_I_SIZE;
2859         }
2860         if (!InRange)
2861         {
2862             cjl--;
2863         }
2864     }
2865
2866     if (cjf <= cjl)
2867     {
2868         for (cj = cjf; cj <= cjl; cj++)
2869         {
2870             /* Store cj and the interaction mask */
2871             nbl->cj[nbl->ncj].cj   = gridj->cell0 + cj;
2872             nbl->cj[nbl->ncj].excl = get_imask(remove_sub_diag, ci, cj);
2873             nbl->ncj++;
2874         }
2875         /* Increase the closing index in i super-cell list */
2876         nbl->ci[nbl->nci].cj_ind_end = nbl->ncj;
2877     }
2878 }
2879
2880 #ifdef GMX_NBNXN_SIMD_4XN
2881 #include "nbnxn_search_simd_4xn.h"
2882 #endif
2883 #ifdef GMX_NBNXN_SIMD_2XNN
2884 #include "nbnxn_search_simd_2xnn.h"
2885 #endif
2886
2887 /* Plain C or SSE code for making a pair list of super-cell sci vs scj.
2888  * Checks bounding box distances and possibly atom pair distances.
2889  */
2890 static void make_cluster_list_supersub(const nbnxn_search_t nbs,
2891                                        const nbnxn_grid_t *gridi,
2892                                        const nbnxn_grid_t *gridj,
2893                                        nbnxn_pairlist_t *nbl,
2894                                        int sci, int scj,
2895                                        gmx_bool sci_equals_scj,
2896                                        int stride, const real *x,
2897                                        real rl2, float rbb2,
2898                                        int *ndistc)
2899 {
2900     int          na_c;
2901     int          npair;
2902     int          cjo, ci1, ci, cj, cj_gl;
2903     int          cj4_ind, cj_offset;
2904     unsigned     imask;
2905     nbnxn_cj4_t *cj4;
2906     const float *bb_ci;
2907     const real  *x_ci;
2908     float       *d2l, d2;
2909     int          w;
2910 #define PRUNE_LIST_CPU_ONE
2911 #ifdef PRUNE_LIST_CPU_ONE
2912     int  ci_last = -1;
2913 #endif
2914
2915     d2l = nbl->work->d2;
2916
2917     bb_ci = nbl->work->bb_ci;
2918     x_ci  = nbl->work->x_ci;
2919
2920     na_c = gridj->na_c;
2921
2922     for (cjo = 0; cjo < gridj->nsubc[scj]; cjo++)
2923     {
2924         cj4_ind   = (nbl->work->cj_ind >> NBNXN_GPU_JGROUP_SIZE_2LOG);
2925         cj_offset = nbl->work->cj_ind - cj4_ind*NBNXN_GPU_JGROUP_SIZE;
2926         cj4       = &nbl->cj4[cj4_ind];
2927
2928         cj = scj*GPU_NSUBCELL + cjo;
2929
2930         cj_gl = gridj->cell0*GPU_NSUBCELL + cj;
2931
2932         /* Initialize this j-subcell i-subcell list */
2933         cj4->cj[cj_offset] = cj_gl;
2934         imask              = 0;
2935
2936         if (sci_equals_scj)
2937         {
2938             ci1 = cjo + 1;
2939         }
2940         else
2941         {
2942             ci1 = gridi->nsubc[sci];
2943         }
2944
2945 #ifdef NBNXN_BBXXXX
2946         /* Determine all ci1 bb distances in one call with SSE */
2947         subc_bb_dist2_sse_xxxx(gridj->bb+(cj>>STRIDE_PBB_2LOG)*NNBSBB_XXXX+(cj & (STRIDE_PBB-1)),
2948                                ci1, bb_ci, d2l);
2949         *ndistc += na_c*2;
2950 #endif
2951
2952         npair = 0;
2953         /* We use a fixed upper-bound instead of ci1 to help optimization */
2954         for (ci = 0; ci < GPU_NSUBCELL; ci++)
2955         {
2956             if (ci == ci1)
2957             {
2958                 break;
2959             }
2960
2961 #ifndef NBNXN_BBXXXX
2962             /* Determine the bb distance between ci and cj */
2963             d2l[ci]  = subc_bb_dist2(ci, bb_ci, cj, gridj->bb);
2964             *ndistc += 2;
2965 #endif
2966             d2 = d2l[ci];
2967
2968 #ifdef PRUNE_LIST_CPU_ALL
2969             /* Check if the distance is within the distance where
2970              * we use only the bounding box distance rbb,
2971              * or within the cut-off and there is at least one atom pair
2972              * within the cut-off. This check is very costly.
2973              */
2974             *ndistc += na_c*na_c;
2975             if (d2 < rbb2 ||
2976                 (d2 < rl2 && subc_in_range_x(na_c, ci, x_ci, cj_gl, stride, x, rl2)))
2977 #else
2978             /* Check if the distance between the two bounding boxes
2979              * in within the pair-list cut-off.
2980              */
2981             if (d2 < rl2)
2982 #endif
2983             {
2984                 /* Flag this i-subcell to be taken into account */
2985                 imask |= (1U << (cj_offset*GPU_NSUBCELL+ci));
2986
2987 #ifdef PRUNE_LIST_CPU_ONE
2988                 ci_last = ci;
2989 #endif
2990
2991                 npair++;
2992             }
2993         }
2994
2995 #ifdef PRUNE_LIST_CPU_ONE
2996         /* If we only found 1 pair, check if any atoms are actually
2997          * within the cut-off, so we could get rid of it.
2998          */
2999         if (npair == 1 && d2l[ci_last] >= rbb2)
3000         {
3001             /* Avoid using function pointers here, as it's slower */
3002             if (
3003 #ifdef NBNXN_PBB_SSE
3004                 !subc_in_range_sse8
3005 #else
3006                 !subc_in_range_x
3007 #endif
3008                     (na_c, ci_last, x_ci, cj_gl, stride, x, rl2))
3009             {
3010                 imask &= ~(1U << (cj_offset*GPU_NSUBCELL+ci_last));
3011                 npair--;
3012             }
3013         }
3014 #endif
3015
3016         if (npair > 0)
3017         {
3018             /* We have a useful sj entry, close it now */
3019
3020             /* Set the exclucions for the ci== sj entry.
3021              * Here we don't bother to check if this entry is actually flagged,
3022              * as it will nearly always be in the list.
3023              */
3024             if (sci_equals_scj)
3025             {
3026                 set_self_and_newton_excls_supersub(nbl, cj4_ind, cj_offset, cjo);
3027             }
3028
3029             /* Copy the cluster interaction mask to the list */
3030             for (w = 0; w < NWARP; w++)
3031             {
3032                 cj4->imei[w].imask |= imask;
3033             }
3034
3035             nbl->work->cj_ind++;
3036
3037             /* Keep the count */
3038             nbl->nci_tot += npair;
3039
3040             /* Increase the closing index in i super-cell list */
3041             nbl->sci[nbl->nsci].cj4_ind_end =
3042                 ((nbl->work->cj_ind+NBNXN_GPU_JGROUP_SIZE-1) >> NBNXN_GPU_JGROUP_SIZE_2LOG);
3043         }
3044     }
3045 }
3046
3047 /* Set all atom-pair exclusions from the topology stored in excl
3048  * as masks in the pair-list for simple list i-entry nbl_ci
3049  */
3050 static void set_ci_top_excls(const nbnxn_search_t nbs,
3051                              nbnxn_pairlist_t    *nbl,
3052                              gmx_bool             diagRemoved,
3053                              int                  na_ci_2log,
3054                              int                  na_cj_2log,
3055                              const nbnxn_ci_t    *nbl_ci,
3056                              const t_blocka      *excl)
3057 {
3058     const int    *cell;
3059     int           ci;
3060     int           cj_ind_first, cj_ind_last;
3061     int           cj_first, cj_last;
3062     int           ndirect;
3063     int           i, ai, aj, si, eind, ge, se;
3064     int           found, cj_ind_0, cj_ind_1, cj_ind_m;
3065     int           cj_m;
3066     gmx_bool      Found_si;
3067     int           si_ind;
3068     nbnxn_excl_t *nbl_excl;
3069     int           inner_i, inner_e;
3070
3071     cell = nbs->cell;
3072
3073     if (nbl_ci->cj_ind_end == nbl_ci->cj_ind_start)
3074     {
3075         /* Empty list */
3076         return;
3077     }
3078
3079     ci = nbl_ci->ci;
3080
3081     cj_ind_first = nbl_ci->cj_ind_start;
3082     cj_ind_last  = nbl->ncj - 1;
3083
3084     cj_first = nbl->cj[cj_ind_first].cj;
3085     cj_last  = nbl->cj[cj_ind_last].cj;
3086
3087     /* Determine how many contiguous j-cells we have starting
3088      * from the first i-cell. This number can be used to directly
3089      * calculate j-cell indices for excluded atoms.
3090      */
3091     ndirect = 0;
3092     if (na_ci_2log == na_cj_2log)
3093     {
3094         while (cj_ind_first + ndirect <= cj_ind_last &&
3095                nbl->cj[cj_ind_first+ndirect].cj == ci + ndirect)
3096         {
3097             ndirect++;
3098         }
3099     }
3100 #ifdef NBNXN_SEARCH_BB_SSE
3101     else
3102     {
3103         while (cj_ind_first + ndirect <= cj_ind_last &&
3104                nbl->cj[cj_ind_first+ndirect].cj == ci_to_cj(na_cj_2log, ci) + ndirect)
3105         {
3106             ndirect++;
3107         }
3108     }
3109 #endif
3110
3111     /* Loop over the atoms in the i super-cell */
3112     for (i = 0; i < nbl->na_sc; i++)
3113     {
3114         ai = nbs->a[ci*nbl->na_sc+i];
3115         if (ai >= 0)
3116         {
3117             si  = (i>>na_ci_2log);
3118
3119             /* Loop over the topology-based exclusions for this i-atom */
3120             for (eind = excl->index[ai]; eind < excl->index[ai+1]; eind++)
3121             {
3122                 aj = excl->a[eind];
3123
3124                 if (aj == ai)
3125                 {
3126                     /* The self exclusion are already set, save some time */
3127                     continue;
3128                 }
3129
3130                 ge = cell[aj];
3131
3132                 /* Without shifts we only calculate interactions j>i
3133                  * for one-way pair-lists.
3134                  */
3135                 if (diagRemoved && ge <= ci*nbl->na_sc + i)
3136                 {
3137                     continue;
3138                 }
3139
3140                 se = (ge >> na_cj_2log);
3141
3142                 /* Could the cluster se be in our list? */
3143                 if (se >= cj_first && se <= cj_last)
3144                 {
3145                     if (se < cj_first + ndirect)
3146                     {
3147                         /* We can calculate cj_ind directly from se */
3148                         found = cj_ind_first + se - cj_first;
3149                     }
3150                     else
3151                     {
3152                         /* Search for se using bisection */
3153                         found    = -1;
3154                         cj_ind_0 = cj_ind_first + ndirect;
3155                         cj_ind_1 = cj_ind_last + 1;
3156                         while (found == -1 && cj_ind_0 < cj_ind_1)
3157                         {
3158                             cj_ind_m = (cj_ind_0 + cj_ind_1)>>1;
3159
3160                             cj_m = nbl->cj[cj_ind_m].cj;
3161
3162                             if (se == cj_m)
3163                             {
3164                                 found = cj_ind_m;
3165                             }
3166                             else if (se < cj_m)
3167                             {
3168                                 cj_ind_1 = cj_ind_m;
3169                             }
3170                             else
3171                             {
3172                                 cj_ind_0 = cj_ind_m + 1;
3173                             }
3174                         }
3175                     }
3176
3177                     if (found >= 0)
3178                     {
3179                         inner_i = i  - (si << na_ci_2log);
3180                         inner_e = ge - (se << na_cj_2log);
3181
3182                         nbl->cj[found].excl &= ~(1U<<((inner_i<<na_cj_2log) + inner_e));
3183                     }
3184                 }
3185             }
3186         }
3187     }
3188 }
3189
3190 /* Set all atom-pair exclusions from the topology stored in excl
3191  * as masks in the pair-list for i-super-cell entry nbl_sci
3192  */
3193 static void set_sci_top_excls(const nbnxn_search_t nbs,
3194                               nbnxn_pairlist_t    *nbl,
3195                               gmx_bool             diagRemoved,
3196                               int                  na_c_2log,
3197                               const nbnxn_sci_t   *nbl_sci,
3198                               const t_blocka      *excl)
3199 {
3200     const int    *cell;
3201     int           na_c;
3202     int           sci;
3203     int           cj_ind_first, cj_ind_last;
3204     int           cj_first, cj_last;
3205     int           ndirect;
3206     int           i, ai, aj, si, eind, ge, se;
3207     int           found, cj_ind_0, cj_ind_1, cj_ind_m;
3208     int           cj_m;
3209     gmx_bool      Found_si;
3210     int           si_ind;
3211     nbnxn_excl_t *nbl_excl;
3212     int           inner_i, inner_e, w;
3213
3214     cell = nbs->cell;
3215
3216     na_c = nbl->na_ci;
3217
3218     if (nbl_sci->cj4_ind_end == nbl_sci->cj4_ind_start)
3219     {
3220         /* Empty list */
3221         return;
3222     }
3223
3224     sci = nbl_sci->sci;
3225
3226     cj_ind_first = nbl_sci->cj4_ind_start*NBNXN_GPU_JGROUP_SIZE;
3227     cj_ind_last  = nbl->work->cj_ind - 1;
3228
3229     cj_first = nbl->cj4[nbl_sci->cj4_ind_start].cj[0];
3230     cj_last  = nbl_cj(nbl, cj_ind_last);
3231
3232     /* Determine how many contiguous j-clusters we have starting
3233      * from the first i-cluster. This number can be used to directly
3234      * calculate j-cluster indices for excluded atoms.
3235      */
3236     ndirect = 0;
3237     while (cj_ind_first + ndirect <= cj_ind_last &&
3238            nbl_cj(nbl, cj_ind_first+ndirect) == sci*GPU_NSUBCELL + ndirect)
3239     {
3240         ndirect++;
3241     }
3242
3243     /* Loop over the atoms in the i super-cell */
3244     for (i = 0; i < nbl->na_sc; i++)
3245     {
3246         ai = nbs->a[sci*nbl->na_sc+i];
3247         if (ai >= 0)
3248         {
3249             si  = (i>>na_c_2log);
3250
3251             /* Loop over the topology-based exclusions for this i-atom */
3252             for (eind = excl->index[ai]; eind < excl->index[ai+1]; eind++)
3253             {
3254                 aj = excl->a[eind];
3255
3256                 if (aj == ai)
3257                 {
3258                     /* The self exclusion are already set, save some time */
3259                     continue;
3260                 }
3261
3262                 ge = cell[aj];
3263
3264                 /* Without shifts we only calculate interactions j>i
3265                  * for one-way pair-lists.
3266                  */
3267                 if (diagRemoved && ge <= sci*nbl->na_sc + i)
3268                 {
3269                     continue;
3270                 }
3271
3272                 se = ge>>na_c_2log;
3273                 /* Could the cluster se be in our list? */
3274                 if (se >= cj_first && se <= cj_last)
3275                 {
3276                     if (se < cj_first + ndirect)
3277                     {
3278                         /* We can calculate cj_ind directly from se */
3279                         found = cj_ind_first + se - cj_first;
3280                     }
3281                     else
3282                     {
3283                         /* Search for se using bisection */
3284                         found    = -1;
3285                         cj_ind_0 = cj_ind_first + ndirect;
3286                         cj_ind_1 = cj_ind_last + 1;
3287                         while (found == -1 && cj_ind_0 < cj_ind_1)
3288                         {
3289                             cj_ind_m = (cj_ind_0 + cj_ind_1)>>1;
3290
3291                             cj_m = nbl_cj(nbl, cj_ind_m);
3292
3293                             if (se == cj_m)
3294                             {
3295                                 found = cj_ind_m;
3296                             }
3297                             else if (se < cj_m)
3298                             {
3299                                 cj_ind_1 = cj_ind_m;
3300                             }
3301                             else
3302                             {
3303                                 cj_ind_0 = cj_ind_m + 1;
3304                             }
3305                         }
3306                     }
3307
3308                     if (found >= 0)
3309                     {
3310                         inner_i = i  - si*na_c;
3311                         inner_e = ge - se*na_c;
3312
3313 /* Macro for getting the index of atom a within a cluster */
3314 #define AMODCJ4(a)  ((a) & (NBNXN_GPU_JGROUP_SIZE - 1))
3315 /* Macro for converting an atom number to a cluster number */
3316 #define A2CJ4(a)    ((a) >> NBNXN_GPU_JGROUP_SIZE_2LOG)
3317 /* Macro for getting the index of an i-atom within a warp */
3318 #define AMODWI(a)   ((a) & (NBNXN_GPU_CLUSTER_SIZE/2 - 1))
3319
3320                         if (nbl_imask0(nbl, found) & (1U << (AMODCJ4(found)*GPU_NSUBCELL + si)))
3321                         {
3322                             w       = (inner_e >> 2);
3323
3324                             get_nbl_exclusions_1(nbl, A2CJ4(found), w, &nbl_excl);
3325
3326                             nbl_excl->pair[AMODWI(inner_e)*nbl->na_ci+inner_i] &=
3327                                 ~(1U << (AMODCJ4(found)*GPU_NSUBCELL + si));
3328                         }
3329
3330 #undef AMODCJ4
3331 #undef A2CJ4
3332 #undef AMODWI
3333                     }
3334                 }
3335             }
3336         }
3337     }
3338 }
3339
3340 /* Reallocate the simple ci list for at least n entries */
3341 static void nb_realloc_ci(nbnxn_pairlist_t *nbl, int n)
3342 {
3343     nbl->ci_nalloc = over_alloc_small(n);
3344     nbnxn_realloc_void((void **)&nbl->ci,
3345                        nbl->nci*sizeof(*nbl->ci),
3346                        nbl->ci_nalloc*sizeof(*nbl->ci),
3347                        nbl->alloc, nbl->free);
3348 }
3349
3350 /* Reallocate the super-cell sci list for at least n entries */
3351 static void nb_realloc_sci(nbnxn_pairlist_t *nbl, int n)
3352 {
3353     nbl->sci_nalloc = over_alloc_small(n);
3354     nbnxn_realloc_void((void **)&nbl->sci,
3355                        nbl->nsci*sizeof(*nbl->sci),
3356                        nbl->sci_nalloc*sizeof(*nbl->sci),
3357                        nbl->alloc, nbl->free);
3358 }
3359
3360 /* Make a new ci entry at index nbl->nci */
3361 static void new_ci_entry(nbnxn_pairlist_t *nbl, int ci, int shift, int flags,
3362                          nbnxn_list_work_t *work)
3363 {
3364     if (nbl->nci + 1 > nbl->ci_nalloc)
3365     {
3366         nb_realloc_ci(nbl, nbl->nci+1);
3367     }
3368     nbl->ci[nbl->nci].ci            = ci;
3369     nbl->ci[nbl->nci].shift         = shift;
3370     /* Store the interaction flags along with the shift */
3371     nbl->ci[nbl->nci].shift        |= flags;
3372     nbl->ci[nbl->nci].cj_ind_start  = nbl->ncj;
3373     nbl->ci[nbl->nci].cj_ind_end    = nbl->ncj;
3374 }
3375
3376 /* Make a new sci entry at index nbl->nsci */
3377 static void new_sci_entry(nbnxn_pairlist_t *nbl, int sci, int shift, int flags,
3378                           nbnxn_list_work_t *work)
3379 {
3380     if (nbl->nsci + 1 > nbl->sci_nalloc)
3381     {
3382         nb_realloc_sci(nbl, nbl->nsci+1);
3383     }
3384     nbl->sci[nbl->nsci].sci           = sci;
3385     nbl->sci[nbl->nsci].shift         = shift;
3386     nbl->sci[nbl->nsci].cj4_ind_start = nbl->ncj4;
3387     nbl->sci[nbl->nsci].cj4_ind_end   = nbl->ncj4;
3388 }
3389
3390 /* Sort the simple j-list cj on exclusions.
3391  * Entries with exclusions will all be sorted to the beginning of the list.
3392  */
3393 static void sort_cj_excl(nbnxn_cj_t *cj, int ncj,
3394                          nbnxn_list_work_t *work)
3395 {
3396     int jnew, j;
3397
3398     if (ncj > work->cj_nalloc)
3399     {
3400         work->cj_nalloc = over_alloc_large(ncj);
3401         srenew(work->cj, work->cj_nalloc);
3402     }
3403
3404     /* Make a list of the j-cells involving exclusions */
3405     jnew = 0;
3406     for (j = 0; j < ncj; j++)
3407     {
3408         if (cj[j].excl != NBNXN_INT_MASK_ALL)
3409         {
3410             work->cj[jnew++] = cj[j];
3411         }
3412     }
3413     /* Check if there are exclusions at all or not just the first entry */
3414     if (!((jnew == 0) ||
3415           (jnew == 1 && cj[0].excl != NBNXN_INT_MASK_ALL)))
3416     {
3417         for (j = 0; j < ncj; j++)
3418         {
3419             if (cj[j].excl == NBNXN_INT_MASK_ALL)
3420             {
3421                 work->cj[jnew++] = cj[j];
3422             }
3423         }
3424         for (j = 0; j < ncj; j++)
3425         {
3426             cj[j] = work->cj[j];
3427         }
3428     }
3429 }
3430
3431 /* Close this simple list i entry */
3432 static void close_ci_entry_simple(nbnxn_pairlist_t *nbl)
3433 {
3434     int jlen;
3435
3436     /* All content of the new ci entry have already been filled correctly,
3437      * we only need to increase the count here (for non empty lists).
3438      */
3439     jlen = nbl->ci[nbl->nci].cj_ind_end - nbl->ci[nbl->nci].cj_ind_start;
3440     if (jlen > 0)
3441     {
3442         sort_cj_excl(nbl->cj+nbl->ci[nbl->nci].cj_ind_start, jlen, nbl->work);
3443
3444         /* The counts below are used for non-bonded pair/flop counts
3445          * and should therefore match the available kernel setups.
3446          */
3447         if (!(nbl->ci[nbl->nci].shift & NBNXN_CI_DO_COUL(0)))
3448         {
3449             nbl->work->ncj_noq += jlen;
3450         }
3451         else if ((nbl->ci[nbl->nci].shift & NBNXN_CI_HALF_LJ(0)) ||
3452                  !(nbl->ci[nbl->nci].shift & NBNXN_CI_DO_LJ(0)))
3453         {
3454             nbl->work->ncj_hlj += jlen;
3455         }
3456
3457         nbl->nci++;
3458     }
3459 }
3460
3461 /* Split sci entry for load balancing on the GPU.
3462  * As we only now the current count on our own thread,
3463  * we will need to estimate the current total amount of i-entries.
3464  * As the lists get concatenated later, this estimate depends
3465  * both on nthread and our own thread index thread.
3466  */
3467 static void split_sci_entry(nbnxn_pairlist_t *nbl,
3468                             int nsp_max_av, gmx_bool progBal, int nc_bal,
3469                             int thread, int nthread)
3470 {
3471     int nsci_est;
3472     int nsp_max;
3473     int cj4_start, cj4_end, j4len, cj4;
3474     int sci;
3475     int nsp, nsp_sci, nsp_cj4, nsp_cj4_e, nsp_cj4_p;
3476     int p;
3477
3478     /* Estimate the total numbers of ci's of the nblist combined
3479      * over all threads using the target number of ci's.
3480      */
3481     nsci_est = nc_bal*thread/nthread + nbl->nsci;
3482     if (progBal)
3483     {
3484         /* The first ci blocks should be larger, to avoid overhead.
3485          * The last ci blocks should be smaller, to improve load balancing.
3486          */
3487         nsp_max = max(1,
3488                       nsp_max_av*nc_bal*3/(2*(nsci_est - 1 + nc_bal)));
3489     }
3490     else
3491     {
3492         nsp_max = nsp_max_av;
3493     }
3494
3495     cj4_start = nbl->sci[nbl->nsci-1].cj4_ind_start;
3496     cj4_end   = nbl->sci[nbl->nsci-1].cj4_ind_end;
3497     j4len     = cj4_end - cj4_start;
3498
3499     if (j4len > 1 && j4len*GPU_NSUBCELL*NBNXN_GPU_JGROUP_SIZE > nsp_max)
3500     {
3501         /* Remove the last ci entry and process the cj4's again */
3502         nbl->nsci -= 1;
3503
3504         sci        = nbl->nsci;
3505         cj4        = cj4_start;
3506         nsp        = 0;
3507         nsp_sci    = 0;
3508         nsp_cj4_e  = 0;
3509         nsp_cj4    = 0;
3510         while (cj4 < cj4_end)
3511         {
3512             nsp_cj4_p = nsp_cj4;
3513             nsp_cj4   = 0;
3514             for (p = 0; p < GPU_NSUBCELL*NBNXN_GPU_JGROUP_SIZE; p++)
3515             {
3516                 nsp_cj4 += (nbl->cj4[cj4].imei[0].imask >> p) & 1;
3517             }
3518             nsp += nsp_cj4;
3519
3520             if (nsp > nsp_max && nsp > nsp_cj4)
3521             {
3522                 nbl->sci[sci].cj4_ind_end = cj4;
3523                 sci++;
3524                 nbl->nsci++;
3525                 if (nbl->nsci+1 > nbl->sci_nalloc)
3526                 {
3527                     nb_realloc_sci(nbl, nbl->nsci+1);
3528                 }
3529                 nbl->sci[sci].sci           = nbl->sci[nbl->nsci-1].sci;
3530                 nbl->sci[sci].shift         = nbl->sci[nbl->nsci-1].shift;
3531                 nbl->sci[sci].cj4_ind_start = cj4;
3532                 nsp_sci                     = nsp - nsp_cj4;
3533                 nsp_cj4_e                   = nsp_cj4_p;
3534                 nsp                         = nsp_cj4;
3535             }
3536
3537             cj4++;
3538         }
3539
3540         /* Put the remaining cj4's in a new ci entry */
3541         nbl->sci[sci].cj4_ind_end = cj4_end;
3542
3543         /* Possibly balance out the last two ci's
3544          * by moving the last cj4 of the second last ci.
3545          */
3546         if (nsp_sci - nsp_cj4_e >= nsp + nsp_cj4_e)
3547         {
3548             nbl->sci[sci-1].cj4_ind_end--;
3549             nbl->sci[sci].cj4_ind_start--;
3550         }
3551
3552         sci++;
3553         nbl->nsci++;
3554     }
3555 }
3556
3557 /* Clost this super/sub list i entry */
3558 static void close_ci_entry_supersub(nbnxn_pairlist_t *nbl,
3559                                     int nsp_max_av,
3560                                     gmx_bool progBal, int nc_bal,
3561                                     int thread, int nthread)
3562 {
3563     int j4len, tlen;
3564     int nb, b;
3565
3566     /* All content of the new ci entry have already been filled correctly,
3567      * we only need to increase the count here (for non empty lists).
3568      */
3569     j4len = nbl->sci[nbl->nsci].cj4_ind_end - nbl->sci[nbl->nsci].cj4_ind_start;
3570     if (j4len > 0)
3571     {
3572         /* We can only have complete blocks of 4 j-entries in a list,
3573          * so round the count up before closing.
3574          */
3575         nbl->ncj4         = ((nbl->work->cj_ind + NBNXN_GPU_JGROUP_SIZE - 1) >> NBNXN_GPU_JGROUP_SIZE_2LOG);
3576         nbl->work->cj_ind = nbl->ncj4*NBNXN_GPU_JGROUP_SIZE;
3577
3578         nbl->nsci++;
3579
3580         if (nsp_max_av > 0)
3581         {
3582             split_sci_entry(nbl, nsp_max_av, progBal, nc_bal, thread, nthread);
3583         }
3584     }
3585 }
3586
3587 /* Syncs the working array before adding another grid pair to the list */
3588 static void sync_work(nbnxn_pairlist_t *nbl)
3589 {
3590     if (!nbl->bSimple)
3591     {
3592         nbl->work->cj_ind   = nbl->ncj4*NBNXN_GPU_JGROUP_SIZE;
3593         nbl->work->cj4_init = nbl->ncj4;
3594     }
3595 }
3596
3597 /* Clears an nbnxn_pairlist_t data structure */
3598 static void clear_pairlist(nbnxn_pairlist_t *nbl)
3599 {
3600     nbl->nci           = 0;
3601     nbl->nsci          = 0;
3602     nbl->ncj           = 0;
3603     nbl->ncj4          = 0;
3604     nbl->nci_tot       = 0;
3605     nbl->nexcl         = 1;
3606
3607     nbl->work->ncj_noq = 0;
3608     nbl->work->ncj_hlj = 0;
3609 }
3610
3611 /* Sets a simple list i-cell bounding box, including PBC shift */
3612 static void set_icell_bb_simple(const float *bb, int ci,
3613                                 real shx, real shy, real shz,
3614                                 float *bb_ci)
3615 {
3616     int ia;
3617
3618     ia           = ci*NNBSBB_B;
3619     bb_ci[BBL_X] = bb[ia+BBL_X] + shx;
3620     bb_ci[BBL_Y] = bb[ia+BBL_Y] + shy;
3621     bb_ci[BBL_Z] = bb[ia+BBL_Z] + shz;
3622     bb_ci[BBU_X] = bb[ia+BBU_X] + shx;
3623     bb_ci[BBU_Y] = bb[ia+BBU_Y] + shy;
3624     bb_ci[BBU_Z] = bb[ia+BBU_Z] + shz;
3625 }
3626
3627 /* Sets a super-cell and sub cell bounding boxes, including PBC shift */
3628 static void set_icell_bb_supersub(const float *bb, int ci,
3629                                   real shx, real shy, real shz,
3630                                   float *bb_ci)
3631 {
3632     int ia, m, i;
3633
3634 #ifdef NBNXN_BBXXXX
3635     ia = ci*(GPU_NSUBCELL>>STRIDE_PBB_2LOG)*NNBSBB_XXXX;
3636     for (m = 0; m < (GPU_NSUBCELL>>STRIDE_PBB_2LOG)*NNBSBB_XXXX; m += NNBSBB_XXXX)
3637     {
3638         for (i = 0; i < STRIDE_PBB; i++)
3639         {
3640             bb_ci[m+0*STRIDE_PBB+i] = bb[ia+m+0*STRIDE_PBB+i] + shx;
3641             bb_ci[m+1*STRIDE_PBB+i] = bb[ia+m+1*STRIDE_PBB+i] + shy;
3642             bb_ci[m+2*STRIDE_PBB+i] = bb[ia+m+2*STRIDE_PBB+i] + shz;
3643             bb_ci[m+3*STRIDE_PBB+i] = bb[ia+m+3*STRIDE_PBB+i] + shx;
3644             bb_ci[m+4*STRIDE_PBB+i] = bb[ia+m+4*STRIDE_PBB+i] + shy;
3645             bb_ci[m+5*STRIDE_PBB+i] = bb[ia+m+5*STRIDE_PBB+i] + shz;
3646         }
3647     }
3648 #else
3649     ia = ci*GPU_NSUBCELL*NNBSBB_B;
3650     for (i = 0; i < GPU_NSUBCELL*NNBSBB_B; i += NNBSBB_B)
3651     {
3652         bb_ci[i+BBL_X] = bb[ia+i+BBL_X] + shx;
3653         bb_ci[i+BBL_Y] = bb[ia+i+BBL_Y] + shy;
3654         bb_ci[i+BBL_Z] = bb[ia+i+BBL_Z] + shz;
3655         bb_ci[i+BBU_X] = bb[ia+i+BBU_X] + shx;
3656         bb_ci[i+BBU_Y] = bb[ia+i+BBU_Y] + shy;
3657         bb_ci[i+BBU_Z] = bb[ia+i+BBU_Z] + shz;
3658     }
3659 #endif
3660 }
3661
3662 /* Copies PBC shifted i-cell atom coordinates x,y,z to working array */
3663 static void icell_set_x_simple(int ci,
3664                                real shx, real shy, real shz,
3665                                int na_c,
3666                                int stride, const real *x,
3667                                nbnxn_list_work_t *work)
3668 {
3669     int  ia, i;
3670
3671     ia = ci*NBNXN_CPU_CLUSTER_I_SIZE;
3672
3673     for (i = 0; i < NBNXN_CPU_CLUSTER_I_SIZE; i++)
3674     {
3675         work->x_ci[i*STRIDE_XYZ+XX] = x[(ia+i)*stride+XX] + shx;
3676         work->x_ci[i*STRIDE_XYZ+YY] = x[(ia+i)*stride+YY] + shy;
3677         work->x_ci[i*STRIDE_XYZ+ZZ] = x[(ia+i)*stride+ZZ] + shz;
3678     }
3679 }
3680
3681 /* Copies PBC shifted super-cell atom coordinates x,y,z to working array */
3682 static void icell_set_x_supersub(int ci,
3683                                  real shx, real shy, real shz,
3684                                  int na_c,
3685                                  int stride, const real *x,
3686                                  nbnxn_list_work_t *work)
3687 {
3688     int  ia, i;
3689     real *x_ci;
3690
3691     x_ci = work->x_ci;
3692
3693     ia = ci*GPU_NSUBCELL*na_c;
3694     for (i = 0; i < GPU_NSUBCELL*na_c; i++)
3695     {
3696         x_ci[i*DIM + XX] = x[(ia+i)*stride + XX] + shx;
3697         x_ci[i*DIM + YY] = x[(ia+i)*stride + YY] + shy;
3698         x_ci[i*DIM + ZZ] = x[(ia+i)*stride + ZZ] + shz;
3699     }
3700 }
3701
3702 #ifdef NBNXN_SEARCH_BB_SSE
3703 /* Copies PBC shifted super-cell packed atom coordinates to working array */
3704 static void icell_set_x_supersub_sse8(int ci,
3705                                       real shx, real shy, real shz,
3706                                       int na_c,
3707                                       int stride, const real *x,
3708                                       nbnxn_list_work_t *work)
3709 {
3710     int  si, io, ia, i, j;
3711     real *x_ci;
3712
3713     x_ci = work->x_ci;
3714
3715     for (si = 0; si < GPU_NSUBCELL; si++)
3716     {
3717         for (i = 0; i < na_c; i += STRIDE_PBB)
3718         {
3719             io = si*na_c + i;
3720             ia = ci*GPU_NSUBCELL*na_c + io;
3721             for (j = 0; j < STRIDE_PBB; j++)
3722             {
3723                 x_ci[io*DIM + j + XX*STRIDE_PBB] = x[(ia+j)*stride+XX] + shx;
3724                 x_ci[io*DIM + j + YY*STRIDE_PBB] = x[(ia+j)*stride+YY] + shy;
3725                 x_ci[io*DIM + j + ZZ*STRIDE_PBB] = x[(ia+j)*stride+ZZ] + shz;
3726             }
3727         }
3728     }
3729 }
3730 #endif
3731
3732 static real nbnxn_rlist_inc_nonloc_fac = 0.6;
3733
3734 /* Due to the cluster size the effective pair-list is longer than
3735  * that of a simple atom pair-list. This function gives the extra distance.
3736  */
3737 real nbnxn_get_rlist_effective_inc(int cluster_size, real atom_density)
3738 {
3739     return ((0.5 + nbnxn_rlist_inc_nonloc_fac)*sqr(((cluster_size) - 1.0)/(cluster_size))*pow((cluster_size)/(atom_density), 1.0/3.0));
3740 }
3741
3742 /* Estimates the interaction volume^2 for non-local interactions */
3743 static real nonlocal_vol2(const gmx_domdec_zones_t *zones, rvec ls, real r)
3744 {
3745     int  z, d;
3746     real cl, ca, za;
3747     real vold_est;
3748     real vol2_est_tot;
3749
3750     vol2_est_tot = 0;
3751
3752     /* Here we simply add up the volumes of 1, 2 or 3 1D decomposition
3753      * not home interaction volume^2. As these volumes are not additive,
3754      * this is an overestimate, but it would only be significant in the limit
3755      * of small cells, where we anyhow need to split the lists into
3756      * as small parts as possible.
3757      */
3758
3759     for (z = 0; z < zones->n; z++)
3760     {
3761         if (zones->shift[z][XX] + zones->shift[z][YY] + zones->shift[z][ZZ] == 1)
3762         {
3763             cl = 0;
3764             ca = 1;
3765             za = 1;
3766             for (d = 0; d < DIM; d++)
3767             {
3768                 if (zones->shift[z][d] == 0)
3769                 {
3770                     cl += 0.5*ls[d];
3771                     ca *= ls[d];
3772                     za *= zones->size[z].x1[d] - zones->size[z].x0[d];
3773                 }
3774             }
3775
3776             /* 4 octants of a sphere */
3777             vold_est  = 0.25*M_PI*r*r*r*r;
3778             /* 4 quarter pie slices on the edges */
3779             vold_est += 4*cl*M_PI/6.0*r*r*r;
3780             /* One rectangular volume on a face */
3781             vold_est += ca*0.5*r*r;
3782
3783             vol2_est_tot += vold_est*za;
3784         }
3785     }
3786
3787     return vol2_est_tot;
3788 }
3789
3790 /* Estimates the average size of a full j-list for super/sub setup */
3791 static int get_nsubpair_max(const nbnxn_search_t nbs,
3792                             int                  iloc,
3793                             real                 rlist,
3794                             int                  min_ci_balanced)
3795 {
3796     const nbnxn_grid_t *grid;
3797     rvec ls;
3798     real xy_diag2, r_eff_sup, vol_est, nsp_est, nsp_est_nl;
3799     int  nsubpair_max;
3800
3801     grid = &nbs->grid[0];
3802
3803     ls[XX] = (grid->c1[XX] - grid->c0[XX])/(grid->ncx*GPU_NSUBCELL_X);
3804     ls[YY] = (grid->c1[YY] - grid->c0[YY])/(grid->ncy*GPU_NSUBCELL_Y);
3805     ls[ZZ] = (grid->c1[ZZ] - grid->c0[ZZ])*grid->ncx*grid->ncy/(grid->nc*GPU_NSUBCELL_Z);
3806
3807     /* The average squared length of the diagonal of a sub cell */
3808     xy_diag2 = ls[XX]*ls[XX] + ls[YY]*ls[YY] + ls[ZZ]*ls[ZZ];
3809
3810     /* The formulas below are a heuristic estimate of the average nsj per si*/
3811     r_eff_sup = rlist + nbnxn_rlist_inc_nonloc_fac*sqr((grid->na_c - 1.0)/grid->na_c)*sqrt(xy_diag2/3);
3812
3813     if (!nbs->DomDec || nbs->zones->n == 1)
3814     {
3815         nsp_est_nl = 0;
3816     }
3817     else
3818     {
3819         nsp_est_nl =
3820             sqr(grid->atom_density/grid->na_c)*
3821             nonlocal_vol2(nbs->zones, ls, r_eff_sup);
3822     }
3823
3824     if (LOCAL_I(iloc))
3825     {
3826         /* Sub-cell interacts with itself */
3827         vol_est  = ls[XX]*ls[YY]*ls[ZZ];
3828         /* 6/2 rectangular volume on the faces */
3829         vol_est += (ls[XX]*ls[YY] + ls[XX]*ls[ZZ] + ls[YY]*ls[ZZ])*r_eff_sup;
3830         /* 12/2 quarter pie slices on the edges */
3831         vol_est += 2*(ls[XX] + ls[YY] + ls[ZZ])*0.25*M_PI*sqr(r_eff_sup);
3832         /* 4 octants of a sphere */
3833         vol_est += 0.5*4.0/3.0*M_PI*pow(r_eff_sup, 3);
3834
3835         nsp_est = grid->nsubc_tot*vol_est*grid->atom_density/grid->na_c;
3836
3837         /* Subtract the non-local pair count */
3838         nsp_est -= nsp_est_nl;
3839
3840         if (debug)
3841         {
3842             fprintf(debug, "nsp_est local %5.1f non-local %5.1f\n",
3843                     nsp_est, nsp_est_nl);
3844         }
3845     }
3846     else
3847     {
3848         nsp_est = nsp_est_nl;
3849     }
3850
3851     if (min_ci_balanced <= 0 || grid->nc >= min_ci_balanced || grid->nc == 0)
3852     {
3853         /* We don't need to worry */
3854         nsubpair_max = -1;
3855     }
3856     else
3857     {
3858         /* Thus the (average) maximum j-list size should be as follows */
3859         nsubpair_max = max(1, (int)(nsp_est/min_ci_balanced+0.5));
3860
3861         /* Since the target value is a maximum (this avoid high outliers,
3862          * which lead to load imbalance), not average, we get more lists
3863          * than we ask for (to compensate we need to add GPU_NSUBCELL*4/4).
3864          * But more importantly, the optimal GPU performance moves
3865          * to lower number of block for very small blocks.
3866          * To compensate we add the maximum pair count per cj4.
3867          */
3868         nsubpair_max += GPU_NSUBCELL*NBNXN_CPU_CLUSTER_I_SIZE;
3869     }
3870
3871     if (debug)
3872     {
3873         fprintf(debug, "nbl nsp estimate %.1f, nsubpair_max %d\n",
3874                 nsp_est, nsubpair_max);
3875     }
3876
3877     return nsubpair_max;
3878 }
3879
3880 /* Debug list print function */
3881 static void print_nblist_ci_cj(FILE *fp, const nbnxn_pairlist_t *nbl)
3882 {
3883     int i, j;
3884
3885     for (i = 0; i < nbl->nci; i++)
3886     {
3887         fprintf(fp, "ci %4d  shift %2d  ncj %3d\n",
3888                 nbl->ci[i].ci, nbl->ci[i].shift,
3889                 nbl->ci[i].cj_ind_end - nbl->ci[i].cj_ind_start);
3890
3891         for (j = nbl->ci[i].cj_ind_start; j < nbl->ci[i].cj_ind_end; j++)
3892         {
3893             fprintf(fp, "  cj %5d  imask %x\n",
3894                     nbl->cj[j].cj,
3895                     nbl->cj[j].excl);
3896         }
3897     }
3898 }
3899
3900 /* Debug list print function */
3901 static void print_nblist_sci_cj(FILE *fp, const nbnxn_pairlist_t *nbl)
3902 {
3903     int i, j4, j;
3904
3905     for (i = 0; i < nbl->nsci; i++)
3906     {
3907         fprintf(fp, "ci %4d  shift %2d  ncj4 %2d\n",
3908                 nbl->sci[i].sci, nbl->sci[i].shift,
3909                 nbl->sci[i].cj4_ind_end - nbl->sci[i].cj4_ind_start);
3910
3911         for (j4 = nbl->sci[i].cj4_ind_start; j4 < nbl->sci[i].cj4_ind_end; j4++)
3912         {
3913             for (j = 0; j < NBNXN_GPU_JGROUP_SIZE; j++)
3914             {
3915                 fprintf(fp, "  sj %5d  imask %x\n",
3916                         nbl->cj4[j4].cj[j],
3917                         nbl->cj4[j4].imei[0].imask);
3918             }
3919         }
3920     }
3921 }
3922
3923 /* Combine pair lists *nbl generated on multiple threads nblc */
3924 static void combine_nblists(int nnbl, nbnxn_pairlist_t **nbl,
3925                             nbnxn_pairlist_t *nblc)
3926 {
3927     int nsci, ncj4, nexcl;
3928     int n, i;
3929
3930     if (nblc->bSimple)
3931     {
3932         gmx_incons("combine_nblists does not support simple lists");
3933     }
3934
3935     nsci  = nblc->nsci;
3936     ncj4  = nblc->ncj4;
3937     nexcl = nblc->nexcl;
3938     for (i = 0; i < nnbl; i++)
3939     {
3940         nsci  += nbl[i]->nsci;
3941         ncj4  += nbl[i]->ncj4;
3942         nexcl += nbl[i]->nexcl;
3943     }
3944
3945     if (nsci > nblc->sci_nalloc)
3946     {
3947         nb_realloc_sci(nblc, nsci);
3948     }
3949     if (ncj4 > nblc->cj4_nalloc)
3950     {
3951         nblc->cj4_nalloc = over_alloc_small(ncj4);
3952         nbnxn_realloc_void((void **)&nblc->cj4,
3953                            nblc->ncj4*sizeof(*nblc->cj4),
3954                            nblc->cj4_nalloc*sizeof(*nblc->cj4),
3955                            nblc->alloc, nblc->free);
3956     }
3957     if (nexcl > nblc->excl_nalloc)
3958     {
3959         nblc->excl_nalloc = over_alloc_small(nexcl);
3960         nbnxn_realloc_void((void **)&nblc->excl,
3961                            nblc->nexcl*sizeof(*nblc->excl),
3962                            nblc->excl_nalloc*sizeof(*nblc->excl),
3963                            nblc->alloc, nblc->free);
3964     }
3965
3966     /* Each thread should copy its own data to the combined arrays,
3967      * as otherwise data will go back and forth between different caches.
3968      */
3969 #pragma omp parallel for num_threads(gmx_omp_nthreads_get(emntPairsearch)) schedule(static)
3970     for (n = 0; n < nnbl; n++)
3971     {
3972         int sci_offset;
3973         int cj4_offset;
3974         int ci_offset;
3975         int excl_offset;
3976         int i, j4;
3977         const nbnxn_pairlist_t *nbli;
3978
3979         /* Determine the offset in the combined data for our thread */
3980         sci_offset  = nblc->nsci;
3981         cj4_offset  = nblc->ncj4;
3982         ci_offset   = nblc->nci_tot;
3983         excl_offset = nblc->nexcl;
3984
3985         for (i = 0; i < n; i++)
3986         {
3987             sci_offset  += nbl[i]->nsci;
3988             cj4_offset  += nbl[i]->ncj4;
3989             ci_offset   += nbl[i]->nci_tot;
3990             excl_offset += nbl[i]->nexcl;
3991         }
3992
3993         nbli = nbl[n];
3994
3995         for (i = 0; i < nbli->nsci; i++)
3996         {
3997             nblc->sci[sci_offset+i]                = nbli->sci[i];
3998             nblc->sci[sci_offset+i].cj4_ind_start += cj4_offset;
3999             nblc->sci[sci_offset+i].cj4_ind_end   += cj4_offset;
4000         }
4001
4002         for (j4 = 0; j4 < nbli->ncj4; j4++)
4003         {
4004             nblc->cj4[cj4_offset+j4]                   = nbli->cj4[j4];
4005             nblc->cj4[cj4_offset+j4].imei[0].excl_ind += excl_offset;
4006             nblc->cj4[cj4_offset+j4].imei[1].excl_ind += excl_offset;
4007         }
4008
4009         for (j4 = 0; j4 < nbli->nexcl; j4++)
4010         {
4011             nblc->excl[excl_offset+j4] = nbli->excl[j4];
4012         }
4013     }
4014
4015     for (n = 0; n < nnbl; n++)
4016     {
4017         nblc->nsci    += nbl[n]->nsci;
4018         nblc->ncj4    += nbl[n]->ncj4;
4019         nblc->nci_tot += nbl[n]->nci_tot;
4020         nblc->nexcl   += nbl[n]->nexcl;
4021     }
4022 }
4023
4024 /* Returns the next ci to be processes by our thread */
4025 static gmx_bool next_ci(const nbnxn_grid_t *grid,
4026                         int conv,
4027                         int nth, int ci_block,
4028                         int *ci_x, int *ci_y,
4029                         int *ci_b, int *ci)
4030 {
4031     (*ci_b)++;
4032     (*ci)++;
4033
4034     if (*ci_b == ci_block)
4035     {
4036         /* Jump to the next block assigned to this task */
4037         *ci   += (nth - 1)*ci_block;
4038         *ci_b  = 0;
4039     }
4040
4041     if (*ci >= grid->nc*conv)
4042     {
4043         return FALSE;
4044     }
4045
4046     while (*ci >= grid->cxy_ind[*ci_x*grid->ncy + *ci_y + 1]*conv)
4047     {
4048         *ci_y += 1;
4049         if (*ci_y == grid->ncy)
4050         {
4051             *ci_x += 1;
4052             *ci_y  = 0;
4053         }
4054     }
4055
4056     return TRUE;
4057 }
4058
4059 /* Returns the distance^2 for which we put cell pairs in the list
4060  * without checking atom pair distances. This is usually < rlist^2.
4061  */
4062 static float boundingbox_only_distance2(const nbnxn_grid_t *gridi,
4063                                         const nbnxn_grid_t *gridj,
4064                                         real                rlist,
4065                                         gmx_bool            simple)
4066 {
4067     /* If the distance between two sub-cell bounding boxes is less
4068      * than this distance, do not check the distance between
4069      * all particle pairs in the sub-cell, since then it is likely
4070      * that the box pair has atom pairs within the cut-off.
4071      * We use the nblist cut-off minus 0.5 times the average x/y diagonal
4072      * spacing of the sub-cells. Around 40% of the checked pairs are pruned.
4073      * Using more than 0.5 gains at most 0.5%.
4074      * If forces are calculated more than twice, the performance gain
4075      * in the force calculation outweighs the cost of checking.
4076      * Note that with subcell lists, the atom-pair distance check
4077      * is only performed when only 1 out of 8 sub-cells in within range,
4078      * this is because the GPU is much faster than the cpu.
4079      */
4080     real bbx, bby;
4081     real rbb2;
4082
4083     bbx = 0.5*(gridi->sx + gridj->sx);
4084     bby = 0.5*(gridi->sy + gridj->sy);
4085     if (!simple)
4086     {
4087         bbx /= GPU_NSUBCELL_X;
4088         bby /= GPU_NSUBCELL_Y;
4089     }
4090
4091     rbb2 = sqr(max(0, rlist - 0.5*sqrt(bbx*bbx + bby*bby)));
4092
4093 #ifndef GMX_DOUBLE
4094     return rbb2;
4095 #else
4096     return (float)((1+GMX_FLOAT_EPS)*rbb2);
4097 #endif
4098 }
4099
4100 static int get_ci_block_size(const nbnxn_grid_t *gridi,
4101                              gmx_bool bDomDec, int nth)
4102 {
4103     const int ci_block_enum      = 5;
4104     const int ci_block_denom     = 11;
4105     const int ci_block_min_atoms = 16;
4106     int ci_block;
4107
4108     /* Here we decide how to distribute the blocks over the threads.
4109      * We use prime numbers to try to avoid that the grid size becomes
4110      * a multiple of the number of threads, which would lead to some
4111      * threads getting "inner" pairs and others getting boundary pairs,
4112      * which in turns will lead to load imbalance between threads.
4113      * Set the block size as 5/11/ntask times the average number of cells
4114      * in a y,z slab. This should ensure a quite uniform distribution
4115      * of the grid parts of the different thread along all three grid
4116      * zone boundaries with 3D domain decomposition. At the same time
4117      * the blocks will not become too small.
4118      */
4119     ci_block = (gridi->nc*ci_block_enum)/(ci_block_denom*gridi->ncx*nth);
4120
4121     /* Ensure the blocks are not too small: avoids cache invalidation */
4122     if (ci_block*gridi->na_sc < ci_block_min_atoms)
4123     {
4124         ci_block = (ci_block_min_atoms + gridi->na_sc - 1)/gridi->na_sc;
4125     }
4126
4127     /* Without domain decomposition
4128      * or with less than 3 blocks per task, divide in nth blocks.
4129      */
4130     if (!bDomDec || ci_block*3*nth > gridi->nc)
4131     {
4132         ci_block = (gridi->nc + nth - 1)/nth;
4133     }
4134
4135     return ci_block;
4136 }
4137
4138 /* Generates the part of pair-list nbl assigned to our thread */
4139 static void nbnxn_make_pairlist_part(const nbnxn_search_t nbs,
4140                                      const nbnxn_grid_t *gridi,
4141                                      const nbnxn_grid_t *gridj,
4142                                      nbnxn_search_work_t *work,
4143                                      const nbnxn_atomdata_t *nbat,
4144                                      const t_blocka *excl,
4145                                      real rlist,
4146                                      int nb_kernel_type,
4147                                      int ci_block,
4148                                      gmx_bool bFBufferFlag,
4149                                      int nsubpair_max,
4150                                      gmx_bool progBal,
4151                                      int min_ci_balanced,
4152                                      int th, int nth,
4153                                      nbnxn_pairlist_t *nbl)
4154 {
4155     int  na_cj_2log;
4156     matrix box;
4157     real rl2;
4158     float rbb2;
4159     int  d;
4160     int  ci_b, ci, ci_x, ci_y, ci_xy, cj;
4161     ivec shp;
4162     int  tx, ty, tz;
4163     int  shift;
4164     gmx_bool bMakeList;
4165     real shx, shy, shz;
4166     int  conv_i, cell0_i;
4167     const float *bb_i, *bbcz_i, *bbcz_j;
4168     const int *flags_i;
4169     real bx0, bx1, by0, by1, bz0, bz1;
4170     real bz1_frac;
4171     real d2cx, d2z, d2z_cx, d2z_cy, d2zx, d2zxy, d2xy;
4172     int  cxf, cxl, cyf, cyf_x, cyl;
4173     int  cx, cy;
4174     int  c0, c1, cs, cf, cl;
4175     int  ndistc;
4176     int  ncpcheck;
4177     int  gridi_flag_shift = 0, gridj_flag_shift = 0;
4178     unsigned *gridj_flag  = NULL;
4179     int  ncj_old_i, ncj_old_j;
4180
4181     nbs_cycle_start(&work->cc[enbsCCsearch]);
4182
4183     if (gridj->bSimple != nbl->bSimple)
4184     {
4185         gmx_incons("Grid incompatible with pair-list");
4186     }
4187
4188     sync_work(nbl);
4189     nbl->na_sc = gridj->na_sc;
4190     nbl->na_ci = gridj->na_c;
4191     nbl->na_cj = nbnxn_kernel_to_cj_size(nb_kernel_type);
4192     na_cj_2log = get_2log(nbl->na_cj);
4193
4194     nbl->rlist  = rlist;
4195
4196     if (bFBufferFlag)
4197     {
4198         /* Determine conversion of clusters to flag blocks */
4199         gridi_flag_shift = 0;
4200         while ((nbl->na_ci<<gridi_flag_shift) < NBNXN_BUFFERFLAG_SIZE)
4201         {
4202             gridi_flag_shift++;
4203         }
4204         gridj_flag_shift = 0;
4205         while ((nbl->na_cj<<gridj_flag_shift) < NBNXN_BUFFERFLAG_SIZE)
4206         {
4207             gridj_flag_shift++;
4208         }
4209
4210         gridj_flag = work->buffer_flags.flag;
4211     }
4212
4213     copy_mat(nbs->box, box);
4214
4215     rl2 = nbl->rlist*nbl->rlist;
4216
4217     rbb2 = boundingbox_only_distance2(gridi, gridj, nbl->rlist, nbl->bSimple);
4218
4219     if (debug)
4220     {
4221         fprintf(debug, "nbl bounding box only distance %f\n", sqrt(rbb2));
4222     }
4223
4224     /* Set the shift range */
4225     for (d = 0; d < DIM; d++)
4226     {
4227         /* Check if we need periodicity shifts.
4228          * Without PBC or with domain decomposition we don't need them.
4229          */
4230         if (d >= ePBC2npbcdim(nbs->ePBC) || nbs->dd_dim[d])
4231         {
4232             shp[d] = 0;
4233         }
4234         else
4235         {
4236             if (d == XX &&
4237                 box[XX][XX] - fabs(box[YY][XX]) - fabs(box[ZZ][XX]) < sqrt(rl2))
4238             {
4239                 shp[d] = 2;
4240             }
4241             else
4242             {
4243                 shp[d] = 1;
4244             }
4245         }
4246     }
4247
4248     if (nbl->bSimple && !gridi->bSimple)
4249     {
4250         conv_i  = gridi->na_sc/gridj->na_sc;
4251         bb_i    = gridi->bb_simple;
4252         bbcz_i  = gridi->bbcz_simple;
4253         flags_i = gridi->flags_simple;
4254     }
4255     else
4256     {
4257         conv_i  = 1;
4258         bb_i    = gridi->bb;
4259         bbcz_i  = gridi->bbcz;
4260         flags_i = gridi->flags;
4261     }
4262     cell0_i = gridi->cell0*conv_i;
4263
4264     bbcz_j = gridj->bbcz;
4265
4266     if (conv_i != 1)
4267     {
4268         /* Blocks of the conversion factor - 1 give a large repeat count
4269          * combined with a small block size. This should result in good
4270          * load balancing for both small and large domains.
4271          */
4272         ci_block = conv_i - 1;
4273     }
4274     if (debug)
4275     {
4276         fprintf(debug, "nbl nc_i %d col.av. %.1f ci_block %d\n",
4277                 gridi->nc, gridi->nc/(double)(gridi->ncx*gridi->ncy), ci_block);
4278     }
4279
4280     ndistc   = 0;
4281     ncpcheck = 0;
4282
4283     /* Initially ci_b and ci to 1 before where we want them to start,
4284      * as they will both be incremented in next_ci.
4285      */
4286     ci_b = -1;
4287     ci   = th*ci_block - 1;
4288     ci_x = 0;
4289     ci_y = 0;
4290     while (next_ci(gridi, conv_i, nth, ci_block, &ci_x, &ci_y, &ci_b, &ci))
4291     {
4292         if (nbl->bSimple && flags_i[ci] == 0)
4293         {
4294             continue;
4295         }
4296
4297         ncj_old_i = nbl->ncj;
4298
4299         d2cx = 0;
4300         if (gridj != gridi && shp[XX] == 0)
4301         {
4302             if (nbl->bSimple)
4303             {
4304                 bx1 = bb_i[ci*NNBSBB_B+NNBSBB_C+XX];
4305             }
4306             else
4307             {
4308                 bx1 = gridi->c0[XX] + (ci_x+1)*gridi->sx;
4309             }
4310             if (bx1 < gridj->c0[XX])
4311             {
4312                 d2cx = sqr(gridj->c0[XX] - bx1);
4313
4314                 if (d2cx >= rl2)
4315                 {
4316                     continue;
4317                 }
4318             }
4319         }
4320
4321         ci_xy = ci_x*gridi->ncy + ci_y;
4322
4323         /* Loop over shift vectors in three dimensions */
4324         for (tz = -shp[ZZ]; tz <= shp[ZZ]; tz++)
4325         {
4326             shz = tz*box[ZZ][ZZ];
4327
4328             bz0 = bbcz_i[ci*NNBSBB_D  ] + shz;
4329             bz1 = bbcz_i[ci*NNBSBB_D+1] + shz;
4330
4331             if (tz == 0)
4332             {
4333                 d2z = 0;
4334             }
4335             else if (tz < 0)
4336             {
4337                 d2z = sqr(bz1);
4338             }
4339             else
4340             {
4341                 d2z = sqr(bz0 - box[ZZ][ZZ]);
4342             }
4343
4344             d2z_cx = d2z + d2cx;
4345
4346             if (d2z_cx >= rl2)
4347             {
4348                 continue;
4349             }
4350
4351             bz1_frac =
4352                 bz1/((real)(gridi->cxy_ind[ci_xy+1] - gridi->cxy_ind[ci_xy]));
4353             if (bz1_frac < 0)
4354             {
4355                 bz1_frac = 0;
4356             }
4357             /* The check with bz1_frac close to or larger than 1 comes later */
4358
4359             for (ty = -shp[YY]; ty <= shp[YY]; ty++)
4360             {
4361                 shy = ty*box[YY][YY] + tz*box[ZZ][YY];
4362
4363                 if (nbl->bSimple)
4364                 {
4365                     by0 = bb_i[ci*NNBSBB_B         +YY] + shy;
4366                     by1 = bb_i[ci*NNBSBB_B+NNBSBB_C+YY] + shy;
4367                 }
4368                 else
4369                 {
4370                     by0 = gridi->c0[YY] + (ci_y  )*gridi->sy + shy;
4371                     by1 = gridi->c0[YY] + (ci_y+1)*gridi->sy + shy;
4372                 }
4373
4374                 get_cell_range(by0, by1,
4375                                gridj->ncy, gridj->c0[YY], gridj->sy, gridj->inv_sy,
4376                                d2z_cx, rl2,
4377                                &cyf, &cyl);
4378
4379                 if (cyf > cyl)
4380                 {
4381                     continue;
4382                 }
4383
4384                 d2z_cy = d2z;
4385                 if (by1 < gridj->c0[YY])
4386                 {
4387                     d2z_cy += sqr(gridj->c0[YY] - by1);
4388                 }
4389                 else if (by0 > gridj->c1[YY])
4390                 {
4391                     d2z_cy += sqr(by0 - gridj->c1[YY]);
4392                 }
4393
4394                 for (tx = -shp[XX]; tx <= shp[XX]; tx++)
4395                 {
4396                     shift = XYZ2IS(tx, ty, tz);
4397
4398 #ifdef NBNXN_SHIFT_BACKWARD
4399                     if (gridi == gridj && shift > CENTRAL)
4400                     {
4401                         continue;
4402                     }
4403 #endif
4404
4405                     shx = tx*box[XX][XX] + ty*box[YY][XX] + tz*box[ZZ][XX];
4406
4407                     if (nbl->bSimple)
4408                     {
4409                         bx0 = bb_i[ci*NNBSBB_B         +XX] + shx;
4410                         bx1 = bb_i[ci*NNBSBB_B+NNBSBB_C+XX] + shx;
4411                     }
4412                     else
4413                     {
4414                         bx0 = gridi->c0[XX] + (ci_x  )*gridi->sx + shx;
4415                         bx1 = gridi->c0[XX] + (ci_x+1)*gridi->sx + shx;
4416                     }
4417
4418                     get_cell_range(bx0, bx1,
4419                                    gridj->ncx, gridj->c0[XX], gridj->sx, gridj->inv_sx,
4420                                    d2z_cy, rl2,
4421                                    &cxf, &cxl);
4422
4423                     if (cxf > cxl)
4424                     {
4425                         continue;
4426                     }
4427
4428                     if (nbl->bSimple)
4429                     {
4430                         new_ci_entry(nbl, cell0_i+ci, shift, flags_i[ci],
4431                                      nbl->work);
4432                     }
4433                     else
4434                     {
4435                         new_sci_entry(nbl, cell0_i+ci, shift, flags_i[ci],
4436                                       nbl->work);
4437                     }
4438
4439 #ifndef NBNXN_SHIFT_BACKWARD
4440                     if (cxf < ci_x)
4441 #else
4442                     if (shift == CENTRAL && gridi == gridj &&
4443                         cxf < ci_x)
4444 #endif
4445                     {
4446                         /* Leave the pairs with i > j.
4447                          * x is the major index, so skip half of it.
4448                          */
4449                         cxf = ci_x;
4450                     }
4451
4452                     if (nbl->bSimple)
4453                     {
4454                         set_icell_bb_simple(bb_i, ci, shx, shy, shz,
4455                                             nbl->work->bb_ci);
4456                     }
4457                     else
4458                     {
4459                         set_icell_bb_supersub(bb_i, ci, shx, shy, shz,
4460                                               nbl->work->bb_ci);
4461                     }
4462
4463                     nbs->icell_set_x(cell0_i+ci, shx, shy, shz,
4464                                      gridi->na_c, nbat->xstride, nbat->x,
4465                                      nbl->work);
4466
4467                     for (cx = cxf; cx <= cxl; cx++)
4468                     {
4469                         d2zx = d2z;
4470                         if (gridj->c0[XX] + cx*gridj->sx > bx1)
4471                         {
4472                             d2zx += sqr(gridj->c0[XX] + cx*gridj->sx - bx1);
4473                         }
4474                         else if (gridj->c0[XX] + (cx+1)*gridj->sx < bx0)
4475                         {
4476                             d2zx += sqr(gridj->c0[XX] + (cx+1)*gridj->sx - bx0);
4477                         }
4478
4479 #ifndef NBNXN_SHIFT_BACKWARD
4480                         if (gridi == gridj &&
4481                             cx == 0 && cyf < ci_y)
4482 #else
4483                         if (gridi == gridj &&
4484                             cx == 0 && shift == CENTRAL && cyf < ci_y)
4485 #endif
4486                         {
4487                             /* Leave the pairs with i > j.
4488                              * Skip half of y when i and j have the same x.
4489                              */
4490                             cyf_x = ci_y;
4491                         }
4492                         else
4493                         {
4494                             cyf_x = cyf;
4495                         }
4496
4497                         for (cy = cyf_x; cy <= cyl; cy++)
4498                         {
4499                             c0 = gridj->cxy_ind[cx*gridj->ncy+cy];
4500                             c1 = gridj->cxy_ind[cx*gridj->ncy+cy+1];
4501 #ifdef NBNXN_SHIFT_BACKWARD
4502                             if (gridi == gridj &&
4503                                 shift == CENTRAL && c0 < ci)
4504                             {
4505                                 c0 = ci;
4506                             }
4507 #endif
4508
4509                             d2zxy = d2zx;
4510                             if (gridj->c0[YY] + cy*gridj->sy > by1)
4511                             {
4512                                 d2zxy += sqr(gridj->c0[YY] + cy*gridj->sy - by1);
4513                             }
4514                             else if (gridj->c0[YY] + (cy+1)*gridj->sy < by0)
4515                             {
4516                                 d2zxy += sqr(gridj->c0[YY] + (cy+1)*gridj->sy - by0);
4517                             }
4518                             if (c1 > c0 && d2zxy < rl2)
4519                             {
4520                                 cs = c0 + (int)(bz1_frac*(c1 - c0));
4521                                 if (cs >= c1)
4522                                 {
4523                                     cs = c1 - 1;
4524                                 }
4525
4526                                 d2xy = d2zxy - d2z;
4527
4528                                 /* Find the lowest cell that can possibly
4529                                  * be within range.
4530                                  */
4531                                 cf = cs;
4532                                 while (cf > c0 &&
4533                                        (bbcz_j[cf*NNBSBB_D+1] >= bz0 ||
4534                                         d2xy + sqr(bbcz_j[cf*NNBSBB_D+1] - bz0) < rl2))
4535                                 {
4536                                     cf--;
4537                                 }
4538
4539                                 /* Find the highest cell that can possibly
4540                                  * be within range.
4541                                  */
4542                                 cl = cs;
4543                                 while (cl < c1-1 &&
4544                                        (bbcz_j[cl*NNBSBB_D] <= bz1 ||
4545                                         d2xy + sqr(bbcz_j[cl*NNBSBB_D] - bz1) < rl2))
4546                                 {
4547                                     cl++;
4548                                 }
4549
4550 #ifdef NBNXN_REFCODE
4551                                 {
4552                                     /* Simple reference code, for debugging,
4553                                      * overrides the more complex code above.
4554                                      */
4555                                     int k;
4556                                     cf = c1;
4557                                     cl = -1;
4558                                     for (k = c0; k < c1; k++)
4559                                     {
4560                                         if (box_dist2(bx0, bx1, by0, by1, bz0, bz1,
4561                                                       bb+k*NNBSBB_B) < rl2 &&
4562                                             k < cf)
4563                                         {
4564                                             cf = k;
4565                                         }
4566                                         if (box_dist2(bx0, bx1, by0, by1, bz0, bz1,
4567                                                       bb+k*NNBSBB_B) < rl2 &&
4568                                             k > cl)
4569                                         {
4570                                             cl = k;
4571                                         }
4572                                     }
4573                                 }
4574 #endif
4575
4576                                 if (gridi == gridj)
4577                                 {
4578                                     /* We want each atom/cell pair only once,
4579                                      * only use cj >= ci.
4580                                      */
4581 #ifndef NBNXN_SHIFT_BACKWARD
4582                                     cf = max(cf, ci);
4583 #else
4584                                     if (shift == CENTRAL)
4585                                     {
4586                                         cf = max(cf, ci);
4587                                     }
4588 #endif
4589                                 }
4590
4591                                 if (cf <= cl)
4592                                 {
4593                                     /* For f buffer flags with simple lists */
4594                                     ncj_old_j = nbl->ncj;
4595
4596                                     switch (nb_kernel_type)
4597                                     {
4598                                         case nbnxnk4x4_PlainC:
4599                                             check_subcell_list_space_simple(nbl, cl-cf+1);
4600
4601                                             make_cluster_list_simple(gridj,
4602                                                                      nbl, ci, cf, cl,
4603                                                                      (gridi == gridj && shift == CENTRAL),
4604                                                                      nbat->x,
4605                                                                      rl2, rbb2,
4606                                                                      &ndistc);
4607                                             break;
4608 #ifdef GMX_NBNXN_SIMD_4XN
4609                                         case nbnxnk4xN_SIMD_4xN:
4610                                             check_subcell_list_space_simple(nbl, ci_to_cj(na_cj_2log, cl-cf)+2);
4611                                             make_cluster_list_simd_4xn(gridj,
4612                                                                        nbl, ci, cf, cl,
4613                                                                        (gridi == gridj && shift == CENTRAL),
4614                                                                        nbat->x,
4615                                                                        rl2, rbb2,
4616                                                                        &ndistc);
4617                                             break;
4618 #endif
4619 #ifdef GMX_NBNXN_SIMD_2XNN
4620                                         case nbnxnk4xN_SIMD_2xNN:
4621                                             check_subcell_list_space_simple(nbl, ci_to_cj(na_cj_2log, cl-cf)+2);
4622                                             make_cluster_list_simd_2xnn(gridj,
4623                                                                         nbl, ci, cf, cl,
4624                                                                         (gridi == gridj && shift == CENTRAL),
4625                                                                         nbat->x,
4626                                                                         rl2, rbb2,
4627                                                                         &ndistc);
4628                                             break;
4629 #endif
4630                                         case nbnxnk8x8x8_PlainC:
4631                                         case nbnxnk8x8x8_CUDA:
4632                                             check_subcell_list_space_supersub(nbl, cl-cf+1);
4633                                             for (cj = cf; cj <= cl; cj++)
4634                                             {
4635                                                 make_cluster_list_supersub(nbs, gridi, gridj,
4636                                                                            nbl, ci, cj,
4637                                                                            (gridi == gridj && shift == CENTRAL && ci == cj),
4638                                                                            nbat->xstride, nbat->x,
4639                                                                            rl2, rbb2,
4640                                                                            &ndistc);
4641                                             }
4642                                             break;
4643                                     }
4644                                     ncpcheck += cl - cf + 1;
4645
4646                                     if (bFBufferFlag && nbl->ncj > ncj_old_j)
4647                                     {
4648                                         int cbf, cbl, cb;
4649
4650                                         cbf = nbl->cj[ncj_old_j].cj >> gridj_flag_shift;
4651                                         cbl = nbl->cj[nbl->ncj-1].cj >> gridj_flag_shift;
4652                                         for (cb = cbf; cb <= cbl; cb++)
4653                                         {
4654                                             gridj_flag[cb] = 1U<<th;
4655                                         }
4656                                     }
4657                                 }
4658                             }
4659                         }
4660                     }
4661
4662                     /* Set the exclusions for this ci list */
4663                     if (nbl->bSimple)
4664                     {
4665                         set_ci_top_excls(nbs,
4666                                          nbl,
4667                                          shift == CENTRAL && gridi == gridj,
4668                                          gridj->na_c_2log,
4669                                          na_cj_2log,
4670                                          &(nbl->ci[nbl->nci]),
4671                                          excl);
4672                     }
4673                     else
4674                     {
4675                         set_sci_top_excls(nbs,
4676                                           nbl,
4677                                           shift == CENTRAL && gridi == gridj,
4678                                           gridj->na_c_2log,
4679                                           &(nbl->sci[nbl->nsci]),
4680                                           excl);
4681                     }
4682
4683                     /* Close this ci list */
4684                     if (nbl->bSimple)
4685                     {
4686                         close_ci_entry_simple(nbl);
4687                     }
4688                     else
4689                     {
4690                         close_ci_entry_supersub(nbl,
4691                                                 nsubpair_max,
4692                                                 progBal, min_ci_balanced,
4693                                                 th, nth);
4694                     }
4695                 }
4696             }
4697         }
4698
4699         if (bFBufferFlag && nbl->ncj > ncj_old_i)
4700         {
4701             work->buffer_flags.flag[(gridi->cell0+ci)>>gridi_flag_shift] = 1U<<th;
4702         }
4703     }
4704
4705     work->ndistc = ndistc;
4706
4707     nbs_cycle_stop(&work->cc[enbsCCsearch]);
4708
4709     if (debug)
4710     {
4711         fprintf(debug, "number of distance checks %d\n", ndistc);
4712         fprintf(debug, "ncpcheck %s %d\n", gridi == gridj ? "local" : "non-local",
4713                 ncpcheck);
4714
4715         if (nbl->bSimple)
4716         {
4717             print_nblist_statistics_simple(debug, nbl, nbs, rlist);
4718         }
4719         else
4720         {
4721             print_nblist_statistics_supersub(debug, nbl, nbs, rlist);
4722         }
4723
4724     }
4725 }
4726
4727 static void reduce_buffer_flags(const nbnxn_search_t        nbs,
4728                                 int                         nsrc,
4729                                 const nbnxn_buffer_flags_t *dest)
4730 {
4731     int s, b;
4732     const unsigned *flag;
4733
4734     for (s = 0; s < nsrc; s++)
4735     {
4736         flag = nbs->work[s].buffer_flags.flag;
4737
4738         for (b = 0; b < dest->nflag; b++)
4739         {
4740             dest->flag[b] |= flag[b];
4741         }
4742     }
4743 }
4744
4745 static void print_reduction_cost(const nbnxn_buffer_flags_t *flags, int nout)
4746 {
4747     int nelem, nkeep, ncopy, nred, b, c, out;
4748
4749     nelem = 0;
4750     nkeep = 0;
4751     ncopy = 0;
4752     nred  = 0;
4753     for (b = 0; b < flags->nflag; b++)
4754     {
4755         if (flags->flag[b] == 1)
4756         {
4757             /* Only flag 0 is set, no copy of reduction required */
4758             nelem++;
4759             nkeep++;
4760         }
4761         else if (flags->flag[b] > 0)
4762         {
4763             c = 0;
4764             for (out = 0; out < nout; out++)
4765             {
4766                 if (flags->flag[b] & (1U<<out))
4767                 {
4768                     c++;
4769                 }
4770             }
4771             nelem += c;
4772             if (c == 1)
4773             {
4774                 ncopy++;
4775             }
4776             else
4777             {
4778                 nred += c;
4779             }
4780         }
4781     }
4782
4783     fprintf(debug, "nbnxn reduction: #flag %d #list %d elem %4.2f, keep %4.2f copy %4.2f red %4.2f\n",
4784             flags->nflag, nout,
4785             nelem/(double)(flags->nflag),
4786             nkeep/(double)(flags->nflag),
4787             ncopy/(double)(flags->nflag),
4788             nred/(double)(flags->nflag));
4789 }
4790
4791 /* Make a local or non-local pair-list, depending on iloc */
4792 void nbnxn_make_pairlist(const nbnxn_search_t  nbs,
4793                          nbnxn_atomdata_t     *nbat,
4794                          const t_blocka       *excl,
4795                          real                  rlist,
4796                          int                   min_ci_balanced,
4797                          nbnxn_pairlist_set_t *nbl_list,
4798                          int                   iloc,
4799                          int                   nb_kernel_type,
4800                          t_nrnb               *nrnb)
4801 {
4802     nbnxn_grid_t *gridi, *gridj;
4803     gmx_bool bGPUCPU;
4804     int nzi, zi, zj0, zj1, zj;
4805     int nsubpair_max;
4806     int th;
4807     int nnbl;
4808     nbnxn_pairlist_t **nbl;
4809     int ci_block;
4810     gmx_bool CombineNBLists;
4811     int np_tot, np_noq, np_hlj, nap;
4812
4813     /* Check if we are running hybrid GPU + CPU nbnxn mode */
4814     bGPUCPU = (!nbs->grid[0].bSimple && nbl_list->bSimple);
4815
4816     nnbl            = nbl_list->nnbl;
4817     nbl             = nbl_list->nbl;
4818     CombineNBLists  = nbl_list->bCombined;
4819
4820     if (debug)
4821     {
4822         fprintf(debug, "ns making %d nblists\n", nnbl);
4823     }
4824
4825     nbat->bUseBufferFlags = (nbat->nout > 1);
4826     /* We should re-init the flags before making the first list */
4827     if (nbat->bUseBufferFlags && (LOCAL_I(iloc) || bGPUCPU))
4828     {
4829         init_buffer_flags(&nbat->buffer_flags, nbat->natoms);
4830     }
4831
4832     if (nbl_list->bSimple)
4833     {
4834         switch (nb_kernel_type)
4835         {
4836 #ifdef GMX_NBNXN_SIMD_4XN
4837             case nbnxnk4xN_SIMD_4xN:
4838                 nbs->icell_set_x = icell_set_x_simd_4xn;
4839                 break;
4840 #endif
4841 #ifdef GMX_NBNXN_SIMD_2XNN
4842             case nbnxnk4xN_SIMD_2xNN:
4843                 nbs->icell_set_x = icell_set_x_simd_2xnn;
4844                 break;
4845 #endif
4846             default:
4847                 nbs->icell_set_x = icell_set_x_simple;
4848                 break;
4849         }
4850     }
4851     else
4852     {
4853 #ifdef NBNXN_SEARCH_BB_SSE
4854         nbs->icell_set_x = icell_set_x_supersub_sse8;
4855 #else
4856         nbs->icell_set_x = icell_set_x_supersub;
4857 #endif
4858     }
4859
4860     if (LOCAL_I(iloc))
4861     {
4862         /* Only zone (grid) 0 vs 0 */
4863         nzi = 1;
4864         zj0 = 0;
4865         zj1 = 1;
4866     }
4867     else
4868     {
4869         nzi = nbs->zones->nizone;
4870     }
4871
4872     if (!nbl_list->bSimple && min_ci_balanced > 0)
4873     {
4874         nsubpair_max = get_nsubpair_max(nbs, iloc, rlist, min_ci_balanced);
4875     }
4876     else
4877     {
4878         nsubpair_max = 0;
4879     }
4880
4881     /* Clear all pair-lists */
4882     for (th = 0; th < nnbl; th++)
4883     {
4884         clear_pairlist(nbl[th]);
4885     }
4886
4887     for (zi = 0; zi < nzi; zi++)
4888     {
4889         gridi = &nbs->grid[zi];
4890
4891         if (NONLOCAL_I(iloc))
4892         {
4893             zj0 = nbs->zones->izone[zi].j0;
4894             zj1 = nbs->zones->izone[zi].j1;
4895             if (zi == 0)
4896             {
4897                 zj0++;
4898             }
4899         }
4900         for (zj = zj0; zj < zj1; zj++)
4901         {
4902             gridj = &nbs->grid[zj];
4903
4904             if (debug)
4905             {
4906                 fprintf(debug, "ns search grid %d vs %d\n", zi, zj);
4907             }
4908
4909             nbs_cycle_start(&nbs->cc[enbsCCsearch]);
4910
4911             if (nbl[0]->bSimple && !gridi->bSimple)
4912             {
4913                 /* Hybrid list, determine blocking later */
4914                 ci_block = 0;
4915             }
4916             else
4917             {
4918                 ci_block = get_ci_block_size(gridi, nbs->DomDec, nnbl);
4919             }
4920
4921 #pragma omp parallel for num_threads(nnbl) schedule(static)
4922             for (th = 0; th < nnbl; th++)
4923             {
4924                 /* Re-init the thread-local work flag data before making
4925                  * the first list (not an elegant conditional).
4926                  */
4927                 if (nbat->bUseBufferFlags && ((zi == 0 && zj == 0) ||
4928                                               (bGPUCPU && zi == 0 && zj == 1)))
4929                 {
4930                     init_buffer_flags(&nbs->work[th].buffer_flags, nbat->natoms);
4931                 }
4932
4933                 if (CombineNBLists && th > 0)
4934                 {
4935                     clear_pairlist(nbl[th]);
4936                 }
4937
4938                 /* Divide the i super cell equally over the nblists */
4939                 nbnxn_make_pairlist_part(nbs, gridi, gridj,
4940                                          &nbs->work[th], nbat, excl,
4941                                          rlist,
4942                                          nb_kernel_type,
4943                                          ci_block,
4944                                          nbat->bUseBufferFlags,
4945                                          nsubpair_max,
4946                                          (LOCAL_I(iloc) || nbs->zones->n <= 2),
4947                                          min_ci_balanced,
4948                                          th, nnbl,
4949                                          nbl[th]);
4950             }
4951             nbs_cycle_stop(&nbs->cc[enbsCCsearch]);
4952
4953             np_tot = 0;
4954             np_noq = 0;
4955             np_hlj = 0;
4956             for (th = 0; th < nnbl; th++)
4957             {
4958                 inc_nrnb(nrnb, eNR_NBNXN_DIST2, nbs->work[th].ndistc);
4959
4960                 if (nbl_list->bSimple)
4961                 {
4962                     np_tot += nbl[th]->ncj;
4963                     np_noq += nbl[th]->work->ncj_noq;
4964                     np_hlj += nbl[th]->work->ncj_hlj;
4965                 }
4966                 else
4967                 {
4968                     /* This count ignores potential subsequent pair pruning */
4969                     np_tot += nbl[th]->nci_tot;
4970                 }
4971             }
4972             nap                   = nbl[0]->na_ci*nbl[0]->na_cj;
4973             nbl_list->natpair_ljq = (np_tot - np_noq)*nap - np_hlj*nap/2;
4974             nbl_list->natpair_lj  = np_noq*nap;
4975             nbl_list->natpair_q   = np_hlj*nap/2;
4976
4977             if (CombineNBLists && nnbl > 1)
4978             {
4979                 nbs_cycle_start(&nbs->cc[enbsCCcombine]);
4980
4981                 combine_nblists(nnbl-1, nbl+1, nbl[0]);
4982
4983                 nbs_cycle_stop(&nbs->cc[enbsCCcombine]);
4984             }
4985         }
4986     }
4987
4988     if (nbat->bUseBufferFlags)
4989     {
4990         reduce_buffer_flags(nbs, nnbl, &nbat->buffer_flags);
4991     }
4992
4993     /*
4994        print_supersub_nsp("nsubpair",nbl[0],iloc);
4995      */
4996
4997     /* Special performance logging stuff (env.var. GMX_NBNXN_CYCLE) */
4998     if (LOCAL_I(iloc))
4999     {
5000         nbs->search_count++;
5001     }
5002     if (nbs->print_cycles &&
5003         (!nbs->DomDec || (nbs->DomDec && !LOCAL_I(iloc))) &&
5004         nbs->search_count % 100 == 0)
5005     {
5006         nbs_cycle_print(stderr, nbs);
5007     }
5008
5009     if (debug && (CombineNBLists && nnbl > 1))
5010     {
5011         if (nbl[0]->bSimple)
5012         {
5013             print_nblist_statistics_simple(debug, nbl[0], nbs, rlist);
5014         }
5015         else
5016         {
5017             print_nblist_statistics_supersub(debug, nbl[0], nbs, rlist);
5018         }
5019     }
5020
5021     if (debug)
5022     {
5023         if (gmx_debug_at)
5024         {
5025             if (nbl[0]->bSimple)
5026             {
5027                 print_nblist_ci_cj(debug, nbl[0]);
5028             }
5029             else
5030             {
5031                 print_nblist_sci_cj(debug, nbl[0]);
5032             }
5033         }
5034
5035         if (nbat->bUseBufferFlags)
5036         {
5037             print_reduction_cost(&nbat->buffer_flags, nnbl);
5038         }
5039     }
5040 }