/************************************************************************************* Grid physics library, www.github.com/paboyle/Grid Source file: ./tests/Test_gfield_shift.cc Copyright (C) 2015 Author: Christopher Kelly Author: Azusa Yamaguchi Author: Peter Boyle 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 */ //Test the shifting of the gauge field that respects the boundary conditions #include using namespace Grid; ; typedef ConjugateGimplR Gimpl; //can choose periodic / charge conjugate directions at wil typedef Gimpl::GaugeField GaugeField; typedef Gimpl::GaugeLinkField GaugeLinkField; typedef Gimpl::SiteGaugeField SiteGaugeField; typedef Gimpl::SiteGaugeLink SiteGaugeLink; GaugeField CshiftGaugeField(const GaugeField &U, const int dir, const int shift){ GridBase *Grid = U.Grid(); GaugeField out(Grid); GaugeLinkField Umu(Grid); for(int mu=0;muNd();mu++){ Umu = PeekIndex(U, mu); Umu = Gimpl::CshiftLink(Umu,dir,shift); PokeIndex(out,Umu,mu); } return out; } int main (int argc, char ** argv) { Grid_init(&argc,&argv); auto latt_size = GridDefaultLatt(); auto simd_layout = GridDefaultSimd(4,vComplex::Nsimd()); auto mpi_layout = GridDefaultMpi(); std::vector conj_dirs = {1,1,0,0}; Gimpl::setDirections(conj_dirs); GridCartesian Fine(latt_size,simd_layout,mpi_layout); GridParallelRNG FineRNG(&Fine); FineRNG.SeedFixedIntegers(std::vector({45,12,81,9})); GaugeField U(&Fine); GaugeField ShiftU(&Fine); GaugeLinkField link_field(&Fine), link_field_2(&Fine); //Like Test_cshift we put the lex coordinate index on each site but make it imaginary //so we can tell when it was complex conjugated LatticeComplex lex(&Fine); lex=Zero(); U = Zero(); { LatticeComplex coor(&Fine); Integer stride =1; for(int d=0;d<4;d++){ LatticeCoordinate(coor,d); lex = lex + coor*stride; stride=stride*latt_size[d]; } PokeIndex(link_field, lex, 0,0); //place on 0,0 element of link for(int mu=0;mu(U, link_field_2, mu); } } std::stringstream ss; ss<<"error"; for(int d=0;d 0 && coor[dir] >= latt_size[dir]-shift && conj_dirs[dir] ) || ( shift < 0 && coor[dir] <= -shift-1 && conj_dirs[dir] ) ) scm = conjugate(scm); //CC if pulled over boundary cm = um(mu)()(0,0); RealD nrm = abs(scm-cm()()()); //std::cout << cm << " " << scm << std::endl; Coordinate peer(4); Complex tmp =cm; Integer index=real(tmp); Integer cm_mu = index / vol4d; index = index % vol4d; Lexicographic::CoorFromIndex(peer,index,latt_size); if (nrm > 0){ ferr<<"FAIL mu " << mu << " shift "<< shift<<" in dir "<< dir<<" ["<