Line data Source code
1 : ///////////////////////////////////////////////////////////////////////////
2 : // Inastemp - Berenger Bramas MPCDF - 2016
3 : // Under MIT Licence, please you must read the LICENCE file.
4 : ///////////////////////////////////////////////////////////////////////////
5 : #include "InastempStaticConfig.h"
6 :
7 : #include "core-test-all-static.hpp"
8 : #include "FLOPS/InaVecFLOPS.hpp"
9 :
10 1 : int main() {
11 : // clang-format off
12 2 : TestAll<InaVecAVX<double>> testerDouble;
13 2 : TestAll<InaVecAVX<float>> testerSingle;
14 :
15 2 : TestAll<InaVecFLOPS<InaVecAVX<double>>> testerDoubleFlops;
16 2 : TestAll<InaVecFLOPS<InaVecAVX<float>>> testerSingleFlops;
17 : // clang-format on
18 1 : return testerDouble.Run() + testerSingle.Run()
19 1 : + testerDoubleFlops.Run() + testerSingleFlops.Run();
20 4 : }
|