2016-01-02 14:51:32 +00:00
|
|
|
/*************************************************************************************
|
|
|
|
|
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
|
|
|
Source file: ./tests/Test_cshift.cc
|
|
|
|
|
|
|
|
Copyright (C) 2015
|
|
|
|
|
|
|
|
Author: Azusa Yamaguchi <ayamaguc@staffmail.ed.ac.uk>
|
|
|
|
Author: Peter Boyle <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 */
|
2016-07-07 22:31:07 +01:00
|
|
|
#include <Grid/Grid.h>
|
2015-04-22 22:46:48 +01:00
|
|
|
|
|
|
|
using namespace Grid;
|
2018-01-15 09:37:58 +00:00
|
|
|
;
|
2015-04-22 22:46:48 +01:00
|
|
|
|
|
|
|
int main (int argc, char ** argv)
|
|
|
|
{
|
|
|
|
Grid_init(&argc,&argv);
|
|
|
|
|
2018-02-24 22:19:28 +00:00
|
|
|
auto latt_size = GridDefaultLatt();
|
|
|
|
auto simd_layout = GridDefaultSimd(4,vComplex::Nsimd());
|
|
|
|
auto mpi_layout = GridDefaultMpi();
|
2015-05-11 14:36:48 +01:00
|
|
|
|
|
|
|
GridCartesian Fine(latt_size,simd_layout,mpi_layout);
|
|
|
|
|
2017-04-01 16:29:40 +01:00
|
|
|
GridParallelRNG FineRNG(&Fine); FineRNG.SeedFixedIntegers(std::vector<int>({45,12,81,9}));
|
2015-04-22 22:46:48 +01:00
|
|
|
|
|
|
|
LatticeComplex U(&Fine);
|
|
|
|
LatticeComplex ShiftU(&Fine);
|
|
|
|
|
|
|
|
LatticeComplex lex(&Fine);
|
2018-01-27 23:46:02 +00:00
|
|
|
lex=Zero();
|
2015-04-22 22:46:48 +01:00
|
|
|
Integer stride =1;
|
|
|
|
{
|
|
|
|
LatticeComplex coor(&Fine);
|
|
|
|
|
|
|
|
for(int d=0;d<4;d++){
|
|
|
|
LatticeCoordinate(coor,d);
|
|
|
|
lex = lex + coor*stride;
|
|
|
|
stride=stride*latt_size[d];
|
|
|
|
}
|
|
|
|
U=lex;
|
|
|
|
}
|
|
|
|
|
2017-03-29 09:39:52 +01:00
|
|
|
std::stringstream ss;
|
|
|
|
ss<<"error";
|
|
|
|
for(int d=0;d<Fine._ndimension;d++){
|
|
|
|
ss<<"."<<Fine._processor_coor[d];
|
|
|
|
}
|
|
|
|
ss<<"_wr_"<<Fine._processor;
|
|
|
|
std::string fname(ss.str());
|
|
|
|
std::ofstream ferr(fname);
|
|
|
|
|
2015-04-22 22:46:48 +01:00
|
|
|
TComplex cm;
|
|
|
|
|
|
|
|
for(int dir=0;dir<4;dir++){
|
|
|
|
for(int shift=0;shift<latt_size[dir];shift++){
|
|
|
|
if ( Fine.IsBoss() )
|
2015-07-23 17:31:13 +01:00
|
|
|
std::cout<<GridLogMessage<<"Shifting by "<<shift<<" in direction"<<dir<<std::endl;
|
2015-04-22 22:46:48 +01:00
|
|
|
|
|
|
|
ShiftU = Cshift(U,dir,shift); // Shift everything
|
|
|
|
|
2018-02-24 22:19:28 +00:00
|
|
|
Coordinate coor(4);
|
2015-04-22 22:46:48 +01:00
|
|
|
|
|
|
|
for(coor[3]=0;coor[3]<latt_size[3];coor[3]++){
|
|
|
|
for(coor[2]=0;coor[2]<latt_size[2];coor[2]++){
|
|
|
|
for(coor[1]=0;coor[1]<latt_size[1];coor[1]++){
|
|
|
|
for(coor[0]=0;coor[0]<latt_size[0];coor[0]++){
|
|
|
|
|
|
|
|
peekSite(cm,ShiftU,coor);
|
|
|
|
|
|
|
|
double nrm=norm2(U);
|
|
|
|
|
2018-02-24 22:19:28 +00:00
|
|
|
Coordinate scoor(coor);
|
2015-04-22 22:46:48 +01:00
|
|
|
scoor[dir] = (scoor[dir]+shift)%latt_size[dir];
|
|
|
|
|
|
|
|
Integer slex = scoor[0]
|
|
|
|
+ latt_size[0]*scoor[1]
|
|
|
|
+ latt_size[0]*latt_size[1]*scoor[2]
|
|
|
|
+ latt_size[0]*latt_size[1]*latt_size[2]*scoor[3];
|
|
|
|
|
|
|
|
Complex scm(slex);
|
|
|
|
|
|
|
|
nrm = abs(scm-cm()()());
|
2018-02-24 22:19:28 +00:00
|
|
|
Coordinate peer(4);
|
2015-06-14 00:50:26 +01:00
|
|
|
Complex tmp =cm;
|
|
|
|
Integer index=real(tmp);
|
2016-02-11 13:37:39 +00:00
|
|
|
Lexicographic::CoorFromIndex(peer,index,latt_size);
|
2015-04-22 22:46:48 +01:00
|
|
|
|
|
|
|
if (nrm > 0){
|
2017-03-29 09:39:52 +01:00
|
|
|
|
|
|
|
|
|
|
|
ferr<<"FAIL shift "<< shift<<" in dir "<< dir<<" ["<<coor[0]<<","<<coor[1]<<","<<coor[2]<<","<<coor[3]<<"] = "<< cm()()()<<" expect "<<scm<<" "<<nrm<<std::endl;
|
|
|
|
ferr<<"Got "<<index<<" " << peer[0]<<","<<peer[1]<<","<<peer[2]<<","<<peer[3]<<std::endl;
|
2015-04-22 22:46:48 +01:00
|
|
|
index=real(scm);
|
2016-02-11 13:37:39 +00:00
|
|
|
Lexicographic::CoorFromIndex(peer,index,latt_size);
|
2017-03-29 09:39:52 +01:00
|
|
|
ferr<<"Expect "<<index<<" " << peer[0]<<","<<peer[1]<<","<<peer[2]<<","<<peer[3]<<std::endl;
|
2015-04-22 22:46:48 +01:00
|
|
|
}
|
|
|
|
}}}}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Grid_finalize();
|
|
|
|
}
|