2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2018, 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.
37 * Tests implementation of gmx::PaddedVector
39 * In particular we need to check that the padding works, and that
40 * unpadded_end() is maintained correctly.
42 * \author Mark Abraham <mark.j.abraham@gmail.com>
43 * \ingroup module_math
47 #include "gromacs/math/paddedvector.h"
52 #include <gtest/gtest.h>
54 #include "gromacs/math/vec.h"
55 #include "gromacs/math/vectypes.h"
56 #include "gromacs/utility/alignedallocator.h"
57 #include "gromacs/utility/basedefinitions.h"
59 #include "gromacs/math/tests/testarrayrefs.h"
66 //! Typed test fixture
68 class PaddedVectorTest
: public ::testing::Test
73 //! The types used in testing
74 using Implementations
= ::testing::Types
<
75 std::allocator
<int32_t>,
76 std::allocator
<float>,
77 std::allocator
<double>,
78 std::allocator
< BasicVector
< float>>,
79 std::allocator
< BasicVector
< double>>,
80 AlignedAllocator
<int32_t>,
81 AlignedAllocator
<float>,
82 AlignedAllocator
<double>,
83 AlignedAllocator
< BasicVector
< float>>,
84 AlignedAllocator
< BasicVector
<double>>
86 TYPED_TEST_CASE(PaddedVectorTest
, Implementations
);
88 TYPED_TEST(PaddedVectorTest
, ConstructsResizesAndReserves
)
90 using VectorType
= PaddedVector
<typename
TypeParam::value_type
, TypeParam
>;
95 EXPECT_EQ(v
.size(), v
.size());
96 EXPECT_EQ(v
.paddedSize(), v
.arrayRefWithPadding().size());
97 EXPECT_LE(v
.size(), v
.arrayRefWithPadding().size());
100 vReserved
.reserveWithPadding(5);
101 fillInput(&vReserved
, 1);
103 EXPECT_EQ(vReserved
.size(), vReserved
.size());
104 EXPECT_EQ(vReserved
.paddedSize(), vReserved
.arrayRefWithPadding().size());
105 EXPECT_LE(vReserved
.size(), vReserved
.arrayRefWithPadding().size());
107 EXPECT_LE(v
.paddedSize(), vReserved
.paddedSize());
110 TYPED_TEST(PaddedVectorTest
, CanCopyAssign
)
112 using VectorType
= PaddedVector
<typename
TypeParam::value_type
, TypeParam
>;
119 compareViews(v
.arrayRefWithPadding().unpaddedArrayRef(),
120 w
.arrayRefWithPadding().unpaddedArrayRef());
121 compareViews(makeArrayRef(v
), makeArrayRef(v
));
124 TYPED_TEST(PaddedVectorTest
, CanMoveAssign
)
126 using VectorType
= PaddedVector
<typename
TypeParam::value_type
, TypeParam
>;
133 SCOPED_TRACE("Comparing padded views before move");
134 compareViews(v
.arrayRefWithPadding().unpaddedArrayRef(),
135 x
.arrayRefWithPadding().unpaddedArrayRef());
136 SCOPED_TRACE("Comparing unpadded views before move");
137 compareViews(makeArrayRef(v
), makeArrayRef(x
));
141 SCOPED_TRACE("Comparing padded views");
142 compareViews(v
.arrayRefWithPadding().unpaddedArrayRef(),
143 w
.arrayRefWithPadding().unpaddedArrayRef());
144 SCOPED_TRACE("Comparing unpadded views");
145 compareViews(makeArrayRef(v
), makeArrayRef(w
));
148 TYPED_TEST(PaddedVectorTest
, CanSwap
)
150 using VectorType
= PaddedVector
<typename
TypeParam::value_type
, TypeParam
>;
158 compareViews(v
.arrayRefWithPadding().unpaddedArrayRef(),
159 w
.arrayRefWithPadding().unpaddedArrayRef());
160 compareViews(makeArrayRef(v
), makeArrayRef(w
));