a26dc8af3f336c82327147b57d05f40da8c7991f
[alexxy/gromacs.git] / src / gromacs / fft / gpu_3dfft.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2016,2017,2018,2019,2021, by the GROMACS development team, led by
5  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6  * and including many others, as listed in the AUTHORS file in the
7  * top-level source directory and at http://www.gromacs.org.
8  *
9  * GROMACS is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public License
11  * as published by the Free Software Foundation; either version 2.1
12  * of the License, or (at your option) any later version.
13  *
14  * GROMACS is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with GROMACS; if not, see
21  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
22  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
23  *
24  * If you want to redistribute modifications to GROMACS, please
25  * consider that scientific software is very special. Version
26  * control is crucial - bugs must be traceable. We will be happy to
27  * consider code for inclusion in the official distribution, but
28  * derived work must not be called official GROMACS. Details are found
29  * in the README & COPYING files - if they are missing, get the
30  * official version at http://www.gromacs.org.
31  *
32  * To help us fund GROMACS development, we humbly ask that you cite
33  * the research papers on the package. Check out http://www.gromacs.org.
34  */
35
36 /*! \internal \file
37  *  \brief Declares the GPU 3D FFT routines.
38  *
39  *  \author Aleksei Iupinov <a.yupinov@gmail.com>
40  *  \author Mark Abraham <mark.j.abraham@gmail.com>
41  *  \author Gaurav Garg <gaugarg@nvidia.com>
42  *  \ingroup module_fft
43  */
44
45 #ifndef GMX_FFT_GPU_3DFFT_H
46 #define GMX_FFT_GPU_3DFFT_H
47
48 #include <memory>
49
50 #include "gromacs/fft/fft.h"
51 #include "gromacs/gpu_utils/devicebuffer_datatype.h"
52 #include "gromacs/gpu_utils/gputraits.h"
53 #include "gromacs/utility/gmxmpi.h"
54
55 class DeviceContext;
56 class DeviceStream;
57
58 namespace gmx
59 {
60
61 template<typename T>
62 class ArrayRef;
63
64 /*! \internal \brief
65  * Enum specifying all GPU FFT backends supported by GROMACS
66  * Some of the backends support only single GPU, some only multi-node, multi-GPU
67  */
68 enum class FftBackend
69 {
70     Cufft, // supports only single-GPU
71     Ocl,   // supports only single-GPU
72     Sycl,  // Not supported currently
73     HeFFTe_CUDA,
74     Count
75 };
76
77 /*! \internal \brief
78  * A 3D FFT class for performing R2C/C2R transforms
79  */
80 class Gpu3dFft
81 {
82 public:
83     /*! \brief
84      * Construct 3D FFT object for given backend
85      *
86      * \param[in]  backend                      FFT backend to be instantiated
87      * \param[in]  allocateGrids                True if fft grids are to be allocated, false if pre-allocated
88      * \param[in]  comm                         MPI communicator, used with distributed-FFT backends
89      * \param[in]  gridSizesInXForEachRank      Number of grid points used with each rank in X-dimension
90      * \param[in]  gridSizesInYForEachRank      Number of grid points used with each rank in Y-dimension
91      * \param[in]  nz                           Grid dimension in Z
92      * \param[in]  performOutOfPlaceFFT         Whether the FFT will be performed out-of-place
93      * \param[in]  context                      GPU context.
94      * \param[in]  pmeStream                    GPU stream for PME.
95      * \param[in,out]  realGridSize             Dimensions of the local real grid, out if allocateGrids=true
96      * \param[in,out]  realGridSizePadded       Dimensions of the local real grid with padding, out if allocateGrids=true
97      * \param[in,out]  complexGridSizePadded    Dimensions of the local complex grid with padding, out if allocateGrids=true
98      * \param[in,out]  realGrid                 Device buffer of floats for the local real grid, out if allocateGrids=true
99      * \param[in,out]  complexGrid              Device buffer of complex floats for the local complex grid, out if allocateGrids=true
100      */
101     Gpu3dFft(FftBackend           backend,
102              bool                 allocateGrids,
103              MPI_Comm             comm,
104              ArrayRef<const int>  gridSizesInXForEachRank,
105              ArrayRef<const int>  gridSizesInYForEachRank,
106              int                  nz,
107              bool                 performOutOfPlaceFFT,
108              const DeviceContext& context,
109              const DeviceStream&  pmeStream,
110              ivec                 realGridSize,
111              ivec                 realGridSizePadded,
112              ivec                 complexGridSizePadded,
113              DeviceBuffer<float>* realGrid,
114              DeviceBuffer<float>* complexGrid);
115
116     /*! \brief Destroys the FFT plans. */
117     ~Gpu3dFft();
118     /*! \brief Performs the FFT transform in given direction
119      *
120      * \param[in]  dir           FFT transform direction specifier
121      * \param[out] timingEvent   pointer to the timing event where timing data is recorded
122      */
123     void perform3dFft(gmx_fft_direction dir, CommandEvent* timingEvent);
124
125 private:
126     class Impl;
127     class ImplCuFft;
128     class ImplOcl;
129     class ImplSycl;
130
131     template<typename backend_tag>
132     class ImplHeFfte;
133
134     std::unique_ptr<Impl> impl_;
135 };
136
137 } // namespace gmx
138
139 #endif