1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 01:05:38 +01:00
Grid/benchmarks/Benchmark_memory_bandwidth.cc

156 lines
6.0 KiB
C++
Raw Normal View History

2015-05-03 09:44:47 +01:00
#include <Grid.h>
using namespace std;
using namespace Grid;
using namespace Grid::QCD;
int main (int argc, char ** argv)
{
Grid_init(&argc,&argv);
const int Nvec=8;
typedef Lattice< iVector< vReal,Nvec> > LatticeVec;
2015-05-05 18:08:53 +01:00
int Nloop=1000;
2015-05-03 09:44:47 +01:00
2015-05-12 20:41:44 +01:00
std::vector<int> simd_layout = GridDefaultSimd(Nd,vReal::Nsimd());
std::vector<int> mpi_layout = GridDefaultMpi();
int threads = GridThread::GetThreads();
std::cout << "Grid is setup to use "<<threads<<" threads"<<std::endl;
2015-05-03 09:44:47 +01:00
std::cout << "===================================================================================================="<<std::endl;
std::cout << "= Benchmarking fused AXPY bandwidth ; sizeof(Real) "<<sizeof(Real)<<std::endl;
2015-05-03 09:44:47 +01:00
std::cout << "===================================================================================================="<<std::endl;
2015-05-16 23:35:08 +01:00
std::cout << " L "<<"\t\t"<<"bytes"<<"\t\t\t"<<"GB/s"<<"\t\t"<<"Gflop/s"<<std::endl;
2015-05-05 18:08:53 +01:00
std::cout << "----------------------------------------------------------"<<std::endl;
2015-05-03 09:44:47 +01:00
2015-05-05 22:09:22 +01:00
for(int lat=4;lat<=32;lat+=4){
2015-05-03 09:44:47 +01:00
std::vector<int> latt_size ({lat*mpi_layout[0],lat*mpi_layout[1],lat*mpi_layout[2],lat*mpi_layout[3]});
int vol = latt_size[0]*latt_size[1]*latt_size[2]*latt_size[3];
2015-05-03 09:44:47 +01:00
GridCartesian Grid(latt_size,simd_layout,mpi_layout);
2015-05-05 18:08:53 +01:00
//GridParallelRNG pRNG(&Grid); pRNG.SeedRandomDevice();
2015-05-03 09:44:47 +01:00
2015-05-05 18:08:53 +01:00
LatticeVec z(&Grid); //random(pRNG,z);
LatticeVec x(&Grid); //random(pRNG,x);
LatticeVec y(&Grid); //random(pRNG,y);
double a=2.0;
2015-05-03 09:44:47 +01:00
double start=usecond();
for(int i=0;i<Nloop;i++){
// inline void axpy(Lattice<vobj> &ret,double a,const Lattice<vobj> &lhs,const Lattice<vobj> &rhs){
axpy(z,a,x,y);
}
double stop=usecond();
2015-05-05 22:09:22 +01:00
double time = (stop-start)/Nloop*1000;
2015-05-03 09:44:47 +01:00
double flops=vol*Nvec*2;// mul,add
double bytes=3*vol*Nvec*sizeof(Real);
2015-05-16 23:35:08 +01:00
std::cout<<std::setprecision(3) << lat<<"\t\t"<<bytes<<" \t\t"<<bytes/time<<"\t\t"<<flops/time<<std::endl;
2015-05-03 09:44:47 +01:00
}
std::cout << "===================================================================================================="<<std::endl;
std::cout << "= Benchmarking a*x + y bandwidth"<<std::endl;
std::cout << "===================================================================================================="<<std::endl;
2015-05-16 23:35:08 +01:00
std::cout << " L "<<"\t\t"<<"bytes"<<"\t\t\t"<<"GB/s"<<"\t\t"<<"Gflop/s"<<std::endl;
2015-05-05 18:08:53 +01:00
std::cout << "----------------------------------------------------------"<<std::endl;
2015-05-03 09:44:47 +01:00
2015-05-05 22:09:22 +01:00
for(int lat=4;lat<=32;lat+=4){
2015-05-03 09:44:47 +01:00
std::vector<int> latt_size ({lat*mpi_layout[0],lat*mpi_layout[1],lat*mpi_layout[2],lat*mpi_layout[3]});
int vol = latt_size[0]*latt_size[1]*latt_size[2]*latt_size[3];
2015-05-03 09:44:47 +01:00
GridCartesian Grid(latt_size,simd_layout,mpi_layout);
2015-05-05 18:08:53 +01:00
//GridParallelRNG pRNG(&Grid); pRNG.SeedRandomDevice();
2015-05-03 09:44:47 +01:00
2015-05-05 18:08:53 +01:00
LatticeVec z(&Grid); //random(pRNG,z);
LatticeVec x(&Grid); //random(pRNG,x);
LatticeVec y(&Grid); //random(pRNG,y);
double a=2.0;
2015-05-03 09:44:47 +01:00
double start=usecond();
for(int i=0;i<Nloop;i++){
z=a*x-y;
2015-05-03 09:44:47 +01:00
}
double stop=usecond();
2015-05-05 22:09:22 +01:00
double time = (stop-start)/Nloop*1000;
double flops=vol*Nvec*2;// mul,add
double bytes=3*vol*Nvec*sizeof(Real);
2015-05-16 23:35:08 +01:00
std::cout<<std::setprecision(3) << lat<<"\t\t"<<bytes<<" \t\t"<<bytes/time<<"\t\t"<<flops/time<<std::endl;
2015-05-03 09:44:47 +01:00
}
std::cout << "===================================================================================================="<<std::endl;
2015-05-05 18:08:53 +01:00
std::cout << "= Benchmarking SCALE bandwidth"<<std::endl;
2015-05-03 09:44:47 +01:00
std::cout << "===================================================================================================="<<std::endl;
2015-05-16 23:35:08 +01:00
std::cout << " L "<<"\t\t"<<"bytes"<<"\t\t\t"<<"GB/s"<<"\t\t"<<"Gflop/s"<<std::endl;
2015-05-03 09:44:47 +01:00
2015-05-05 22:09:22 +01:00
for(int lat=4;lat<=32;lat+=4){
2015-05-03 09:44:47 +01:00
std::vector<int> latt_size ({lat*mpi_layout[0],lat*mpi_layout[1],lat*mpi_layout[2],lat*mpi_layout[3]});
int vol = latt_size[0]*latt_size[1]*latt_size[2]*latt_size[3];
2015-05-03 09:44:47 +01:00
GridCartesian Grid(latt_size,simd_layout,mpi_layout);
2015-05-05 18:08:53 +01:00
//GridParallelRNG pRNG(&Grid); pRNG.SeedRandomDevice();
2015-05-03 09:44:47 +01:00
2015-05-05 18:08:53 +01:00
LatticeVec z(&Grid); //random(pRNG,z);
LatticeVec x(&Grid); //random(pRNG,x);
LatticeVec y(&Grid); //random(pRNG,y);
RealD a=2.0;
2015-05-03 09:44:47 +01:00
double start=usecond();
for(int i=0;i<Nloop;i++){
z=a*x;
2015-05-03 09:44:47 +01:00
}
double stop=usecond();
2015-05-05 22:09:22 +01:00
double time = (stop-start)/Nloop*1000;
2015-05-03 09:44:47 +01:00
double bytes=2*vol*Nvec*sizeof(Real);
double flops=vol*Nvec*1;// mul
2015-05-16 23:35:08 +01:00
std::cout <<std::setprecision(3) << lat<<"\t\t"<<bytes<<" \t\t"<<bytes/time<<"\t\t"<<flops/time<<std::endl;
2015-05-03 09:44:47 +01:00
}
std::cout << "===================================================================================================="<<std::endl;
std::cout << "= Benchmarking READ bandwidth"<<std::endl;
std::cout << "===================================================================================================="<<std::endl;
2015-05-16 23:35:08 +01:00
std::cout << " L "<<"\t\t"<<"bytes"<<"\t\t\t"<<"GB/s"<<"\t\t"<<"Gflop/s"<<std::endl;
2015-05-05 18:08:53 +01:00
std::cout << "----------------------------------------------------------"<<std::endl;
2015-05-03 09:44:47 +01:00
2015-05-05 22:09:22 +01:00
for(int lat=4;lat<=32;lat+=4){
2015-05-03 09:44:47 +01:00
std::vector<int> latt_size ({lat*mpi_layout[0],lat*mpi_layout[1],lat*mpi_layout[2],lat*mpi_layout[3]});
int vol = latt_size[0]*latt_size[1]*latt_size[2]*latt_size[3];
2015-05-03 09:44:47 +01:00
GridCartesian Grid(latt_size,simd_layout,mpi_layout);
2015-05-05 18:08:53 +01:00
//GridParallelRNG pRNG(&Grid); pRNG.SeedRandomDevice();
2015-05-03 09:44:47 +01:00
2015-05-05 18:08:53 +01:00
LatticeVec z(&Grid); //random(pRNG,z);
LatticeVec x(&Grid); //random(pRNG,x);
LatticeVec y(&Grid); //random(pRNG,y);
RealD a=2.0;
2015-05-03 09:44:47 +01:00
ComplexD nn;
double start=usecond();
for(int i=0;i<Nloop;i++){
nn=norm2(x);
}
double stop=usecond();
2015-05-05 22:09:22 +01:00
double time = (stop-start)/Nloop*1000;
2015-05-03 09:44:47 +01:00
double bytes=vol*Nvec*sizeof(Real);
double flops=vol*Nvec*2;// mul,add
2015-05-16 23:35:08 +01:00
std::cout<<std::setprecision(3) << lat<<"\t\t"<<bytes<<" \t\t"<<bytes/time<<"\t\t"<<flops/time<<std::endl;
2015-05-03 09:44:47 +01:00
}
Grid_finalize();
}