Move nbnxm setup responsibility to its own files and add tests
[alexxy/gromacs.git] / api / nblib / tests / nbnxmsetup.cpp
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 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 /*! \internal \file
36  * \brief
37  * Tests for nbnxm setup utilities
38  *
39  * \author Victor Holanda <victor.holanda@cscs.ch>
40  * \author Joe Jordan <ejjordan@kth.se>
41  * \author Prashanth Kanduri <kanduri@cscs.ch>
42  * \author Sebastian Keller <keller@cscs.ch>
43  */
44 #include <cmath>
45
46 #include "gromacs/utility/arrayref.h"
47 #include "gromacs/mdtypes/forcerec.h"
48 #include "gromacs/nbnxm/nbnxm.h"
49 #include "gromacs/nbnxm/nbnxm_simd.h"
50 #include "nblib/box.h"
51 #include "nblib/nbnxmsetuphelpers.h"
52
53 #include "testutils/testasserts.h"
54
55 namespace nblib
56 {
57 namespace test
58 {
59 namespace
60 {
61 TEST(NbnxmSetupTest, findNumEnergyGroups)
62 {
63     std::vector<int64_t> v(10);
64     int                  arbitraryGid = 7;
65
66     // this sets some bit outside the range of bits used for the group ID
67     // having all bits zero except those used for the group ID can otherwise hide bugs
68     v[5] |= gmx::sc_atomInfo_HasCharge;
69     v[5] = (v[5] & ~gmx::sc_atomInfo_EnergyGroupIdMask) | arbitraryGid;
70
71     int nEnergyGroups = arbitraryGid + 1;
72     EXPECT_EQ(nEnergyGroups, findNumEnergyGroups(v));
73 }
74
75 TEST(NbnxmSetupTest, canTranslateBenchmarkEnumAuto)
76 {
77     auto kernel = SimdKernels::SimdAuto;
78     EXPECT_EQ(translateBenchmarkEnum(kernel), Nbnxm::KernelType::NotSet);
79 }
80
81 TEST(NbnxmSetupTest, canTranslateBenchmarkEnumNo)
82 {
83     auto kernel = SimdKernels::SimdNo;
84     EXPECT_EQ(translateBenchmarkEnum(kernel), Nbnxm::KernelType::Cpu4x4_PlainC);
85 }
86
87 TEST(NbnxmSetupTest, canTranslateBenchmarkEnum2XM)
88 {
89     auto kernel = SimdKernels::Simd2XMM;
90     EXPECT_EQ(translateBenchmarkEnum(kernel), Nbnxm::KernelType::Cpu4xN_Simd_2xNN);
91 }
92
93 TEST(NbnxmSetupTest, canTranslateBenchmarkEnum4XM)
94 {
95     auto kernel = SimdKernels::Simd4XM;
96     EXPECT_EQ(translateBenchmarkEnum(kernel), Nbnxm::KernelType::Cpu4xN_Simd_4xN);
97 }
98
99 TEST(NbnxmSetupTest, CheckKernelSetupThrowsAuto)
100 {
101     EXPECT_ANY_THROW(checkKernelSetup(SimdKernels::SimdAuto));
102 }
103
104 TEST(NbnxmSetupTest, CheckKernelSetupThrowsCount)
105 {
106     EXPECT_ANY_THROW(checkKernelSetup(SimdKernels::Count));
107 }
108
109 TEST(NbnxmSetupTest, canCreateKernelSetupPlain)
110 {
111     NBKernelOptions nbKernelOptions;
112     nbKernelOptions.nbnxmSimd      = SimdKernels::SimdNo;
113     Nbnxm::KernelSetup kernelSetup = createKernelSetupCPU(nbKernelOptions);
114     EXPECT_EQ(kernelSetup.kernelType, Nbnxm::KernelType::Cpu4x4_PlainC);
115     EXPECT_EQ(kernelSetup.ewaldExclusionType, Nbnxm::EwaldExclusionType::Table);
116 }
117
118 TEST(NbnxmSetupTest, canCreateParticleInfoAllVdv)
119 {
120     size_t  numParticles = 2;
121     int64_t mask         = 0;
122     mask |= gmx::sc_atomInfo_HasVdw;
123     mask |= gmx::sc_atomInfo_HasCharge;
124     std::vector<int64_t> refParticles  = { mask, mask };
125     std::vector<int64_t> testParticles = createParticleInfoAllVdv(numParticles);
126     EXPECT_EQ(refParticles, testParticles);
127 }
128
129 TEST(NbnxmSetupTest, ewaldCoeffWorks)
130 {
131     real                              ewald     = ewaldCoeff(1e-5, 1.0);
132     gmx::test::FloatingPointTolerance tolerance = gmx::test::absoluteTolerance(1e-5);
133     EXPECT_REAL_EQ_TOL(ewald, 3.12341, tolerance);
134 }
135
136 TEST(NbnxmSetupTest, updateForcerecWorks)
137 {
138     t_forcerec forcerec;
139     Box        box(3);
140     EXPECT_NO_THROW(updateForcerec(&forcerec, box.legacyMatrix()));
141 }
142
143 // The following tests check if the user is allowed to specify configurations not permitted due
144 // to conflicting compile time setup flags
145
146 TEST(NbnxmSetupTest, canCheckKernelSetup)
147 {
148     NBKernelOptions nbKernelOptions;
149     nbKernelOptions.nbnxmSimd = SimdKernels::SimdNo;
150 #ifdef GMX_NBNXN_SIMD_4XN
151     nbKernelOptions.nbnxmSimd = SimdKernels::Simd4XM;
152 #endif
153 #ifdef GMX_NBNXN_SIMD_2XNN
154     nbKernelOptions.nbnxmSimd = SimdKernels::Simd2XMM;
155 #endif
156     EXPECT_NO_THROW(checkKernelSetup(nbKernelOptions.nbnxmSimd));
157 }
158
159 // check if the user is allowed to ask for SimdKernels::Simd2XMM when NBLIB is not compiled with it
160 #ifndef GMX_NBNXN_SIMD_2XNN
161 TEST(NbnxmSetupTest, cannotCreateKernelSetupCPU2XM)
162 {
163     NBKernelOptions nbKernelOptions;
164     nbKernelOptions.nbnxmSimd             = SimdKernels::Simd2XMM;
165     nbKernelOptions.useTabulatedEwaldCorr = true;
166     EXPECT_ANY_THROW(createKernelSetupCPU(nbKernelOptions));
167 }
168 #endif
169
170 // check if the user is allowed to ask for SimdKernels::Simd4XM when NBLIB is not compiled with it
171 #ifndef GMX_NBNXN_SIMD_4XN
172 TEST(NbnxmSetupTest, cannotCreateKernelSetupCPU4XM)
173 {
174     NBKernelOptions nbKernelOptions;
175     nbKernelOptions.nbnxmSimd             = SimdKernels::Simd4XM;
176     nbKernelOptions.useTabulatedEwaldCorr = false;
177     EXPECT_ANY_THROW(createKernelSetupCPU(nbKernelOptions));
178 }
179 #endif
180
181 } // namespace
182 } // namespace test
183 } // namespace nblib