/************************************************************************************* Grid physics library, www.github.com/paboyle/Grid Source file: ./tests/Test_zmm.cc Copyright (C) 2015 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 #include using namespace Grid; using namespace Grid::QCD; int bench(std::ofstream &os, std::vector &latt4,int Ls); int main(int argc,char **argv) { Grid_init(&argc,&argv); std::ofstream os("zmm.dat"); os << "#V Ls Lxy Lzt C++ Asm OMP L1 " < grid({L,L,m*L,m*L}); for(int i=0;i<4;i++) { std::cout << grid[i]<<"x"; } std::cout << Ls< &latt4,int Ls) { GridCartesian * UGrid = SpaceTimeGrid::makeFourDimGrid(latt4, GridDefaultSimd(Nd,vComplex::Nsimd()),GridDefaultMpi()); GridRedBlackCartesian * UrbGrid = SpaceTimeGrid::makeFourDimRedBlackGrid(UGrid); GridCartesian * FGrid = SpaceTimeGrid::makeFiveDimGrid(Ls,UGrid); GridRedBlackCartesian * FrbGrid = SpaceTimeGrid::makeFiveDimRedBlackGrid(Ls,UGrid); std::vector simd_layout = GridDefaultSimd(Nd,vComplex::Nsimd()); std::vector mpi_layout = GridDefaultMpi(); int threads = GridThread::GetThreads(); std::vector seeds4({1,2,3,4}); std::vector seeds5({5,6,7,8}); GridSerialRNG sRNG; sRNG.SeedFixedIntegers(seeds4); LatticeFermion src (FGrid); LatticeFermion tmp (FGrid); LatticeFermion srce(FrbGrid); LatticeFermion resulto(FrbGrid); resulto=zero; LatticeFermion resulta(FrbGrid); resulta=zero; LatticeFermion junk(FrbGrid); junk=zero; LatticeFermion diff(FrbGrid); LatticeGaugeField Umu(UGrid); double mfc, mfa, mfo, mfl1; GridParallelRNG RNG4(UGrid); RNG4.SeedFixedIntegers(seeds4); GridParallelRNG RNG5(FGrid); RNG5.SeedFixedIntegers(seeds5); random(RNG5,src); #if 1 random(RNG4,Umu); #else int mmu=2; std::vector U(4,UGrid); for(int mu=0;mu(Umu,mu); if ( mu!=mmu ) U[mu] = zero; if ( mu==mmu ) U[mu] = 1.0; PokeIndex(Umu,U[mu],mu); } #endif pickCheckerboard(Even,srce,src); RealD mass=0.1; RealD M5 =1.8; DomainWallFermionR Dw(Umu,*FGrid,*FrbGrid,*UGrid,*UrbGrid,mass,M5); std::cout<