SYCL: Avoid using no_init read accessor in rocFFT
[alexxy/gromacs.git] / src / gromacs / ewald / pme_grid.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2014,2015,2016,2017,2018 by the GROMACS development team.
5  * Copyright (c) 2019,2020, by the GROMACS development team, led by
6  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
7  * and including many others, as listed in the AUTHORS file in the
8  * top-level source directory and at http://www.gromacs.org.
9  *
10  * GROMACS is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public License
12  * as published by the Free Software Foundation; either version 2.1
13  * of the License, or (at your option) any later version.
14  *
15  * GROMACS is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with GROMACS; if not, see
22  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
23  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
24  *
25  * If you want to redistribute modifications to GROMACS, please
26  * consider that scientific software is very special. Version
27  * control is crucial - bugs must be traceable. We will be happy to
28  * consider code for inclusion in the official distribution, but
29  * derived work must not be called official GROMACS. Details are found
30  * in the README & COPYING files - if they are missing, get the
31  * official version at http://www.gromacs.org.
32  *
33  * To help us fund GROMACS development, we humbly ask that you cite
34  * the research papers on the package. Check out http://www.gromacs.org.
35  */
36 /* TODO find out what this file should be called */
37 #ifndef GMX_EWALD_PME_GRID_H
38 #define GMX_EWALD_PME_GRID_H
39
40 #include "gromacs/utility/basedefinitions.h"
41 #include "gromacs/utility/real.h"
42
43 struct gmx_pme_t;
44
45 /*! \brief
46  * We allow coordinates to be out the unit-cell by up to 2 box lengths,
47  * which might be needed along dimension x for a very skewed unit-cell.
48  */
49 constexpr int c_pmeMaxUnitcellShift = 2;
50
51 /*! \brief
52  * This affects the size of the lookup table of the modulo operation result,
53  * when working with PME local grid indices of the particles.
54  */
55 constexpr int c_pmeNeighborUnitcellCount = 2 * c_pmeMaxUnitcellShift + 1;
56
57 struct pmegrid_t;
58 struct pmegrids_t;
59
60 void gmx_sum_qgrid_dd(gmx_pme_t* pme, real* grid, int direction);
61
62 int copy_pmegrid_to_fftgrid(const gmx_pme_t* pme, const real* pmegrid, real* fftgrid, int grid_index);
63
64 int copy_fftgrid_to_pmegrid(gmx_pme_t* pme, const real* fftgrid, real* pmegrid, int grid_index, int nthread, int thread);
65
66 void wrap_periodic_pmegrid(const gmx_pme_t* pme, real* pmegrid);
67
68 void unwrap_periodic_pmegrid(gmx_pme_t* pme, real* pmegrid);
69
70 void pmegrid_init(pmegrid_t* grid,
71                   int        cx,
72                   int        cy,
73                   int        cz,
74                   int        x0,
75                   int        y0,
76                   int        z0,
77                   int        x1,
78                   int        y1,
79                   int        z1,
80                   gmx_bool   set_alignment,
81                   int        pme_order,
82                   real*      ptr);
83
84 void pmegrids_init(pmegrids_t* grids,
85                    int         nx,
86                    int         ny,
87                    int         nz,
88                    int         nz_base,
89                    int         pme_order,
90                    gmx_bool    bUseThreads,
91                    int         nthread,
92                    int         overlap_x,
93                    int         overlap_y);
94
95 void pmegrids_destroy(pmegrids_t* grids);
96
97 void make_gridindex_to_localindex(int n, int local_start, int local_range, int** global_to_local, real** fraction_shift);
98
99 void set_grid_alignment(int* pmegrid_nz, int pme_order);
100
101 void reuse_pmegrids(const pmegrids_t* oldgrid, pmegrids_t* newgrid);
102
103 #endif