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 "InastempGlobal.h"
6 :
7 : #include "SSE42/InaVecSSE42Double.hpp"
8 : #include "SSE42/InaVecSSE42Float.hpp"
9 :
10 : #include "flops-test-all.hpp"
11 : #include "FLOPS/InaVecFLOPS.hpp"
12 :
13 1 : int main() {
14 : // clang-format off
15 : FlopsTestAll<InaVecFLOPS<InaVecSSE42<double>>> testerDoubleFlops;
16 2 : FlopsTestAll<InaVecFLOPS<InaVecSSE42<float>>> testerSingleFlops;
17 : // clang-format on
18 1 : return testerDoubleFlops.Run() + testerSingleFlops.Run();
19 4 : }
|