2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2020, 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.
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.
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.
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.
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.
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.
36 /*! \libinternal \file
39 * This file contains the definition of a container for force buffers.
44 * \ingroup module_mdtypes
47 #ifndef GMX_MDTYPES_FORCEBUFFERS_H
48 #define GMX_MDTYPES_FORCEBUFFERS_H
50 #include "gromacs/gpu_utils/hostallocator.h"
51 #include "gromacs/math/arrayrefwithpadding.h"
52 #include "gromacs/math/vectypes.h"
53 #include "gromacs/utility/arrayref.h"
54 #include "gromacs/utility/classhelpers.h"
59 enum class PinningPolicy
: int;
61 /*! \libinternal \brief A view of the force buffer
63 * This is used for read and/or write access to the force buffer.
65 class ForceBuffersView
68 //! Constructor, creates a view to \p force
69 ForceBuffersView(const ArrayRefWithPadding
<RVec
>& force
,
70 const ArrayRefWithPadding
<RVec
>& forceMtsCombined
,
71 const bool useForceMtsCombined
) :
73 forceMtsCombined_(forceMtsCombined
),
74 useForceMtsCombined_(useForceMtsCombined
)
78 //! Copy constructor deleted to avoid creating non-const from const
79 ForceBuffersView(const ForceBuffersView
& o
) = delete;
81 //! Move constructor deleted, but could be implemented
82 ForceBuffersView(ForceBuffersView
&& o
) = delete;
84 ~ForceBuffersView() = default;
86 //! Copy assignment deleted to avoid creating non-const from const
87 ForceBuffersView
& operator=(const ForceBuffersView
& v
) = delete;
89 //! Move assignment, moves the view
90 ForceBuffersView
& operator=(ForceBuffersView
&& v
) = default;
92 //! Returns a const arrayref to the force buffer without padding
93 ArrayRef
<const RVec
> force() const { return force_
.unpaddedConstArrayRef(); }
95 //! Returns an arrayref to the force buffer without padding
96 ArrayRef
<RVec
> force() { return force_
.unpaddedArrayRef(); }
98 //! Returns an ArrayRefWithPadding to the force buffer
99 ArrayRefWithPadding
<RVec
> forceWithPadding() { return force_
; }
101 //! Returns a const arrayref to the MTS force buffer without padding
102 ArrayRef
<const RVec
> forceMtsCombined() const
104 GMX_ASSERT(useForceMtsCombined_
, "Need the MTS buffer");
105 return forceMtsCombined_
.unpaddedConstArrayRef();
108 //! Returns an arrayref to the MTS force buffer without padding
109 ArrayRef
<RVec
> forceMtsCombined()
111 GMX_ASSERT(useForceMtsCombined_
, "Need the MTS buffer");
112 return forceMtsCombined_
.unpaddedArrayRef();
115 //! Returns an ArrayRefWithPadding to the MTS force buffer
116 ArrayRefWithPadding
<RVec
> forceMtsCombinedWithPadding()
118 GMX_ASSERT(useForceMtsCombined_
, "Need the MTS buffer");
119 return forceMtsCombined_
;
124 ArrayRefWithPadding
<RVec
> force_
;
125 //! The force buffer for combined fast and slow forces with MTS
126 ArrayRefWithPadding
<RVec
> forceMtsCombined_
;
127 //! Wether we use forceMtsCombined_
128 bool useForceMtsCombined_
;
131 /*! \libinternal \brief Object that holds the force buffers
133 * Contains a normal force buffer and optionally a force buffer for combined fast and slow
134 * forces for use with multiple time stepping.
135 * More buffers can be added when needed. Those should also be added
136 * to ForceBuffersView.
137 * The force buffer (not forceMtsCombined) can be pinned for efficient transfer to/from GPUs.
138 * All access happens through the ForceBuffersView object.
143 //! Constructor, creates an empty force buffer with pinning not active and no MTS force buffer
146 /*! \brief Constructor, with options for using the MTS force buffer and the pinning policy
148 * \param[in] useForceMtsCombined Whether to enable use of the forceMtsCombined buffer
149 * \param[in] pinningPolicy The pinning policy for the force (not MTS) buffer
151 ForceBuffers(bool useForceMtsCombined
, PinningPolicy pinningPolicy
);
153 //! Copy constructor deleted, but could be implemented
154 ForceBuffers(const ForceBuffers
& o
) = delete;
156 //! Move constructor deleted, but could be implemented
157 ForceBuffers(ForceBuffers
&& o
) = delete;
161 //! Copy assignment operator, sets the pinning policy to CannotBePinned
162 ForceBuffers
& operator=(ForceBuffers
const& o
);
164 //! Move assignment operator, deleted but could be implemented
165 ForceBuffers
& operator=(ForceBuffers
&& o
) = delete;
167 //! Returns a const view to the force buffers
168 const ForceBuffersView
& view() const { return view_
; }
170 //! Returns a view to the force buffer
171 ForceBuffersView
& view() { return view_
; }
173 //! Resize the force buffer
174 void resize(int numAtoms
);
176 /*! \brief Returns the active pinning policy.
180 PinningPolicy
pinningPolicy() const;
184 PaddedHostVector
<RVec
> force_
;
185 //! Force buffer with combined fast and slow forces for use with multiple time stepping
186 PaddedHostVector
<RVec
> forceMtsCombined_
;
187 //! The view to the force buffer
188 ForceBuffersView view_
;
189 //! Wether we use forceMtsCombined_
190 bool useForceMtsCombined_
;