diff --git a/benchmarks/Benchmark_mooee.cc b/benchmarks/Benchmark_mooee.cc new file mode 100644 index 00000000..c895109f --- /dev/null +++ b/benchmarks/Benchmark_mooee.cc @@ -0,0 +1,237 @@ + /************************************************************************************* + + Grid physics library, www.github.com/paboyle/Grid + + Source file: ./benchmarks/Benchmark_dwf.cc + + Copyright (C) 2015 + +Author: Peter Boyle +Author: paboyle + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + + See the full license in the file "LICENSE" in the top level distribution directory + *************************************************************************************/ + /* END LEGAL */ +#include + +using namespace std; +using namespace Grid; +using namespace Grid::QCD; + + +int main (int argc, char ** argv) +{ + Grid_init(&argc,&argv); + + int threads = GridThread::GetThreads(); + std::cout< latt4 = GridDefaultLatt(); + const int Ls=8; + GridCartesian * UGrid = SpaceTimeGrid::makeFourDimGrid(GridDefaultLatt(), GridDefaultSimd(Nd,vComplex::Nsimd()),GridDefaultMpi()); + GridRedBlackCartesian * UrbGrid = SpaceTimeGrid::makeFourDimRedBlackGrid(UGrid); + GridCartesian * FGrid = SpaceTimeGrid::makeFiveDimGrid(Ls,UGrid); + GridRedBlackCartesian * FrbGrid = SpaceTimeGrid::makeFiveDimRedBlackGrid(Ls,UGrid); + + std::cout << GridLogMessage << "Making Vec5d innermost grids"< seeds4({1,2,3,4}); + std::vector seeds5({5,6,7,8}); + + GridParallelRNG RNG4(UGrid); RNG4.SeedFixedIntegers(seeds4); + std::cout << GridLogMessage << "Seeded"<_Nprocessors; + + + if (1) + { + const int ncall=100; + + std::cout << GridLogMessage<< "*********************************************************" <Barrier(); + + double t0,t1; + t0=usecond(); + for(int i=0;iBarrier(); + + std::cout<Barrier(); + t0=usecond(); + for (int i = 0; i < ncall; i++) { + Dw.DhopEO(src_o, r_e, DaggerNo); + } + t1=usecond(); + FGrid->Barrier(); + std::cout<Barrier(); + t0=usecond(); + for (int i = 0; i < ncall; i++) { + Dw.Mooee(src_o, r_o); + } + t1=usecond(); + FGrid->Barrier(); + std::cout<Barrier(); + t0=usecond(); + for (int i = 0; i < ncall; i++) { + Dw.MooeeInv(src_o, r_o); + } + t1=usecond(); + FGrid->Barrier(); + std::cout<Barrier(); + t0=usecond(); + for (int i = 0; i < ncall; i++) { + Dw.Meooe(src_o, r_e); + } + t1=usecond(); + FGrid->Barrier(); + std::cout<Barrier(); + + double t0,t1; + t0=usecond(); + for(int i=0;iBarrier(); + + std::cout<Barrier(); + t0=usecond(); + for (int i = 0; i < ncall; i++) { + Dw.DhopEO(src_o, r_e, DaggerNo); + } + t1=usecond(); + FGrid->Barrier(); + std::cout<Barrier(); + t0=usecond(); + for (int i = 0; i < ncall; i++) { + Dw.Mooee(src_o, r_o); + } + t1=usecond(); + FGrid->Barrier(); + std::cout<Barrier(); + t0=usecond(); + for (int i = 0; i < ncall; i++) { + Dw.MooeeInv(src_o, r_o); + } + t1=usecond(); + FGrid->Barrier(); + std::cout<Barrier(); + t0=usecond(); + for (int i = 0; i < ncall; i++) { + Dw.Meooe(src_o, r_e); + } + t1=usecond(); + FGrid->Barrier(); + std::cout<