2016-11-29 00:15:08 +00:00
|
|
|
/*************************************************************************************
|
|
|
|
|
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
|
|
|
Source file: ./benchmarks/Benchmark_dwf.cc
|
|
|
|
|
|
|
|
Copyright (C) 2015
|
|
|
|
|
|
|
|
Author: Peter Boyle <paboyle@ph.ed.ac.uk>
|
|
|
|
Author: paboyle <paboyle@ph.ed.ac.uk>
|
|
|
|
|
|
|
|
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 <Grid/Grid.h>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace Grid;
|
2020-10-07 18:07:00 +01:00
|
|
|
|
2016-11-29 00:15:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
int main (int argc, char ** argv)
|
|
|
|
{
|
|
|
|
Grid_init(&argc,&argv);
|
|
|
|
|
|
|
|
int threads = GridThread::GetThreads();
|
|
|
|
std::cout<<GridLogMessage << "Grid is setup to use "<<threads<<" threads"<<std::endl;
|
|
|
|
|
2018-02-24 22:20:14 +00:00
|
|
|
Coordinate latt4 = GridDefaultLatt();
|
2016-11-30 22:11:10 +00:00
|
|
|
const int Ls=16;
|
2016-11-29 00:15:08 +00:00
|
|
|
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::vector<int> seeds4({1,2,3,4});
|
|
|
|
std::vector<int> seeds5({5,6,7,8});
|
|
|
|
|
|
|
|
GridParallelRNG RNG4(UGrid); RNG4.SeedFixedIntegers(seeds4);
|
|
|
|
std::cout << GridLogMessage << "Seeded"<<std::endl;
|
|
|
|
|
2020-10-07 18:07:00 +01:00
|
|
|
LatticeGaugeField Umu(UGrid); SU<Nc>::HotConfiguration(RNG4,Umu);
|
2016-11-29 00:15:08 +00:00
|
|
|
|
|
|
|
std::cout << GridLogMessage << "made random gauge fields"<<std::endl;
|
|
|
|
|
|
|
|
RealD mass=0.1;
|
|
|
|
RealD M5 =1.8;
|
2018-01-25 23:46:47 +00:00
|
|
|
// RealD NP = UGrid->_Nprocessors;
|
2016-11-29 00:15:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
if (1)
|
|
|
|
{
|
2016-11-29 22:27:55 +00:00
|
|
|
const int ncall=1000;
|
2016-11-29 00:15:08 +00:00
|
|
|
|
|
|
|
std::cout << GridLogMessage<< "*********************************************************" <<std::endl;
|
|
|
|
std::cout << GridLogMessage<< "* Benchmarking DomainWallFermionR::Dhop "<<std::endl;
|
|
|
|
std::cout << GridLogMessage<< "*********************************************************" <<std::endl;
|
|
|
|
|
2019-03-12 18:07:58 +00:00
|
|
|
GridParallelRNG RNG5(FGrid); RNG5.SeedFixedIntegers(seeds5);
|
2016-11-29 00:15:08 +00:00
|
|
|
LatticeFermion src(FGrid); random(RNG5,src);
|
|
|
|
LatticeFermion result(FGrid);
|
|
|
|
|
|
|
|
DomainWallFermionR Dw(Umu,*FGrid,*FrbGrid,*UGrid,*UrbGrid,mass,M5);
|
|
|
|
double t0,t1;
|
2019-05-02 11:10:57 +01:00
|
|
|
|
|
|
|
typedef typename DomainWallFermionR::Coeff_t Coeff_t;
|
|
|
|
Vector<Coeff_t> diag = Dw.bs;
|
|
|
|
Vector<Coeff_t> upper= Dw.cs;
|
|
|
|
Vector<Coeff_t> lower= Dw.cs;
|
2022-02-24 21:02:56 +00:00
|
|
|
upper[Ls-1]=-Dw.mass_minus*upper[Ls-1];
|
|
|
|
lower[0] =-Dw.mass_plus*lower[0];
|
2019-05-02 11:10:57 +01:00
|
|
|
|
2016-11-29 00:15:08 +00:00
|
|
|
LatticeFermion r_eo(FGrid);
|
|
|
|
LatticeFermion src_e (FrbGrid);
|
|
|
|
LatticeFermion src_o (FrbGrid);
|
|
|
|
LatticeFermion r_e (FrbGrid);
|
|
|
|
LatticeFermion r_o (FrbGrid);
|
|
|
|
|
|
|
|
pickCheckerboard(Even,src_e,src);
|
|
|
|
pickCheckerboard(Odd,src_o,src);
|
|
|
|
|
|
|
|
setCheckerboard(r_eo,src_o);
|
|
|
|
setCheckerboard(r_eo,src_e);
|
|
|
|
|
2018-01-27 23:51:10 +00:00
|
|
|
r_e = Zero();
|
|
|
|
r_o = Zero();
|
2016-11-29 00:15:08 +00:00
|
|
|
|
|
|
|
|
2019-05-02 11:10:57 +01:00
|
|
|
#define BENCH_DW(A,...) \
|
|
|
|
Dw. A (__VA_ARGS__); \
|
2016-11-29 22:27:55 +00:00
|
|
|
FGrid->Barrier(); \
|
|
|
|
t0=usecond(); \
|
|
|
|
for(int i=0;i<ncall;i++){ \
|
2019-05-02 11:10:57 +01:00
|
|
|
Dw. A (__VA_ARGS__); \
|
2016-11-29 22:27:55 +00:00
|
|
|
} \
|
|
|
|
t1=usecond(); \
|
|
|
|
FGrid->Barrier(); \
|
|
|
|
std::cout<<GridLogMessage << "Called " #A " "<< (t1-t0)/ncall<<" us"<<std::endl;\
|
|
|
|
std::cout<<GridLogMessage << "******************"<<std::endl;
|
|
|
|
|
2016-12-18 00:55:37 +00:00
|
|
|
#define BENCH_ZDW(A,in,out) \
|
|
|
|
zDw. A (in,out); \
|
|
|
|
FGrid->Barrier(); \
|
|
|
|
t0=usecond(); \
|
|
|
|
for(int i=0;i<ncall;i++){ \
|
|
|
|
zDw. A (in,out); \
|
|
|
|
} \
|
|
|
|
t1=usecond(); \
|
|
|
|
FGrid->Barrier(); \
|
|
|
|
std::cout<<GridLogMessage << "Called ZDw " #A " "<< (t1-t0)/ncall<<" us"<<std::endl;\
|
|
|
|
std::cout<<GridLogMessage << "******************"<<std::endl;
|
|
|
|
|
2016-12-08 17:00:32 +00:00
|
|
|
#define BENCH_DW_SSC(A,in,out) \
|
|
|
|
Dw. A (in,out); \
|
|
|
|
FGrid->Barrier(); \
|
|
|
|
t0=usecond(); \
|
|
|
|
for(int i=0;i<ncall;i++){ \
|
|
|
|
__SSC_START ; \
|
|
|
|
Dw. A (in,out); \
|
|
|
|
__SSC_STOP ; \
|
|
|
|
} \
|
|
|
|
t1=usecond(); \
|
|
|
|
FGrid->Barrier(); \
|
|
|
|
std::cout<<GridLogMessage << "Called " #A " "<< (t1-t0)/ncall<<" us"<<std::endl;\
|
|
|
|
std::cout<<GridLogMessage << "******************"<<std::endl;
|
|
|
|
|
2019-05-02 11:10:57 +01:00
|
|
|
BENCH_DW(Dhop ,src,result,0);
|
|
|
|
BENCH_DW(DhopEO ,src_o,r_e,0);
|
2016-11-29 22:27:55 +00:00
|
|
|
BENCH_DW(Meooe ,src_o,r_e);
|
2019-05-02 11:10:57 +01:00
|
|
|
BENCH_DW(M5D ,src_o,src_o,r_e,lower,diag,upper);
|
2016-11-29 22:27:55 +00:00
|
|
|
BENCH_DW(Mooee ,src_o,r_o);
|
|
|
|
BENCH_DW(MooeeInv,src_o,r_o);
|
2016-11-29 00:15:08 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
Grid_finalize();
|
|
|
|
}
|