mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-04 19:25:56 +01:00
NVCC warning elimination
This commit is contained in:
parent
be1511d469
commit
918c105c57
@ -28,15 +28,12 @@ Author: paboyle <paboyle@ph.ed.ac.uk>
|
|||||||
/* END LEGAL */
|
/* END LEGAL */
|
||||||
#include <Grid/Grid.h>
|
#include <Grid/Grid.h>
|
||||||
|
|
||||||
using namespace std;
|
|
||||||
using namespace Grid;
|
using namespace Grid;
|
||||||
;
|
|
||||||
|
|
||||||
typedef WilsonFermion5D<DomainWallVec5dImplR> WilsonFermion5DR;
|
typedef WilsonFermion5D<DomainWallVec5dImplR> WilsonFermion5DR;
|
||||||
typedef WilsonFermion5D<DomainWallVec5dImplF> WilsonFermion5DF;
|
typedef WilsonFermion5D<DomainWallVec5dImplF> WilsonFermion5DF;
|
||||||
typedef WilsonFermion5D<DomainWallVec5dImplD> WilsonFermion5DD;
|
typedef WilsonFermion5D<DomainWallVec5dImplD> WilsonFermion5DD;
|
||||||
|
|
||||||
|
|
||||||
std::vector<int> L_list;
|
std::vector<int> L_list;
|
||||||
std::vector<int> Ls_list;
|
std::vector<int> Ls_list;
|
||||||
std::vector<double> mflop_list;
|
std::vector<double> mflop_list;
|
||||||
@ -202,7 +199,7 @@ public:
|
|||||||
|
|
||||||
dbytes=dbytes*ppn;
|
dbytes=dbytes*ppn;
|
||||||
double xbytes = dbytes*0.5;
|
double xbytes = dbytes*0.5;
|
||||||
double rbytes = dbytes*0.5;
|
// double rbytes = dbytes*0.5;
|
||||||
double bidibytes = dbytes;
|
double bidibytes = dbytes;
|
||||||
|
|
||||||
std::cout<<GridLogMessage << std::setw(4) << lat<<"\t"<<Ls<<"\t"
|
std::cout<<GridLogMessage << std::setw(4) << lat<<"\t"<<Ls<<"\t"
|
||||||
@ -235,7 +232,7 @@ public:
|
|||||||
std::cout<<GridLogMessage << " L "<<"\t\t"<<"bytes"<<"\t\t\t"<<"GB/s"<<"\t\t"<<"Gflop/s"<<"\t\t seconds"<< "\t\tGB/s / node"<<std::endl;
|
std::cout<<GridLogMessage << " L "<<"\t\t"<<"bytes"<<"\t\t\t"<<"GB/s"<<"\t\t"<<"Gflop/s"<<"\t\t seconds"<< "\t\tGB/s / node"<<std::endl;
|
||||||
std::cout<<GridLogMessage << "----------------------------------------------------------"<<std::endl;
|
std::cout<<GridLogMessage << "----------------------------------------------------------"<<std::endl;
|
||||||
|
|
||||||
uint64_t NP;
|
// uint64_t NP;
|
||||||
uint64_t NN;
|
uint64_t NN;
|
||||||
|
|
||||||
|
|
||||||
@ -249,7 +246,7 @@ public:
|
|||||||
int64_t vol= latt_size[0]*latt_size[1]*latt_size[2]*latt_size[3];
|
int64_t vol= latt_size[0]*latt_size[1]*latt_size[2]*latt_size[3];
|
||||||
GridCartesian Grid(latt_size,simd_layout,mpi_layout);
|
GridCartesian Grid(latt_size,simd_layout,mpi_layout);
|
||||||
|
|
||||||
NP= Grid.RankCount();
|
// NP= Grid.RankCount();
|
||||||
NN =Grid.NodeCount();
|
NN =Grid.NodeCount();
|
||||||
|
|
||||||
Vec rn ; random(sRNG,rn);
|
Vec rn ; random(sRNG,rn);
|
||||||
@ -281,7 +278,7 @@ public:
|
|||||||
|
|
||||||
static double DWF5(int Ls,int L)
|
static double DWF5(int Ls,int L)
|
||||||
{
|
{
|
||||||
RealD mass=0.1;
|
// RealD mass=0.1;
|
||||||
RealD M5 =1.8;
|
RealD M5 =1.8;
|
||||||
|
|
||||||
double mflops;
|
double mflops;
|
||||||
@ -340,8 +337,11 @@ public:
|
|||||||
std::cout << GridLogMessage << "Initialised RNGs" << std::endl;
|
std::cout << GridLogMessage << "Initialised RNGs" << std::endl;
|
||||||
|
|
||||||
///////// Source preparation ////////////
|
///////// Source preparation ////////////
|
||||||
LatticeFermion src (sFGrid); random(RNG5,src);
|
LatticeFermion src (sFGrid);
|
||||||
LatticeFermion tmp (sFGrid);
|
LatticeFermion tmp (sFGrid);
|
||||||
|
std::cout << GridLogMessage << "allocated src and tmp" << std::endl;
|
||||||
|
random(RNG5,src);
|
||||||
|
std::cout << GridLogMessage << "intialised random source" << std::endl;
|
||||||
|
|
||||||
RealD N2 = 1.0/::sqrt(norm2(src));
|
RealD N2 = 1.0/::sqrt(norm2(src));
|
||||||
src = src*N2;
|
src = src*N2;
|
||||||
@ -524,9 +524,11 @@ public:
|
|||||||
LatticeFermion tmp (FGrid);
|
LatticeFermion tmp (FGrid);
|
||||||
|
|
||||||
RealD N2 = 1.0/::sqrt(norm2(src));
|
RealD N2 = 1.0/::sqrt(norm2(src));
|
||||||
|
std::cout<<GridLogMessage << "Normalising src "<< N2 <<std::endl;
|
||||||
src = src*N2;
|
src = src*N2;
|
||||||
|
|
||||||
LatticeGaugeField Umu(UGrid); SU3::HotConfiguration(RNG4,Umu);
|
LatticeGaugeField Umu(UGrid); SU3::HotConfiguration(RNG4,Umu);
|
||||||
|
|
||||||
|
|
||||||
DomainWallFermionR Dw(Umu,*FGrid,*FrbGrid,*UGrid,*UrbGrid,mass,M5);
|
DomainWallFermionR Dw(Umu,*FGrid,*FrbGrid,*UGrid,*UrbGrid,mass,M5);
|
||||||
|
|
||||||
@ -656,8 +658,10 @@ public:
|
|||||||
setCheckerboard(r_eo,r_o);
|
setCheckerboard(r_eo,r_o);
|
||||||
setCheckerboard(r_eo,r_e);
|
setCheckerboard(r_eo,r_e);
|
||||||
err = r_eo-ref;
|
err = r_eo-ref;
|
||||||
std::cout<<GridLogMessage << "norm diff "<< norm2(err)<<std::endl;
|
RealD absref = norm2(ref);
|
||||||
assert((norm2(err)<1.0e-4));
|
RealD abserr = norm2(err);
|
||||||
|
std::cout<<GridLogMessage << "norm diff "<< abserr << " / " << absref<<std::endl;
|
||||||
|
assert(abserr<1.0e-4);
|
||||||
|
|
||||||
}
|
}
|
||||||
robust = mflops_worst/mflops_best;
|
robust = mflops_worst/mflops_best;
|
||||||
@ -722,7 +726,7 @@ int main (int argc, char ** argv)
|
|||||||
std::cout<<GridLogMessage << "=================================================================================="<<std::endl;
|
std::cout<<GridLogMessage << "=================================================================================="<<std::endl;
|
||||||
for(int l=0;l<L_list.size();l++){
|
for(int l=0;l<L_list.size();l++){
|
||||||
double robust;
|
double robust;
|
||||||
wilson.push_back(Benchmark::DWF(1,L_list[l],robust));
|
wilson.push_back(Benchmark::DWF(Ls,L_list[l],robust));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user