2018-06-13 20:26:07 +01:00
|
|
|
/*************************************************************************************
|
2016-01-02 14:51:32 +00:00
|
|
|
|
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
|
|
|
Source file: ./benchmarks/Benchmark_su3.cc
|
|
|
|
|
|
|
|
Copyright (C) 2015
|
|
|
|
|
|
|
|
Author: Peter Boyle <paboyle@ph.ed.ac.uk>
|
|
|
|
Author: Peter Boyle <peterboyle@Peters-MacBook-Pro-2.local>
|
|
|
|
|
|
|
|
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-05-15 14:41:19 +01:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace Grid;
|
|
|
|
|
2018-06-13 20:26:07 +01:00
|
|
|
|
2015-05-15 14:41:19 +01:00
|
|
|
int main (int argc, char ** argv)
|
|
|
|
{
|
|
|
|
Grid_init(&argc,&argv);
|
|
|
|
|
2018-06-13 20:26:07 +01:00
|
|
|
#define LMAX (48)
|
|
|
|
#define LMIN (8)
|
|
|
|
#define LADD (8)
|
2018-03-20 11:18:31 +00:00
|
|
|
|
2018-06-13 20:26:07 +01:00
|
|
|
int64_t Nwarm=50;
|
|
|
|
int64_t Nloop=500;
|
2015-05-15 14:41:19 +01:00
|
|
|
|
2018-02-24 22:20:14 +00:00
|
|
|
Coordinate simd_layout = GridDefaultSimd(Nd,vComplex::Nsimd());
|
|
|
|
Coordinate mpi_layout = GridDefaultMpi();
|
2015-05-15 14:41:19 +01:00
|
|
|
|
2017-06-28 15:30:06 +01:00
|
|
|
int64_t threads = GridThread::GetThreads();
|
2015-07-23 17:31:13 +01:00
|
|
|
std::cout<<GridLogMessage << "Grid is setup to use "<<threads<<" threads"<<std::endl;
|
2015-05-19 14:54:42 +01:00
|
|
|
|
2015-07-23 17:31:13 +01:00
|
|
|
std::cout<<GridLogMessage << "===================================================================================================="<<std::endl;
|
|
|
|
std::cout<<GridLogMessage << "= Benchmarking SU3xSU3 x= x*y"<<std::endl;
|
|
|
|
std::cout<<GridLogMessage << "===================================================================================================="<<std::endl;
|
|
|
|
std::cout<<GridLogMessage << " L "<<"\t\t"<<"bytes"<<"\t\t\t"<<"GB/s\t\t GFlop/s"<<std::endl;
|
|
|
|
std::cout<<GridLogMessage << "----------------------------------------------------------"<<std::endl;
|
2015-05-15 14:41:19 +01:00
|
|
|
|
2018-03-20 11:18:31 +00:00
|
|
|
for(int lat=LMIN;lat<=LMAX;lat+=LADD){
|
2015-05-15 14:41:19 +01:00
|
|
|
|
2018-02-24 22:20:14 +00:00
|
|
|
Coordinate latt_size ({lat*mpi_layout[0],lat*mpi_layout[1],lat*mpi_layout[2],lat*mpi_layout[3]});
|
2017-06-28 15:30:06 +01:00
|
|
|
int64_t vol = latt_size[0]*latt_size[1]*latt_size[2]*latt_size[3];
|
2015-05-15 14:41:19 +01:00
|
|
|
GridCartesian Grid(latt_size,simd_layout,mpi_layout);
|
2017-06-28 15:30:06 +01:00
|
|
|
GridParallelRNG pRNG(&Grid); pRNG.SeedFixedIntegers(std::vector<int>({45,12,81,9}));
|
2015-05-15 14:41:19 +01:00
|
|
|
|
2017-06-28 15:30:06 +01:00
|
|
|
LatticeColourMatrix z(&Grid); random(pRNG,z);
|
|
|
|
LatticeColourMatrix x(&Grid); random(pRNG,x);
|
|
|
|
LatticeColourMatrix y(&Grid); random(pRNG,y);
|
2015-05-15 14:41:19 +01:00
|
|
|
|
2018-03-22 22:05:20 +00:00
|
|
|
for(int64_t i=0;i<Nwarm;i++){
|
2018-03-20 11:18:31 +00:00
|
|
|
x=x*y;
|
|
|
|
}
|
2015-05-15 14:41:19 +01:00
|
|
|
double start=usecond();
|
2017-06-28 15:30:06 +01:00
|
|
|
for(int64_t i=0;i<Nloop;i++){
|
2015-05-15 14:41:19 +01:00
|
|
|
x=x*y;
|
|
|
|
}
|
|
|
|
double stop=usecond();
|
|
|
|
double time = (stop-start)/Nloop*1000.0;
|
|
|
|
|
2015-05-28 13:47:01 +01:00
|
|
|
double bytes=3.0*vol*Nc*Nc*sizeof(Complex);
|
|
|
|
double footprint=2.0*vol*Nc*Nc*sizeof(Complex);
|
|
|
|
double flops=Nc*Nc*(6.0+8.0+8.0)*vol;
|
2015-07-23 17:31:13 +01:00
|
|
|
std::cout<<GridLogMessage<<std::setprecision(3) << lat<<"\t\t"<<footprint<<" \t\t"<<bytes/time<<"\t\t" << flops/time<<std::endl;
|
2015-05-15 14:41:19 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-07-23 17:31:13 +01:00
|
|
|
std::cout<<GridLogMessage << "===================================================================================================="<<std::endl;
|
|
|
|
std::cout<<GridLogMessage << "= Benchmarking SU3xSU3 z= x*y"<<std::endl;
|
|
|
|
std::cout<<GridLogMessage << "===================================================================================================="<<std::endl;
|
|
|
|
std::cout<<GridLogMessage << " L "<<"\t\t"<<"bytes"<<"\t\t\t"<<"GB/s\t\t GFlop/s"<<std::endl;
|
|
|
|
std::cout<<GridLogMessage << "----------------------------------------------------------"<<std::endl;
|
2015-05-15 14:41:19 +01:00
|
|
|
|
2018-03-20 11:18:31 +00:00
|
|
|
for(int lat=LMIN;lat<=LMAX;lat+=LADD){
|
2015-05-15 14:41:19 +01:00
|
|
|
|
2018-02-24 22:20:14 +00:00
|
|
|
Coordinate latt_size ({lat*mpi_layout[0],lat*mpi_layout[1],lat*mpi_layout[2],lat*mpi_layout[3]});
|
2017-06-28 15:30:06 +01:00
|
|
|
int64_t vol = latt_size[0]*latt_size[1]*latt_size[2]*latt_size[3];
|
2015-05-15 14:41:19 +01:00
|
|
|
|
|
|
|
GridCartesian Grid(latt_size,simd_layout,mpi_layout);
|
2017-06-28 15:30:06 +01:00
|
|
|
GridParallelRNG pRNG(&Grid); pRNG.SeedFixedIntegers(std::vector<int>({45,12,81,9}));
|
2015-05-15 14:41:19 +01:00
|
|
|
|
2017-06-28 15:30:06 +01:00
|
|
|
LatticeColourMatrix z(&Grid); random(pRNG,z);
|
|
|
|
LatticeColourMatrix x(&Grid); random(pRNG,x);
|
|
|
|
LatticeColourMatrix y(&Grid); random(pRNG,y);
|
2015-05-15 14:41:19 +01:00
|
|
|
|
2018-03-22 22:05:20 +00:00
|
|
|
for(int64_t i=0;i<Nwarm;i++){
|
2018-03-20 11:18:31 +00:00
|
|
|
z=x*y;
|
|
|
|
}
|
2015-05-15 14:41:19 +01:00
|
|
|
double start=usecond();
|
2017-06-28 15:30:06 +01:00
|
|
|
for(int64_t i=0;i<Nloop;i++){
|
2015-05-15 14:41:19 +01:00
|
|
|
z=x*y;
|
|
|
|
}
|
|
|
|
double stop=usecond();
|
|
|
|
double time = (stop-start)/Nloop*1000.0;
|
|
|
|
|
2015-05-28 13:47:01 +01:00
|
|
|
double bytes=3*vol*Nc*Nc*sizeof(Complex);
|
|
|
|
double flops=Nc*Nc*(6+8+8)*vol;
|
2015-07-23 17:31:13 +01:00
|
|
|
std::cout<<GridLogMessage<<std::setprecision(3) << lat<<"\t\t"<<bytes<<" \t\t"<<bytes/time<<"\t\t" << flops/time<<std::endl;
|
2015-05-15 14:41:19 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-07-23 17:31:13 +01:00
|
|
|
std::cout<<GridLogMessage << "===================================================================================================="<<std::endl;
|
|
|
|
std::cout<<GridLogMessage << "= Benchmarking SU3xSU3 mult(z,x,y)"<<std::endl;
|
|
|
|
std::cout<<GridLogMessage << "===================================================================================================="<<std::endl;
|
|
|
|
std::cout<<GridLogMessage << " L "<<"\t\t"<<"bytes"<<"\t\t\t"<<"GB/s\t\t GFlop/s"<<std::endl;
|
|
|
|
std::cout<<GridLogMessage << "----------------------------------------------------------"<<std::endl;
|
2015-05-15 14:41:19 +01:00
|
|
|
|
|
|
|
|
2018-03-20 11:18:31 +00:00
|
|
|
for(int lat=LMIN;lat<=LMAX;lat+=LADD){
|
2015-05-15 14:41:19 +01:00
|
|
|
|
2018-02-24 22:20:14 +00:00
|
|
|
Coordinate latt_size ({lat*mpi_layout[0],lat*mpi_layout[1],lat*mpi_layout[2],lat*mpi_layout[3]});
|
2017-06-28 15:30:06 +01:00
|
|
|
int64_t vol = latt_size[0]*latt_size[1]*latt_size[2]*latt_size[3];
|
2015-05-15 14:41:19 +01:00
|
|
|
|
|
|
|
GridCartesian Grid(latt_size,simd_layout,mpi_layout);
|
2017-06-28 15:30:06 +01:00
|
|
|
GridParallelRNG pRNG(&Grid); pRNG.SeedFixedIntegers(std::vector<int>({45,12,81,9}));
|
2015-05-15 14:41:19 +01:00
|
|
|
|
2017-06-28 15:30:06 +01:00
|
|
|
LatticeColourMatrix z(&Grid); random(pRNG,z);
|
|
|
|
LatticeColourMatrix x(&Grid); random(pRNG,x);
|
|
|
|
LatticeColourMatrix y(&Grid); random(pRNG,y);
|
2015-05-15 14:41:19 +01:00
|
|
|
|
2018-03-22 22:05:20 +00:00
|
|
|
for(int64_t i=0;i<Nwarm;i++){
|
2018-03-20 11:18:31 +00:00
|
|
|
mult(z,x,y);
|
|
|
|
}
|
2015-05-15 14:41:19 +01:00
|
|
|
double start=usecond();
|
2017-06-28 15:30:06 +01:00
|
|
|
for(int64_t i=0;i<Nloop;i++){
|
2015-05-15 14:41:19 +01:00
|
|
|
mult(z,x,y);
|
2018-06-13 20:26:07 +01:00
|
|
|
// mac(z,x,y);
|
2015-05-15 14:41:19 +01:00
|
|
|
}
|
|
|
|
double stop=usecond();
|
|
|
|
double time = (stop-start)/Nloop*1000.0;
|
|
|
|
|
2015-05-28 13:47:01 +01:00
|
|
|
double bytes=3*vol*Nc*Nc*sizeof(Complex);
|
|
|
|
double flops=Nc*Nc*(6+8+8)*vol;
|
2015-07-23 17:31:13 +01:00
|
|
|
std::cout<<GridLogMessage<<std::setprecision(3) << lat<<"\t\t"<<bytes<<" \t\t"<<bytes/time<<"\t\t" << flops/time<<std::endl;
|
2015-05-15 14:41:19 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-07-23 17:31:13 +01:00
|
|
|
std::cout<<GridLogMessage << "===================================================================================================="<<std::endl;
|
|
|
|
std::cout<<GridLogMessage << "= Benchmarking SU3xSU3 mac(z,x,y)"<<std::endl;
|
|
|
|
std::cout<<GridLogMessage << "===================================================================================================="<<std::endl;
|
|
|
|
std::cout<<GridLogMessage << " L "<<"\t\t"<<"bytes"<<"\t\t\t"<<"GB/s\t\t GFlop/s"<<std::endl;
|
|
|
|
std::cout<<GridLogMessage << "----------------------------------------------------------"<<std::endl;
|
2015-05-15 14:41:19 +01:00
|
|
|
|
2018-03-20 11:18:31 +00:00
|
|
|
for(int lat=LMIN;lat<=LMAX;lat+=LADD){
|
2015-05-15 14:41:19 +01:00
|
|
|
|
2018-02-24 22:20:14 +00:00
|
|
|
Coordinate latt_size ({lat*mpi_layout[0],lat*mpi_layout[1],lat*mpi_layout[2],lat*mpi_layout[3]});
|
2017-06-28 15:30:06 +01:00
|
|
|
int64_t vol = latt_size[0]*latt_size[1]*latt_size[2]*latt_size[3];
|
2015-05-15 14:41:19 +01:00
|
|
|
|
|
|
|
GridCartesian Grid(latt_size,simd_layout,mpi_layout);
|
2017-06-28 15:30:06 +01:00
|
|
|
GridParallelRNG pRNG(&Grid); pRNG.SeedFixedIntegers(std::vector<int>({45,12,81,9}));
|
2015-05-15 14:41:19 +01:00
|
|
|
|
2017-06-28 15:30:06 +01:00
|
|
|
LatticeColourMatrix z(&Grid); random(pRNG,z);
|
|
|
|
LatticeColourMatrix x(&Grid); random(pRNG,x);
|
|
|
|
LatticeColourMatrix y(&Grid); random(pRNG,y);
|
2015-05-15 14:41:19 +01:00
|
|
|
|
2018-03-22 22:05:20 +00:00
|
|
|
for(int64_t i=0;i<Nwarm;i++){
|
2018-03-20 11:18:31 +00:00
|
|
|
mac(z,x,y);
|
|
|
|
}
|
2015-05-15 14:41:19 +01:00
|
|
|
double start=usecond();
|
2017-06-28 15:30:06 +01:00
|
|
|
for(int64_t i=0;i<Nloop;i++){
|
2015-05-15 14:41:19 +01:00
|
|
|
mac(z,x,y);
|
|
|
|
}
|
|
|
|
double stop=usecond();
|
|
|
|
double time = (stop-start)/Nloop*1000.0;
|
|
|
|
|
2018-06-13 20:26:07 +01:00
|
|
|
double bytes=4*vol*Nc*Nc*sizeof(Complex);
|
2015-05-28 13:47:01 +01:00
|
|
|
double flops=Nc*Nc*(8+8+8)*vol;
|
2015-07-23 17:31:13 +01:00
|
|
|
std::cout<<GridLogMessage<<std::setprecision(3) << lat<<"\t\t"<<bytes<<" \t\t"<<bytes/time<<"\t\t" << flops/time<<std::endl;
|
2015-05-15 14:41:19 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-04-18 01:43:29 +01:00
|
|
|
std::cout<<GridLogMessage << "===================================================================================================="<<std::endl;
|
|
|
|
std::cout<<GridLogMessage << "= Benchmarking SU3xSU3 CovShiftForward(z,x,y)"<<std::endl;
|
|
|
|
std::cout<<GridLogMessage << "===================================================================================================="<<std::endl;
|
|
|
|
std::cout<<GridLogMessage << " L "<<"\t\t"<<"bytes"<<"\t\t\t"<<"GB/s\t\t GFlop/s"<<std::endl;
|
|
|
|
std::cout<<GridLogMessage << "----------------------------------------------------------"<<std::endl;
|
|
|
|
|
2018-12-13 05:11:34 +00:00
|
|
|
for(int lat=LMIN;lat<=LMAX;lat+=LADD){
|
2018-04-18 01:43:29 +01:00
|
|
|
|
|
|
|
std::vector<int> latt_size ({lat*mpi_layout[0],lat*mpi_layout[1],lat*mpi_layout[2],lat*mpi_layout[3]});
|
|
|
|
int64_t vol = latt_size[0]*latt_size[1]*latt_size[2]*latt_size[3];
|
|
|
|
|
|
|
|
GridCartesian Grid(latt_size,simd_layout,mpi_layout);
|
|
|
|
GridParallelRNG pRNG(&Grid); pRNG.SeedFixedIntegers(std::vector<int>({45,12,81,9}));
|
|
|
|
|
|
|
|
LatticeColourMatrix z(&Grid); random(pRNG,z);
|
|
|
|
LatticeColourMatrix x(&Grid); random(pRNG,x);
|
|
|
|
LatticeColourMatrix y(&Grid); random(pRNG,y);
|
|
|
|
|
2018-04-24 16:03:57 +01:00
|
|
|
for(int mu=0;mu<4;mu++){
|
2018-04-26 04:01:56 +01:00
|
|
|
double start=usecond();
|
|
|
|
for(int64_t i=0;i<Nloop;i++){
|
|
|
|
z = PeriodicBC::CovShiftForward(x,mu,y);
|
|
|
|
}
|
|
|
|
double stop=usecond();
|
|
|
|
double time = (stop-start)/Nloop*1000.0;
|
2018-04-18 01:43:29 +01:00
|
|
|
|
2018-04-24 16:03:57 +01:00
|
|
|
|
2018-04-26 04:01:56 +01:00
|
|
|
double bytes=3*vol*Nc*Nc*sizeof(Complex);
|
|
|
|
double flops=Nc*Nc*(6+8+8)*vol;
|
|
|
|
std::cout<<GridLogMessage<<std::setprecision(3) << lat<<"\t\t"<<bytes<<" \t\t"<<bytes/time<<"\t\t" << flops/time<<std::endl;
|
2018-04-18 01:43:29 +01:00
|
|
|
}
|
2018-04-25 00:12:11 +01:00
|
|
|
}
|
2018-04-26 17:56:27 +01:00
|
|
|
#if 1
|
2018-04-26 14:48:03 +01:00
|
|
|
std::cout<<GridLogMessage << "===================================================================================================="<<std::endl;
|
|
|
|
std::cout<<GridLogMessage << "= Benchmarking SU3xSU3 z= x * Cshift(y)"<<std::endl;
|
|
|
|
std::cout<<GridLogMessage << "===================================================================================================="<<std::endl;
|
|
|
|
std::cout<<GridLogMessage << " L "<<"\t\t"<<"bytes"<<"\t\t\t"<<"GB/s\t\t GFlop/s"<<std::endl;
|
|
|
|
std::cout<<GridLogMessage << "----------------------------------------------------------"<<std::endl;
|
|
|
|
|
2018-12-13 05:11:34 +00:00
|
|
|
for(int lat=LMIN;lat<=LMAX;lat+=LADD){
|
2018-04-26 14:48:03 +01:00
|
|
|
std::vector<int> latt_size ({lat*mpi_layout[0],lat*mpi_layout[1],lat*mpi_layout[2],lat*mpi_layout[3]});
|
|
|
|
int64_t vol = latt_size[0]*latt_size[1]*latt_size[2]*latt_size[3];
|
|
|
|
|
|
|
|
GridCartesian Grid(latt_size,simd_layout,mpi_layout);
|
|
|
|
GridParallelRNG pRNG(&Grid); pRNG.SeedFixedIntegers(std::vector<int>({45,12,81,9}));
|
|
|
|
|
|
|
|
LatticeColourMatrix z(&Grid); random(pRNG,z);
|
|
|
|
LatticeColourMatrix x(&Grid); random(pRNG,x);
|
|
|
|
LatticeColourMatrix y(&Grid); random(pRNG,y);
|
|
|
|
LatticeColourMatrix tmp(&Grid);
|
|
|
|
|
|
|
|
for(int mu=0;mu<4;mu++){
|
|
|
|
double tshift=0;
|
|
|
|
double tmult =0;
|
|
|
|
|
|
|
|
double start=usecond();
|
|
|
|
for(int64_t i=0;i<Nloop;i++){
|
|
|
|
tshift-=usecond();
|
|
|
|
tmp = Cshift(y,mu,-1);
|
|
|
|
tshift+=usecond();
|
|
|
|
tmult-=usecond();
|
|
|
|
z = x*tmp;
|
|
|
|
tmult+=usecond();
|
|
|
|
}
|
|
|
|
double stop=usecond();
|
|
|
|
double time = (stop-start)/Nloop;
|
|
|
|
tshift = tshift/Nloop;
|
|
|
|
tmult = tmult /Nloop;
|
|
|
|
|
|
|
|
double bytes=3*vol*Nc*Nc*sizeof(Complex);
|
|
|
|
double flops=Nc*Nc*(6+8+8)*vol;
|
|
|
|
std::cout<<GridLogMessage<<std::setprecision(3) << "total us "<<time<<" shift "<<tshift <<" mult "<<tmult<<std::endl;
|
|
|
|
time = time * 1000; // convert to NS for GB/s
|
|
|
|
std::cout<<GridLogMessage<<std::setprecision(3) << lat<<"\t\t"<<bytes<<" \t\t"<<bytes/time<<"\t\t" << flops/time<<std::endl;
|
|
|
|
}
|
|
|
|
}
|
2018-04-26 17:56:27 +01:00
|
|
|
#endif
|
2015-05-15 14:41:19 +01:00
|
|
|
Grid_finalize();
|
|
|
|
}
|