mirror of
				https://github.com/paboyle/Grid.git
				synced 2025-10-30 19:44:32 +00:00 
			
		
		
		
	Compare commits
	
		
			2 Commits
		
	
	
		
			feature/ft
			...
			4c0094513f
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|  | 4c0094513f | ||
| 32e6d58356 | 
							
								
								
									
										4
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							| @@ -1,7 +1,3 @@ | |||||||
| # Doxygen stuff |  | ||||||
| html/* |  | ||||||
| latex/* |  | ||||||
|  |  | ||||||
| # Compiled Object files # | # Compiled Object files # | ||||||
| ######################### | ######################### | ||||||
| *.slo | *.slo | ||||||
|   | |||||||
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @@ -1,2 +0,0 @@ | |||||||
|  |  | ||||||
| mpicxx -qmkl=parallel -fsycl BatchBlasBench.cc -o BatchBlasBench |  | ||||||
| @@ -59,7 +59,6 @@ Author: paboyle <paboyle@ph.ed.ac.uk> | |||||||
| #include <Grid/lattice/Lattice.h>       | #include <Grid/lattice/Lattice.h>       | ||||||
| #include <Grid/cshift/Cshift.h>        | #include <Grid/cshift/Cshift.h>        | ||||||
| #include <Grid/stencil/Stencil.h>       | #include <Grid/stencil/Stencil.h>       | ||||||
| #include <Grid/stencil/GeneralLocalStencil.h>       |  | ||||||
| #include <Grid/parallelIO/BinaryIO.h> | #include <Grid/parallelIO/BinaryIO.h> | ||||||
| #include <Grid/algorithms/Algorithms.h>    | #include <Grid/algorithms/Algorithms.h>    | ||||||
| NAMESPACE_CHECK(GridCore) | NAMESPACE_CHECK(GridCore) | ||||||
|   | |||||||
| @@ -34,7 +34,7 @@ | |||||||
| #pragma push_macro("__SYCL_DEVICE_ONLY__") | #pragma push_macro("__SYCL_DEVICE_ONLY__") | ||||||
| #undef __SYCL_DEVICE_ONLY__ | #undef __SYCL_DEVICE_ONLY__ | ||||||
| #define EIGEN_DONT_VECTORIZE | #define EIGEN_DONT_VECTORIZE | ||||||
| #undef EIGEN_USE_SYCL | //#undef EIGEN_USE_SYCL | ||||||
| #define __SYCL__REDEFINE__ | #define __SYCL__REDEFINE__ | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
|   | |||||||
| @@ -30,14 +30,9 @@ directory | |||||||
|  |  | ||||||
| #include <type_traits> | #include <type_traits> | ||||||
| #include <cassert> | #include <cassert> | ||||||
| #include <exception> |  | ||||||
|  |  | ||||||
| #define NAMESPACE_BEGIN(A) namespace A { | #define NAMESPACE_BEGIN(A) namespace A { | ||||||
| #define NAMESPACE_END(A)   } | #define NAMESPACE_END(A)   } | ||||||
| #define GRID_NAMESPACE_BEGIN NAMESPACE_BEGIN(Grid) | #define GRID_NAMESPACE_BEGIN NAMESPACE_BEGIN(Grid) | ||||||
| #define GRID_NAMESPACE_END   NAMESPACE_END(Grid) | #define GRID_NAMESPACE_END   NAMESPACE_END(Grid) | ||||||
| #define NAMESPACE_CHECK(x) struct namespaceTEST##x {};  static_assert(std::is_same<namespaceTEST##x, ::namespaceTEST##x>::value,"Not in :: at"  );  | #define NAMESPACE_CHECK(x) struct namespaceTEST##x {};  static_assert(std::is_same<namespaceTEST##x, ::namespaceTEST##x>::value,"Not in :: at"  );  | ||||||
|  |  | ||||||
| #define EXCEPTION_CHECK_BEGIN(A) try { |  | ||||||
| #define EXCEPTION_CHECK_END(A)   } catch ( std::exception e ) { BACKTRACEFP(stderr); std::cerr << __PRETTY_FUNCTION__ << " : " <<__LINE__<< " Caught exception "<<e.what()<<std::endl; throw; } |  | ||||||
|  |  | ||||||
|   | |||||||
| @@ -29,9 +29,6 @@ Author: Peter Boyle <paboyle@ph.ed.ac.uk> | |||||||
| #ifndef GRID_ALGORITHMS_H | #ifndef GRID_ALGORITHMS_H | ||||||
| #define GRID_ALGORITHMS_H | #define GRID_ALGORITHMS_H | ||||||
|  |  | ||||||
| NAMESPACE_CHECK(blas); |  | ||||||
| #include <Grid/algorithms/blas/BatchedBlas.h> |  | ||||||
|  |  | ||||||
| NAMESPACE_CHECK(algorithms); | NAMESPACE_CHECK(algorithms); | ||||||
| #include <Grid/algorithms/SparseMatrix.h> | #include <Grid/algorithms/SparseMatrix.h> | ||||||
| #include <Grid/algorithms/LinearOperator.h> | #include <Grid/algorithms/LinearOperator.h> | ||||||
| @@ -47,10 +44,7 @@ NAMESPACE_CHECK(SparseMatrix); | |||||||
| #include <Grid/algorithms/approx/RemezGeneral.h> | #include <Grid/algorithms/approx/RemezGeneral.h> | ||||||
| #include <Grid/algorithms/approx/ZMobius.h> | #include <Grid/algorithms/approx/ZMobius.h> | ||||||
| NAMESPACE_CHECK(approx); | NAMESPACE_CHECK(approx); | ||||||
| #include <Grid/algorithms/deflation/Deflation.h> | #include <Grid/algorithms/iterative/Deflation.h> | ||||||
| #include <Grid/algorithms/deflation/MultiRHSBlockProject.h> |  | ||||||
| #include <Grid/algorithms/deflation/MultiRHSDeflation.h> |  | ||||||
| NAMESPACE_CHECK(deflation); |  | ||||||
| #include <Grid/algorithms/iterative/ConjugateGradient.h> | #include <Grid/algorithms/iterative/ConjugateGradient.h> | ||||||
| NAMESPACE_CHECK(ConjGrad); | NAMESPACE_CHECK(ConjGrad); | ||||||
| #include <Grid/algorithms/iterative/BiCGSTAB.h> | #include <Grid/algorithms/iterative/BiCGSTAB.h> | ||||||
| @@ -73,11 +67,10 @@ NAMESPACE_CHECK(BiCGSTAB); | |||||||
| #include <Grid/algorithms/iterative/MixedPrecisionFlexibleGeneralisedMinimalResidual.h> | #include <Grid/algorithms/iterative/MixedPrecisionFlexibleGeneralisedMinimalResidual.h> | ||||||
| #include <Grid/algorithms/iterative/ImplicitlyRestartedLanczos.h> | #include <Grid/algorithms/iterative/ImplicitlyRestartedLanczos.h> | ||||||
| #include <Grid/algorithms/iterative/PowerMethod.h> | #include <Grid/algorithms/iterative/PowerMethod.h> | ||||||
| #include <Grid/algorithms/iterative/AdefGeneric.h> |  | ||||||
| #include <Grid/algorithms/iterative/AdefMrhs.h> |  | ||||||
| NAMESPACE_CHECK(PowerMethod); | NAMESPACE_CHECK(PowerMethod); | ||||||
| #include <Grid/algorithms/multigrid/MultiGrid.h> | #include <Grid/algorithms/CoarsenedMatrix.h> | ||||||
| NAMESPACE_CHECK(multigrid); | NAMESPACE_CHECK(CoarsendMatrix); | ||||||
| #include <Grid/algorithms/FFT.h> | #include <Grid/algorithms/FFT.h> | ||||||
|  |  | ||||||
| #endif | #endif | ||||||
|   | |||||||
| @@ -56,6 +56,243 @@ inline void blockMaskedInnerProduct(Lattice<CComplex> &CoarseInner, | |||||||
|   blockSum(CoarseInner,fine_inner_msk); |   blockSum(CoarseInner,fine_inner_msk); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | 
 | ||||||
|  | class Geometry { | ||||||
|  | public: | ||||||
|  |   int npoint; | ||||||
|  |   int base; | ||||||
|  |   std::vector<int> directions   ; | ||||||
|  |   std::vector<int> displacements; | ||||||
|  |   std::vector<int> points_dagger; | ||||||
|  | 
 | ||||||
|  |   Geometry(int _d)  { | ||||||
|  |      | ||||||
|  |     base = (_d==5) ? 1:0; | ||||||
|  | 
 | ||||||
|  |     // make coarse grid stencil for 4d , not 5d
 | ||||||
|  |     if ( _d==5 ) _d=4; | ||||||
|  | 
 | ||||||
|  |     npoint = 2*_d+1; | ||||||
|  |     directions.resize(npoint); | ||||||
|  |     displacements.resize(npoint); | ||||||
|  |     points_dagger.resize(npoint); | ||||||
|  |     for(int d=0;d<_d;d++){ | ||||||
|  |       directions[d   ] = d+base; | ||||||
|  |       directions[d+_d] = d+base; | ||||||
|  |       displacements[d  ] = +1; | ||||||
|  |       displacements[d+_d]= -1; | ||||||
|  |       points_dagger[d   ] = d+_d; | ||||||
|  |       points_dagger[d+_d] = d; | ||||||
|  |     } | ||||||
|  |     directions   [2*_d]=0; | ||||||
|  |     displacements[2*_d]=0; | ||||||
|  |     points_dagger[2*_d]=2*_d; | ||||||
|  |   } | ||||||
|  | 
 | ||||||
|  |   int point(int dir, int disp) { | ||||||
|  |     assert(disp == -1 || disp == 0 || disp == 1); | ||||||
|  |     assert(base+0 <= dir && dir < base+4); | ||||||
|  | 
 | ||||||
|  |     // directions faster index = new indexing
 | ||||||
|  |     // 4d (base = 0):
 | ||||||
|  |     // point 0  1  2  3  4  5  6  7  8
 | ||||||
|  |     // dir   0  1  2  3  0  1  2  3  0
 | ||||||
|  |     // disp +1 +1 +1 +1 -1 -1 -1 -1  0
 | ||||||
|  |     // 5d (base = 1):
 | ||||||
|  |     // point 0  1  2  3  4  5  6  7  8
 | ||||||
|  |     // dir   1  2  3  4  1  2  3  4  0
 | ||||||
|  |     // disp +1 +1 +1 +1 -1 -1 -1 -1  0
 | ||||||
|  | 
 | ||||||
|  |     // displacements faster index = old indexing
 | ||||||
|  |     // 4d (base = 0):
 | ||||||
|  |     // point 0  1  2  3  4  5  6  7  8
 | ||||||
|  |     // dir   0  0  1  1  2  2  3  3  0
 | ||||||
|  |     // disp +1 -1 +1 -1 +1 -1 +1 -1  0
 | ||||||
|  |     // 5d (base = 1):
 | ||||||
|  |     // point 0  1  2  3  4  5  6  7  8
 | ||||||
|  |     // dir   1  1  2  2  3  3  4  4  0
 | ||||||
|  |     // disp +1 -1 +1 -1 +1 -1 +1 -1  0
 | ||||||
|  | 
 | ||||||
|  |     if(dir == 0 and disp == 0) | ||||||
|  |       return 8; | ||||||
|  |     else // New indexing
 | ||||||
|  |       return (1 - disp) / 2 * 4 + dir - base; | ||||||
|  |     // else // Old indexing
 | ||||||
|  |     //   return (4 * (dir - base) + 1 - disp) / 2;
 | ||||||
|  |   } | ||||||
|  | }; | ||||||
|  |    | ||||||
|  | template<class Fobj,class CComplex,int nbasis> | ||||||
|  | class Aggregation   { | ||||||
|  | public: | ||||||
|  |   typedef iVector<CComplex,nbasis >             siteVector; | ||||||
|  |   typedef Lattice<siteVector>                 CoarseVector; | ||||||
|  |   typedef Lattice<iMatrix<CComplex,nbasis > > CoarseMatrix; | ||||||
|  | 
 | ||||||
|  |   typedef Lattice< CComplex >   CoarseScalar; // used for inner products on fine field
 | ||||||
|  |   typedef Lattice<Fobj >        FineField; | ||||||
|  | 
 | ||||||
|  |   GridBase *CoarseGrid; | ||||||
|  |   GridBase *FineGrid; | ||||||
|  |   std::vector<Lattice<Fobj> > subspace; | ||||||
|  |   int checkerboard; | ||||||
|  |   int Checkerboard(void){return checkerboard;} | ||||||
|  |   Aggregation(GridBase *_CoarseGrid,GridBase *_FineGrid,int _checkerboard) :  | ||||||
|  |     CoarseGrid(_CoarseGrid), | ||||||
|  |     FineGrid(_FineGrid), | ||||||
|  |     subspace(nbasis,_FineGrid), | ||||||
|  |     checkerboard(_checkerboard) | ||||||
|  |   { | ||||||
|  |   }; | ||||||
|  |    | ||||||
|  |   void Orthogonalise(void){ | ||||||
|  |     CoarseScalar InnerProd(CoarseGrid);  | ||||||
|  |     std::cout << GridLogMessage <<" Block Gramm-Schmidt pass 1"<<std::endl; | ||||||
|  |     blockOrthogonalise(InnerProd,subspace); | ||||||
|  |   }  | ||||||
|  |   void ProjectToSubspace(CoarseVector &CoarseVec,const FineField &FineVec){ | ||||||
|  |     blockProject(CoarseVec,FineVec,subspace); | ||||||
|  |   } | ||||||
|  |   void PromoteFromSubspace(const CoarseVector &CoarseVec,FineField &FineVec){ | ||||||
|  |     FineVec.Checkerboard() = subspace[0].Checkerboard(); | ||||||
|  |     blockPromote(CoarseVec,FineVec,subspace); | ||||||
|  |   } | ||||||
|  | 
 | ||||||
|  |   virtual void CreateSubspace(GridParallelRNG  &RNG,LinearOperatorBase<FineField> &hermop,int nn=nbasis) { | ||||||
|  | 
 | ||||||
|  |     RealD scale; | ||||||
|  | 
 | ||||||
|  |     ConjugateGradient<FineField> CG(1.0e-2,100,false); | ||||||
|  |     FineField noise(FineGrid); | ||||||
|  |     FineField Mn(FineGrid); | ||||||
|  | 
 | ||||||
|  |     for(int b=0;b<nn;b++){ | ||||||
|  |        | ||||||
|  |       subspace[b] = Zero(); | ||||||
|  |       gaussian(RNG,noise); | ||||||
|  |       scale = std::pow(norm2(noise),-0.5);  | ||||||
|  |       noise=noise*scale; | ||||||
|  |        | ||||||
|  |       hermop.Op(noise,Mn); std::cout<<GridLogMessage << "noise   ["<<b<<"] <n|MdagM|n> "<<norm2(Mn)<<std::endl; | ||||||
|  | 
 | ||||||
|  |       for(int i=0;i<1;i++){ | ||||||
|  | 
 | ||||||
|  | 	CG(hermop,noise,subspace[b]); | ||||||
|  | 
 | ||||||
|  | 	noise = subspace[b]; | ||||||
|  | 	scale = std::pow(norm2(noise),-0.5);  | ||||||
|  | 	noise=noise*scale; | ||||||
|  | 
 | ||||||
|  |       } | ||||||
|  | 
 | ||||||
|  |       hermop.Op(noise,Mn); std::cout<<GridLogMessage << "filtered["<<b<<"] <f|MdagM|f> "<<norm2(Mn)<<std::endl; | ||||||
|  |       subspace[b]   = noise; | ||||||
|  | 
 | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | 
 | ||||||
|  |   ////////////////////////////////////////////////////////////////////////////////////////////////
 | ||||||
|  |   // World of possibilities here. But have tried quite a lot of experiments (250+ jobs run on Summit)
 | ||||||
|  |   // and this is the best I found
 | ||||||
|  |   ////////////////////////////////////////////////////////////////////////////////////////////////
 | ||||||
|  | 
 | ||||||
|  |   virtual void CreateSubspaceChebyshev(GridParallelRNG  &RNG,LinearOperatorBase<FineField> &hermop, | ||||||
|  | 				       int nn, | ||||||
|  | 				       double hi, | ||||||
|  | 				       double lo, | ||||||
|  | 				       int orderfilter, | ||||||
|  | 				       int ordermin, | ||||||
|  | 				       int orderstep, | ||||||
|  | 				       double filterlo | ||||||
|  | 				       ) { | ||||||
|  | 
 | ||||||
|  |     RealD scale; | ||||||
|  | 
 | ||||||
|  |     FineField noise(FineGrid); | ||||||
|  |     FineField Mn(FineGrid); | ||||||
|  |     FineField tmp(FineGrid); | ||||||
|  | 
 | ||||||
|  |     // New normalised noise
 | ||||||
|  |     gaussian(RNG,noise); | ||||||
|  |     scale = std::pow(norm2(noise),-0.5);  | ||||||
|  |     noise=noise*scale; | ||||||
|  | 
 | ||||||
|  |     // Initial matrix element
 | ||||||
|  |     hermop.Op(noise,Mn); std::cout<<GridLogMessage << "noise <n|MdagM|n> "<<norm2(Mn)<<std::endl; | ||||||
|  | 
 | ||||||
|  |     int b =0; | ||||||
|  |     { | ||||||
|  |       // Filter
 | ||||||
|  |       Chebyshev<FineField> Cheb(lo,hi,orderfilter); | ||||||
|  |       Cheb(hermop,noise,Mn); | ||||||
|  |       // normalise
 | ||||||
|  |       scale = std::pow(norm2(Mn),-0.5); 	Mn=Mn*scale; | ||||||
|  |       subspace[b]   = Mn; | ||||||
|  |       hermop.Op(Mn,tmp);  | ||||||
|  |       std::cout<<GridLogMessage << "filt ["<<b<<"] <n|MdagM|n> "<<norm2(tmp)<<std::endl; | ||||||
|  |       b++; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     // Generate a full sequence of Chebyshevs
 | ||||||
|  |     { | ||||||
|  |       lo=filterlo; | ||||||
|  |       noise=Mn; | ||||||
|  | 
 | ||||||
|  |       FineField T0(FineGrid); T0 = noise;   | ||||||
|  |       FineField T1(FineGrid);  | ||||||
|  |       FineField T2(FineGrid); | ||||||
|  |       FineField y(FineGrid); | ||||||
|  |        | ||||||
|  |       FineField *Tnm = &T0; | ||||||
|  |       FineField *Tn  = &T1; | ||||||
|  |       FineField *Tnp = &T2; | ||||||
|  | 
 | ||||||
|  |       // Tn=T1 = (xscale M + mscale)in
 | ||||||
|  |       RealD xscale = 2.0/(hi-lo); | ||||||
|  |       RealD mscale = -(hi+lo)/(hi-lo); | ||||||
|  |       hermop.HermOp(T0,y); | ||||||
|  |       T1=y*xscale+noise*mscale; | ||||||
|  | 
 | ||||||
|  |       for(int n=2;n<=ordermin+orderstep*(nn-2);n++){ | ||||||
|  | 	 | ||||||
|  | 	hermop.HermOp(*Tn,y); | ||||||
|  | 
 | ||||||
|  | 	autoView( y_v , y, AcceleratorWrite); | ||||||
|  | 	autoView( Tn_v , (*Tn), AcceleratorWrite); | ||||||
|  | 	autoView( Tnp_v , (*Tnp), AcceleratorWrite); | ||||||
|  | 	autoView( Tnm_v , (*Tnm), AcceleratorWrite); | ||||||
|  | 	const int Nsimd = CComplex::Nsimd(); | ||||||
|  | 	accelerator_for(ss, FineGrid->oSites(), Nsimd, { | ||||||
|  | 	  coalescedWrite(y_v[ss],xscale*y_v(ss)+mscale*Tn_v(ss)); | ||||||
|  | 	  coalescedWrite(Tnp_v[ss],2.0*y_v(ss)-Tnm_v(ss)); | ||||||
|  |         }); | ||||||
|  | 
 | ||||||
|  | 	// Possible more fine grained control is needed than a linear sweep,
 | ||||||
|  | 	// but huge productivity gain if this is simple algorithm and not a tunable
 | ||||||
|  | 	int m =1; | ||||||
|  | 	if ( n>=ordermin ) m=n-ordermin; | ||||||
|  | 	if ( (m%orderstep)==0 ) {  | ||||||
|  | 	  Mn=*Tnp; | ||||||
|  | 	  scale = std::pow(norm2(Mn),-0.5);         Mn=Mn*scale; | ||||||
|  | 	  subspace[b] = Mn; | ||||||
|  | 	  hermop.Op(Mn,tmp);  | ||||||
|  | 	  std::cout<<GridLogMessage << n<<" filt ["<<b<<"] <n|MdagM|n> "<<norm2(tmp)<<std::endl; | ||||||
|  | 	  b++; | ||||||
|  | 	} | ||||||
|  | 
 | ||||||
|  | 	// Cycle pointers to avoid copies
 | ||||||
|  | 	FineField *swizzle = Tnm; | ||||||
|  | 	Tnm    =Tn; | ||||||
|  | 	Tn     =Tnp; | ||||||
|  | 	Tnp    =swizzle; | ||||||
|  | 	   | ||||||
|  |       } | ||||||
|  |     } | ||||||
|  |     assert(b==nn); | ||||||
|  |   } | ||||||
|  | 
 | ||||||
|  | }; | ||||||
|  | 
 | ||||||
| // Fine Object == (per site) type of fine field
 | // Fine Object == (per site) type of fine field
 | ||||||
| // nbasis      == number of deflation vectors
 | // nbasis      == number of deflation vectors
 | ||||||
| template<class Fobj,class CComplex,int nbasis> | template<class Fobj,class CComplex,int nbasis> | ||||||
| @@ -29,7 +29,7 @@ Author: Peter Boyle <paboyle@ph.ed.ac.uk> | |||||||
| #define _GRID_FFT_H_ | #define _GRID_FFT_H_ | ||||||
|  |  | ||||||
| #ifdef HAVE_FFTW | #ifdef HAVE_FFTW | ||||||
| #if defined(USE_MKL) || defined(GRID_SYCL) | #ifdef USE_MKL | ||||||
| #include <fftw/fftw3.h> | #include <fftw/fftw3.h> | ||||||
| #else | #else | ||||||
| #include <fftw3.h> | #include <fftw3.h> | ||||||
|   | |||||||
| @@ -145,44 +145,6 @@ public: | |||||||
|   } |   } | ||||||
| }; | }; | ||||||
|  |  | ||||||
| //////////////////////////////////////////////////////////////////// |  | ||||||
| // Create a shifted HermOp |  | ||||||
| //////////////////////////////////////////////////////////////////// |  | ||||||
| template<class Field> |  | ||||||
| class ShiftedHermOpLinearOperator : public LinearOperatorBase<Field> { |  | ||||||
|   LinearOperatorBase<Field> &_Mat; |  | ||||||
|   RealD _shift; |  | ||||||
| public: |  | ||||||
|   ShiftedHermOpLinearOperator(LinearOperatorBase<Field> &Mat,RealD shift): _Mat(Mat), _shift(shift){}; |  | ||||||
|   // Support for coarsening to a multigrid |  | ||||||
|   void OpDiag (const Field &in, Field &out) { |  | ||||||
|     assert(0); |  | ||||||
|   } |  | ||||||
|   void OpDir  (const Field &in, Field &out,int dir,int disp) { |  | ||||||
|     assert(0); |  | ||||||
|   } |  | ||||||
|   void OpDirAll  (const Field &in, std::vector<Field> &out){ |  | ||||||
|     assert(0); |  | ||||||
|   }; |  | ||||||
|   void Op     (const Field &in, Field &out){ |  | ||||||
|     HermOp(in,out); |  | ||||||
|   } |  | ||||||
|   void AdjOp     (const Field &in, Field &out){ |  | ||||||
|     HermOp(in,out); |  | ||||||
|   } |  | ||||||
|   void HermOpAndNorm(const Field &in, Field &out,RealD &n1,RealD &n2){ |  | ||||||
|     HermOp(in,out); |  | ||||||
|     ComplexD dot = innerProduct(in,out); |  | ||||||
|     n1=real(dot); |  | ||||||
|     n2=norm2(out); |  | ||||||
|   } |  | ||||||
|   void HermOp(const Field &in, Field &out){ |  | ||||||
|     _Mat.HermOp(in,out); |  | ||||||
|     out = out + _shift*in; |  | ||||||
|   } |  | ||||||
| }; |  | ||||||
|  |  | ||||||
|  |  | ||||||
| //////////////////////////////////////////////////////////////////// | //////////////////////////////////////////////////////////////////// | ||||||
| // Wrap an already herm matrix | // Wrap an already herm matrix | ||||||
| //////////////////////////////////////////////////////////////////// | //////////////////////////////////////////////////////////////////// | ||||||
|   | |||||||
| @@ -90,8 +90,9 @@ public: | |||||||
|     order=_order; |     order=_order; | ||||||
|        |        | ||||||
|     if(order < 2) exit(-1); |     if(order < 2) exit(-1); | ||||||
|     Coeffs.resize(order,0.0); |     Coeffs.resize(order); | ||||||
|     Coeffs[order-1] = 1.0; |     Coeffs.assign(0.,order); | ||||||
|  |     Coeffs[order-1] = 1.; | ||||||
|   }; |   }; | ||||||
|    |    | ||||||
|   // PB - more efficient low pass drops high modes above the low as 1/x uses all Chebyshev's. |   // PB - more efficient low pass drops high modes above the low as 1/x uses all Chebyshev's. | ||||||
|   | |||||||
| @@ -40,7 +40,7 @@ public: | |||||||
|   RealD norm; |   RealD norm; | ||||||
|   RealD lo,hi; |   RealD lo,hi; | ||||||
|  |  | ||||||
|   MultiShiftFunction(int n,RealD _lo,RealD _hi): poles(n), residues(n), tolerances(n), lo(_lo), hi(_hi) {;}; |   MultiShiftFunction(int n,RealD _lo,RealD _hi): poles(n), residues(n), lo(_lo), hi(_hi) {;}; | ||||||
|   RealD approx(RealD x); |   RealD approx(RealD x); | ||||||
|   void csv(std::ostream &out); |   void csv(std::ostream &out); | ||||||
|   void gnuplot(std::ostream &out); |   void gnuplot(std::ostream &out); | ||||||
|   | |||||||
| @@ -293,7 +293,7 @@ static void sncndnFK(INTERNAL_PRECISION u, INTERNAL_PRECISION k, | |||||||
|  * Set type = 0 for the Zolotarev approximation, which is zero at x = 0, and |  * Set type = 0 for the Zolotarev approximation, which is zero at x = 0, and | ||||||
|  * type = 1 for the approximation which is infinite at x = 0. */ |  * type = 1 for the approximation which is infinite at x = 0. */ | ||||||
|  |  | ||||||
| zolotarev_data* zolotarev(ZOLO_PRECISION epsilon, int n, int type) { | zolotarev_data* zolotarev(PRECISION epsilon, int n, int type) { | ||||||
|   INTERNAL_PRECISION A, c, cp, kp, ksq, sn, cn, dn, Kp, Kj, z, z0, t, M, F, |   INTERNAL_PRECISION A, c, cp, kp, ksq, sn, cn, dn, Kp, Kj, z, z0, t, M, F, | ||||||
|     l, invlambda, xi, xisq, *tv, s, opl; |     l, invlambda, xi, xisq, *tv, s, opl; | ||||||
|   int m, czero, ts; |   int m, czero, ts; | ||||||
| @@ -375,12 +375,12 @@ zolotarev_data* zolotarev(ZOLO_PRECISION epsilon, int n, int type) { | |||||||
|   construct_partfrac(d); |   construct_partfrac(d); | ||||||
|   construct_contfrac(d); |   construct_contfrac(d); | ||||||
|  |  | ||||||
|   /* Converting everything to ZOLO_PRECISION for external use only */ |   /* Converting everything to PRECISION for external use only */ | ||||||
|  |  | ||||||
|   zd = (zolotarev_data*) malloc(sizeof(zolotarev_data)); |   zd = (zolotarev_data*) malloc(sizeof(zolotarev_data)); | ||||||
|   zd -> A = (ZOLO_PRECISION) d -> A; |   zd -> A = (PRECISION) d -> A; | ||||||
|   zd -> Delta = (ZOLO_PRECISION) d -> Delta; |   zd -> Delta = (PRECISION) d -> Delta; | ||||||
|   zd -> epsilon = (ZOLO_PRECISION) d -> epsilon; |   zd -> epsilon = (PRECISION) d -> epsilon; | ||||||
|   zd -> n = d -> n; |   zd -> n = d -> n; | ||||||
|   zd -> type = d -> type; |   zd -> type = d -> type; | ||||||
|   zd -> dn = d -> dn; |   zd -> dn = d -> dn; | ||||||
| @@ -390,24 +390,24 @@ zolotarev_data* zolotarev(ZOLO_PRECISION epsilon, int n, int type) { | |||||||
|   zd -> deg_num = d -> deg_num; |   zd -> deg_num = d -> deg_num; | ||||||
|   zd -> deg_denom = d -> deg_denom; |   zd -> deg_denom = d -> deg_denom; | ||||||
|  |  | ||||||
|   zd -> a = (ZOLO_PRECISION*) malloc(zd -> dn * sizeof(ZOLO_PRECISION)); |   zd -> a = (PRECISION*) malloc(zd -> dn * sizeof(PRECISION)); | ||||||
|   for (m = 0; m < zd -> dn; m++) zd -> a[m] = (ZOLO_PRECISION) d -> a[m]; |   for (m = 0; m < zd -> dn; m++) zd -> a[m] = (PRECISION) d -> a[m]; | ||||||
|   free(d -> a); |   free(d -> a); | ||||||
|  |  | ||||||
|   zd -> ap = (ZOLO_PRECISION*) malloc(zd -> dd * sizeof(ZOLO_PRECISION)); |   zd -> ap = (PRECISION*) malloc(zd -> dd * sizeof(PRECISION)); | ||||||
|   for (m = 0; m < zd -> dd; m++) zd -> ap[m] = (ZOLO_PRECISION) d -> ap[m]; |   for (m = 0; m < zd -> dd; m++) zd -> ap[m] = (PRECISION) d -> ap[m]; | ||||||
|   free(d -> ap); |   free(d -> ap); | ||||||
|  |  | ||||||
|   zd -> alpha = (ZOLO_PRECISION*) malloc(zd -> da * sizeof(ZOLO_PRECISION)); |   zd -> alpha = (PRECISION*) malloc(zd -> da * sizeof(PRECISION)); | ||||||
|   for (m = 0; m < zd -> da; m++) zd -> alpha[m] = (ZOLO_PRECISION) d -> alpha[m]; |   for (m = 0; m < zd -> da; m++) zd -> alpha[m] = (PRECISION) d -> alpha[m]; | ||||||
|   free(d -> alpha); |   free(d -> alpha); | ||||||
|  |  | ||||||
|   zd -> beta = (ZOLO_PRECISION*) malloc(zd -> db * sizeof(ZOLO_PRECISION)); |   zd -> beta = (PRECISION*) malloc(zd -> db * sizeof(PRECISION)); | ||||||
|   for (m = 0; m < zd -> db; m++) zd -> beta[m] = (ZOLO_PRECISION) d -> beta[m]; |   for (m = 0; m < zd -> db; m++) zd -> beta[m] = (PRECISION) d -> beta[m]; | ||||||
|   free(d -> beta); |   free(d -> beta); | ||||||
|  |  | ||||||
|   zd -> gamma = (ZOLO_PRECISION*) malloc(zd -> n * sizeof(ZOLO_PRECISION)); |   zd -> gamma = (PRECISION*) malloc(zd -> n * sizeof(PRECISION)); | ||||||
|   for (m = 0; m < zd -> n; m++) zd -> gamma[m] = (ZOLO_PRECISION) d -> gamma[m]; |   for (m = 0; m < zd -> n; m++) zd -> gamma[m] = (PRECISION) d -> gamma[m]; | ||||||
|   free(d -> gamma); |   free(d -> gamma); | ||||||
|  |  | ||||||
|   free(d); |   free(d); | ||||||
| @@ -426,7 +426,7 @@ void zolotarev_free(zolotarev_data *zdata) | |||||||
| } | } | ||||||
|  |  | ||||||
|  |  | ||||||
| zolotarev_data* higham(ZOLO_PRECISION epsilon, int n) { | zolotarev_data* higham(PRECISION epsilon, int n) { | ||||||
|   INTERNAL_PRECISION A, M, c, cp, z, z0, t, epssq; |   INTERNAL_PRECISION A, M, c, cp, z, z0, t, epssq; | ||||||
|   int m, czero; |   int m, czero; | ||||||
|   zolotarev_data *zd; |   zolotarev_data *zd; | ||||||
| @@ -481,9 +481,9 @@ zolotarev_data* higham(ZOLO_PRECISION epsilon, int n) { | |||||||
|   /* Converting everything to PRECISION for external use only */ |   /* Converting everything to PRECISION for external use only */ | ||||||
|  |  | ||||||
|   zd = (zolotarev_data*) malloc(sizeof(zolotarev_data)); |   zd = (zolotarev_data*) malloc(sizeof(zolotarev_data)); | ||||||
|   zd -> A = (ZOLO_PRECISION) d -> A; |   zd -> A = (PRECISION) d -> A; | ||||||
|   zd -> Delta = (ZOLO_PRECISION) d -> Delta; |   zd -> Delta = (PRECISION) d -> Delta; | ||||||
|   zd -> epsilon = (ZOLO_PRECISION) d -> epsilon; |   zd -> epsilon = (PRECISION) d -> epsilon; | ||||||
|   zd -> n = d -> n; |   zd -> n = d -> n; | ||||||
|   zd -> type = d -> type; |   zd -> type = d -> type; | ||||||
|   zd -> dn = d -> dn; |   zd -> dn = d -> dn; | ||||||
| @@ -493,24 +493,24 @@ zolotarev_data* higham(ZOLO_PRECISION epsilon, int n) { | |||||||
|   zd -> deg_num = d -> deg_num; |   zd -> deg_num = d -> deg_num; | ||||||
|   zd -> deg_denom = d -> deg_denom; |   zd -> deg_denom = d -> deg_denom; | ||||||
|  |  | ||||||
|   zd -> a = (ZOLO_PRECISION*) malloc(zd -> dn * sizeof(ZOLO_PRECISION)); |   zd -> a = (PRECISION*) malloc(zd -> dn * sizeof(PRECISION)); | ||||||
|   for (m = 0; m < zd -> dn; m++) zd -> a[m] = (ZOLO_PRECISION) d -> a[m]; |   for (m = 0; m < zd -> dn; m++) zd -> a[m] = (PRECISION) d -> a[m]; | ||||||
|   free(d -> a); |   free(d -> a); | ||||||
|  |  | ||||||
|   zd -> ap = (ZOLO_PRECISION*) malloc(zd -> dd * sizeof(ZOLO_PRECISION)); |   zd -> ap = (PRECISION*) malloc(zd -> dd * sizeof(PRECISION)); | ||||||
|   for (m = 0; m < zd -> dd; m++) zd -> ap[m] = (ZOLO_PRECISION) d -> ap[m]; |   for (m = 0; m < zd -> dd; m++) zd -> ap[m] = (PRECISION) d -> ap[m]; | ||||||
|   free(d -> ap); |   free(d -> ap); | ||||||
|  |  | ||||||
|   zd -> alpha = (ZOLO_PRECISION*) malloc(zd -> da * sizeof(ZOLO_PRECISION)); |   zd -> alpha = (PRECISION*) malloc(zd -> da * sizeof(PRECISION)); | ||||||
|   for (m = 0; m < zd -> da; m++) zd -> alpha[m] = (ZOLO_PRECISION) d -> alpha[m]; |   for (m = 0; m < zd -> da; m++) zd -> alpha[m] = (PRECISION) d -> alpha[m]; | ||||||
|   free(d -> alpha); |   free(d -> alpha); | ||||||
|  |  | ||||||
|   zd -> beta = (ZOLO_PRECISION*) malloc(zd -> db * sizeof(ZOLO_PRECISION)); |   zd -> beta = (PRECISION*) malloc(zd -> db * sizeof(PRECISION)); | ||||||
|   for (m = 0; m < zd -> db; m++) zd -> beta[m] = (ZOLO_PRECISION) d -> beta[m]; |   for (m = 0; m < zd -> db; m++) zd -> beta[m] = (PRECISION) d -> beta[m]; | ||||||
|   free(d -> beta); |   free(d -> beta); | ||||||
|  |  | ||||||
|   zd -> gamma = (ZOLO_PRECISION*) malloc(zd -> n * sizeof(ZOLO_PRECISION)); |   zd -> gamma = (PRECISION*) malloc(zd -> n * sizeof(PRECISION)); | ||||||
|   for (m = 0; m < zd -> n; m++) zd -> gamma[m] = (ZOLO_PRECISION) d -> gamma[m]; |   for (m = 0; m < zd -> n; m++) zd -> gamma[m] = (PRECISION) d -> gamma[m]; | ||||||
|   free(d -> gamma); |   free(d -> gamma); | ||||||
|  |  | ||||||
|   free(d); |   free(d); | ||||||
| @@ -523,17 +523,17 @@ NAMESPACE_END(Grid); | |||||||
| #ifdef TEST | #ifdef TEST | ||||||
|  |  | ||||||
| #undef ZERO | #undef ZERO | ||||||
| #define ZERO ((ZOLO_PRECISION) 0) | #define ZERO ((PRECISION) 0) | ||||||
| #undef ONE | #undef ONE | ||||||
| #define ONE ((ZOLO_PRECISION) 1) | #define ONE ((PRECISION) 1) | ||||||
| #undef TWO | #undef TWO | ||||||
| #define TWO ((ZOLO_PRECISION) 2) | #define TWO ((PRECISION) 2) | ||||||
|  |  | ||||||
| /* Evaluate the rational approximation R(x) using the factored form */ | /* Evaluate the rational approximation R(x) using the factored form */ | ||||||
|  |  | ||||||
| static ZOLO_PRECISION zolotarev_eval(ZOLO_PRECISION x, zolotarev_data* rdata) { | static PRECISION zolotarev_eval(PRECISION x, zolotarev_data* rdata) { | ||||||
|   int m; |   int m; | ||||||
|   ZOLO_PRECISION R; |   PRECISION R; | ||||||
|  |  | ||||||
|   if (rdata -> type == 0) { |   if (rdata -> type == 0) { | ||||||
|     R = rdata -> A * x; |     R = rdata -> A * x; | ||||||
| @@ -551,9 +551,9 @@ static ZOLO_PRECISION zolotarev_eval(ZOLO_PRECISION x, zolotarev_data* rdata) { | |||||||
|  |  | ||||||
| /* Evaluate the rational approximation R(x) using the partial fraction form */ | /* Evaluate the rational approximation R(x) using the partial fraction form */ | ||||||
|  |  | ||||||
| static ZOLO_PRECISION zolotarev_partfrac_eval(ZOLO_PRECISION x, zolotarev_data* rdata) { | static PRECISION zolotarev_partfrac_eval(PRECISION x, zolotarev_data* rdata) { | ||||||
|   int m; |   int m; | ||||||
|   ZOLO_PRECISION R = rdata -> alpha[rdata -> da - 1]; |   PRECISION R = rdata -> alpha[rdata -> da - 1]; | ||||||
|   for (m = 0; m < rdata -> dd; m++) |   for (m = 0; m < rdata -> dd; m++) | ||||||
|     R += rdata -> alpha[m] / (x * x - rdata -> ap[m]); |     R += rdata -> alpha[m] / (x * x - rdata -> ap[m]); | ||||||
|   if (rdata -> type == 1) R += rdata -> alpha[rdata -> dd] / (x * x); |   if (rdata -> type == 1) R += rdata -> alpha[rdata -> dd] / (x * x); | ||||||
| @@ -568,18 +568,18 @@ static ZOLO_PRECISION zolotarev_partfrac_eval(ZOLO_PRECISION x, zolotarev_data* | |||||||
|  * non-signalling overflow this will work correctly since 1/(1/0) = 1/INF = 0, |  * non-signalling overflow this will work correctly since 1/(1/0) = 1/INF = 0, | ||||||
|  * but with signalling overflow you will get an error message. */ |  * but with signalling overflow you will get an error message. */ | ||||||
|  |  | ||||||
| static ZOLO_PRECISION zolotarev_contfrac_eval(ZOLO_PRECISION x, zolotarev_data* rdata) { | static PRECISION zolotarev_contfrac_eval(PRECISION x, zolotarev_data* rdata) { | ||||||
|   int m; |   int m; | ||||||
|   ZOLO_PRECISION R = rdata -> beta[0] * x; |   PRECISION R = rdata -> beta[0] * x; | ||||||
|   for (m = 1; m < rdata -> db; m++) R = rdata -> beta[m] * x + ONE / R; |   for (m = 1; m < rdata -> db; m++) R = rdata -> beta[m] * x + ONE / R; | ||||||
|   return R; |   return R; | ||||||
| }     | }     | ||||||
|  |  | ||||||
| /* Evaluate the rational approximation R(x) using Cayley form */ | /* Evaluate the rational approximation R(x) using Cayley form */ | ||||||
|  |  | ||||||
| static ZOLO_PRECISION zolotarev_cayley_eval(ZOLO_PRECISION x, zolotarev_data* rdata) { | static PRECISION zolotarev_cayley_eval(PRECISION x, zolotarev_data* rdata) { | ||||||
|   int m; |   int m; | ||||||
|   ZOLO_PRECISION T; |   PRECISION T; | ||||||
|  |  | ||||||
|   T = rdata -> type == 0 ? ONE : -ONE; |   T = rdata -> type == 0 ? ONE : -ONE; | ||||||
|   for (m = 0; m < rdata -> n; m++) |   for (m = 0; m < rdata -> n; m++) | ||||||
| @@ -607,7 +607,7 @@ int main(int argc, char** argv) { | |||||||
|   int m, n, plotpts = 5000, type = 0; |   int m, n, plotpts = 5000, type = 0; | ||||||
|   float eps, x, ypferr, ycferr, ycaylerr, maxypferr, maxycferr, maxycaylerr; |   float eps, x, ypferr, ycferr, ycaylerr, maxypferr, maxycferr, maxycaylerr; | ||||||
|   zolotarev_data *rdata; |   zolotarev_data *rdata; | ||||||
|   ZOLO_PRECISION y; |   PRECISION y; | ||||||
|   FILE *plot_function, *plot_error,  |   FILE *plot_function, *plot_error,  | ||||||
|     *plot_partfrac, *plot_contfrac, *plot_cayley; |     *plot_partfrac, *plot_contfrac, *plot_cayley; | ||||||
|  |  | ||||||
| @@ -626,13 +626,13 @@ int main(int argc, char** argv) { | |||||||
|   } |   } | ||||||
|  |  | ||||||
|   rdata = type == 2  |   rdata = type == 2  | ||||||
|     ? higham((ZOLO_PRECISION) eps, n)  |     ? higham((PRECISION) eps, n)  | ||||||
|     : zolotarev((ZOLO_PRECISION) eps, n, type); |     : zolotarev((PRECISION) eps, n, type); | ||||||
|  |  | ||||||
|   printf("Zolotarev Test: R(epsilon = %g, n = %d, type = %d)\n\t"  |   printf("Zolotarev Test: R(epsilon = %g, n = %d, type = %d)\n\t"  | ||||||
| 	 STRINGIFY(VERSION) "\n\t" STRINGIFY(HVERSION) | 	 STRINGIFY(VERSION) "\n\t" STRINGIFY(HVERSION) | ||||||
| 	 "\n\tINTERNAL_PRECISION = " STRINGIFY(INTERNAL_PRECISION) | 	 "\n\tINTERNAL_PRECISION = " STRINGIFY(INTERNAL_PRECISION) | ||||||
| 	 "\tZOLO_PRECISION = " STRINGIFY(ZOLO_PRECISION) | 	 "\tPRECISION = " STRINGIFY(PRECISION) | ||||||
| 	 "\n\n\tRational approximation of degree (%d,%d), %s at x = 0\n" | 	 "\n\n\tRational approximation of degree (%d,%d), %s at x = 0\n" | ||||||
| 	 "\tDelta = %g (maximum error)\n\n" | 	 "\tDelta = %g (maximum error)\n\n" | ||||||
| 	 "\tA = %g (overall factor)\n", | 	 "\tA = %g (overall factor)\n", | ||||||
| @@ -681,15 +681,15 @@ int main(int argc, char** argv) { | |||||||
|     x = 2.4 * (float) m / plotpts - 1.2; |     x = 2.4 * (float) m / plotpts - 1.2; | ||||||
|     if (rdata -> type == 0 || fabs(x) * (float) plotpts > 1.0) { |     if (rdata -> type == 0 || fabs(x) * (float) plotpts > 1.0) { | ||||||
|       /* skip x = 0 for type 1, as R(0) is singular */ |       /* skip x = 0 for type 1, as R(0) is singular */ | ||||||
|       y = zolotarev_eval((ZOLO_PRECISION) x, rdata); |       y = zolotarev_eval((PRECISION) x, rdata); | ||||||
|       fprintf(plot_function, "%g %g\n", x, (float) y); |       fprintf(plot_function, "%g %g\n", x, (float) y); | ||||||
|       fprintf(plot_error, "%g %g\n", |       fprintf(plot_error, "%g %g\n", | ||||||
| 	      x, (float)((y - ((x > 0.0 ? ONE : -ONE))) / rdata -> Delta)); | 	      x, (float)((y - ((x > 0.0 ? ONE : -ONE))) / rdata -> Delta)); | ||||||
|       ypferr = (float)((zolotarev_partfrac_eval((ZOLO_PRECISION) x, rdata) - y) |       ypferr = (float)((zolotarev_partfrac_eval((PRECISION) x, rdata) - y) | ||||||
| 		       / rdata -> Delta); | 		       / rdata -> Delta); | ||||||
|       ycferr = (float)((zolotarev_contfrac_eval((ZOLO_PRECISION) x, rdata) - y) |       ycferr = (float)((zolotarev_contfrac_eval((PRECISION) x, rdata) - y) | ||||||
| 		       / rdata -> Delta); | 		       / rdata -> Delta); | ||||||
|       ycaylerr = (float)((zolotarev_cayley_eval((ZOLO_PRECISION) x, rdata) - y) |       ycaylerr = (float)((zolotarev_cayley_eval((PRECISION) x, rdata) - y) | ||||||
| 		       / rdata -> Delta); | 		       / rdata -> Delta); | ||||||
|       if (fabs(x) < 1.0 && fabs(x) > rdata -> epsilon) { |       if (fabs(x) < 1.0 && fabs(x) > rdata -> epsilon) { | ||||||
| 	maxypferr = MAX(maxypferr, fabs(ypferr)); | 	maxypferr = MAX(maxypferr, fabs(ypferr)); | ||||||
|   | |||||||
| @@ -9,10 +9,10 @@ NAMESPACE_BEGIN(Approx); | |||||||
| #define HVERSION Header Time-stamp: <14-OCT-2004 09:26:51.00 adk@MISSCONTRARY> | #define HVERSION Header Time-stamp: <14-OCT-2004 09:26:51.00 adk@MISSCONTRARY> | ||||||
|  |  | ||||||
| #ifndef ZOLOTAREV_INTERNAL | #ifndef ZOLOTAREV_INTERNAL | ||||||
| #ifndef ZOLO_PRECISION | #ifndef PRECISION | ||||||
| #define ZOLO_PRECISION double | #define PRECISION double | ||||||
| #endif | #endif | ||||||
| #define ZPRECISION ZOLO_PRECISION | #define ZPRECISION PRECISION | ||||||
| #define ZOLOTAREV_DATA zolotarev_data | #define ZOLOTAREV_DATA zolotarev_data | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
| @@ -77,8 +77,8 @@ typedef struct { | |||||||
|  * zolotarev_data structure. The arguments must satisfy the constraints that |  * zolotarev_data structure. The arguments must satisfy the constraints that | ||||||
|  * epsilon > 0, n > 0, and type = 0 or 1. */ |  * epsilon > 0, n > 0, and type = 0 or 1. */ | ||||||
|  |  | ||||||
| ZOLOTAREV_DATA* higham(ZOLO_PRECISION epsilon, int n) ; | ZOLOTAREV_DATA* higham(PRECISION epsilon, int n) ; | ||||||
| ZOLOTAREV_DATA* zolotarev(ZOLO_PRECISION epsilon, int n, int type); | ZOLOTAREV_DATA* zolotarev(PRECISION epsilon, int n, int type); | ||||||
| void zolotarev_free(zolotarev_data *zdata); | void zolotarev_free(zolotarev_data *zdata); | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
| @@ -86,4 +86,3 @@ void zolotarev_free(zolotarev_data *zdata); | |||||||
| NAMESPACE_END(Approx); | NAMESPACE_END(Approx); | ||||||
| NAMESPACE_END(Grid); | NAMESPACE_END(Grid); | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,34 +0,0 @@ | |||||||
| /************************************************************************************* |  | ||||||
|  |  | ||||||
|     Grid physics library, www.github.com/paboyle/Grid  |  | ||||||
|  |  | ||||||
|     Source file: BatchedBlas.h |  | ||||||
|  |  | ||||||
|     Copyright (C) 2023 |  | ||||||
|  |  | ||||||
| Author: Peter Boyle <pboyle@bnl.gov> |  | ||||||
|  |  | ||||||
|     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 */ |  | ||||||
| #include <Grid/GridCore.h> |  | ||||||
| #include <Grid/algorithms/blas/BatchedBlas.h> |  | ||||||
| NAMESPACE_BEGIN(Grid); |  | ||||||
| gridblasHandle_t GridBLAS::gridblasHandle; |  | ||||||
| int              GridBLAS::gridblasInit; |  | ||||||
| NAMESPACE_END(Grid); |  | ||||||
|  |  | ||||||
| @@ -1,895 +0,0 @@ | |||||||
| /************************************************************************************* |  | ||||||
|  |  | ||||||
|     Grid physics library, www.github.com/paboyle/Grid  |  | ||||||
|  |  | ||||||
|     Source file: BatchedBlas.h |  | ||||||
|  |  | ||||||
|     Copyright (C) 2023 |  | ||||||
|  |  | ||||||
| Author: Peter Boyle <pboyle@bnl.gov> |  | ||||||
|  |  | ||||||
|     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 */ |  | ||||||
| #pragma once |  | ||||||
|  |  | ||||||
| #ifdef GRID_HIP |  | ||||||
| #include <hipblas/hipblas.h> |  | ||||||
| #endif |  | ||||||
| #ifdef GRID_CUDA |  | ||||||
| #include <cublas_v2.h> |  | ||||||
| #endif |  | ||||||
| #ifdef GRID_SYCL |  | ||||||
| #include <oneapi/mkl.hpp> |  | ||||||
| #endif |  | ||||||
| #if 0 |  | ||||||
| #define GRID_ONE_MKL |  | ||||||
| #endif |  | ||||||
| #ifdef GRID_ONE_MKL |  | ||||||
| #include <oneapi/mkl.hpp> |  | ||||||
| #endif |  | ||||||
|  |  | ||||||
| ///////////////////////////////////////////////////////////////////////	   |  | ||||||
| // Need to rearrange lattice data to be in the right format for a |  | ||||||
| // batched multiply. Might as well make these static, dense packed |  | ||||||
| /////////////////////////////////////////////////////////////////////// |  | ||||||
| NAMESPACE_BEGIN(Grid); |  | ||||||
| #ifdef GRID_HIP |  | ||||||
|   typedef hipblasHandle_t gridblasHandle_t; |  | ||||||
| #endif |  | ||||||
| #ifdef GRID_CUDA |  | ||||||
|   typedef cublasHandle_t gridblasHandle_t; |  | ||||||
| #endif |  | ||||||
| #ifdef GRID_SYCL |  | ||||||
|   typedef cl::sycl::queue *gridblasHandle_t; |  | ||||||
| #endif |  | ||||||
| #ifdef GRID_ONE_MKL |  | ||||||
|   typedef cl::sycl::queue *gridblasHandle_t; |  | ||||||
| #endif |  | ||||||
| #if !defined(GRID_SYCL) && !defined(GRID_CUDA) && !defined(GRID_HIP) && !defined(GRID_ONE_MKL) |  | ||||||
|   typedef int32_t gridblasHandle_t; |  | ||||||
| #endif |  | ||||||
|  |  | ||||||
| enum GridBLASOperation_t { GridBLAS_OP_N, GridBLAS_OP_T, GridBLAS_OP_C } ; |  | ||||||
|  |  | ||||||
| class GridBLAS { |  | ||||||
| public: |  | ||||||
|  |  | ||||||
|    |  | ||||||
|   static gridblasHandle_t gridblasHandle; |  | ||||||
|   static int            gridblasInit; |  | ||||||
|    |  | ||||||
|   static void Init(void) |  | ||||||
|   { |  | ||||||
|     if ( ! gridblasInit ) { |  | ||||||
| #ifdef GRID_CUDA |  | ||||||
|       std::cout << "cublasCreate"<<std::endl; |  | ||||||
|       cublasCreate(&gridblasHandle); |  | ||||||
|       cublasSetPointerMode(gridblasHandle, CUBLAS_POINTER_MODE_DEVICE); |  | ||||||
| #endif |  | ||||||
| #ifdef GRID_HIP |  | ||||||
|       std::cout << "hipblasCreate"<<std::endl; |  | ||||||
|       hipblasCreate(&gridblasHandle); |  | ||||||
| #endif |  | ||||||
| #ifdef GRID_SYCL |  | ||||||
|       gridblasHandle = theGridAccelerator; |  | ||||||
| #endif |  | ||||||
| #ifdef GRID_ONE_MKL |  | ||||||
|       cl::sycl::gpu_selector selector; |  | ||||||
|       cl::sycl::device selectedDevice { selector }; |  | ||||||
|       cl::sycl::property_list q_prop{cl::sycl::property::queue::in_order()}; |  | ||||||
|       gridblasHandle =new sycl::queue (selectedDevice,q_prop); |  | ||||||
| #endif |  | ||||||
|       gridblasInit=1; |  | ||||||
|     } |  | ||||||
|   } |  | ||||||
|    |  | ||||||
|   // Force construct once |  | ||||||
|   GridBLAS() { Init(); }; |  | ||||||
|   ~GridBLAS() { }; |  | ||||||
|    |  | ||||||
|   ///////////////////////////////////////////////////////////////////////////////////// |  | ||||||
|   // BLAS GEMM conventions: |  | ||||||
|   ///////////////////////////////////////////////////////////////////////////////////// |  | ||||||
|   // - C = alpha A * B + beta C |  | ||||||
|   // Dimensions: |  | ||||||
|   // - C_m.n |  | ||||||
|   // - A_m.k |  | ||||||
|   // - B_k.n |  | ||||||
|   // - Flops = 8 M N K |  | ||||||
|   // - Bytes = 2*sizeof(word) * (MN+MK+KN) |  | ||||||
|   // M=60, N=12 |  | ||||||
|   // Flop/Byte = 8 . 60.60.12 / (60.12+60.60+60.12)/16 = 4 so expect about 4 TF/s on a GCD |  | ||||||
|   ///////////////////////////////////////////////////////////////////////////////////// |  | ||||||
|   void synchronise(void) |  | ||||||
|   { |  | ||||||
| #ifdef GRID_HIP |  | ||||||
|     auto err = hipDeviceSynchronize(); |  | ||||||
|     assert(err==hipSuccess); |  | ||||||
| #endif |  | ||||||
| #ifdef GRID_CUDA |  | ||||||
|     auto err = cudaDeviceSynchronize(); |  | ||||||
|     assert(err==cudaSuccess); |  | ||||||
| #endif |  | ||||||
| #ifdef GRID_SYCL |  | ||||||
|     accelerator_barrier(); |  | ||||||
| #endif |  | ||||||
| #ifdef GRID_ONE_MKL |  | ||||||
|     gridblasHandle->wait(); |  | ||||||
| #endif |  | ||||||
|   } |  | ||||||
|    |  | ||||||
|   void gemmBatched(int m,int n, int k, |  | ||||||
| 		   ComplexD alpha, |  | ||||||
| 		   deviceVector<ComplexD*> &Amk,  // pointer list to matrices |  | ||||||
| 		   deviceVector<ComplexD*> &Bkn, |  | ||||||
| 		   ComplexD beta, |  | ||||||
| 		   deviceVector<ComplexD*> &Cmn) |  | ||||||
|   { |  | ||||||
|     gemmBatched(GridBLAS_OP_N,GridBLAS_OP_N, |  | ||||||
| 		m,n,k, |  | ||||||
| 		alpha, |  | ||||||
| 		Amk, |  | ||||||
| 		Bkn, |  | ||||||
| 		beta, |  | ||||||
| 		Cmn); |  | ||||||
|   } |  | ||||||
|   void gemmBatched(int m,int n, int k, |  | ||||||
| 		   ComplexF alpha, |  | ||||||
| 		   deviceVector<ComplexF*> &Amk,  // pointer list to matrices |  | ||||||
| 		   deviceVector<ComplexF*> &Bkn, |  | ||||||
| 		   ComplexF beta, |  | ||||||
| 		   deviceVector<ComplexF*> &Cmn) |  | ||||||
|   { |  | ||||||
|     gemmBatched(GridBLAS_OP_N,GridBLAS_OP_N, |  | ||||||
| 		m,n,k, |  | ||||||
| 		alpha, |  | ||||||
| 		Amk, |  | ||||||
| 		Bkn, |  | ||||||
| 		beta, |  | ||||||
| 		Cmn); |  | ||||||
|   } |  | ||||||
|   void gemmBatched(int m,int n, int k, |  | ||||||
| 		   RealD alpha, |  | ||||||
| 		   deviceVector<RealD*> &Amk,  // pointer list to matrices |  | ||||||
| 		   deviceVector<RealD*> &Bkn, |  | ||||||
| 		   RealD beta, |  | ||||||
| 		   deviceVector<RealD*> &Cmn) |  | ||||||
|   { |  | ||||||
|     gemmBatched(GridBLAS_OP_N,GridBLAS_OP_N, |  | ||||||
| 		m,n,k, |  | ||||||
| 		alpha, |  | ||||||
| 		Amk, |  | ||||||
| 		Bkn, |  | ||||||
| 		beta, |  | ||||||
| 		Cmn); |  | ||||||
|   } |  | ||||||
|   void gemmBatched(int m,int n, int k, |  | ||||||
| 		   RealF alpha, |  | ||||||
| 		   deviceVector<RealF*> &Amk,  // pointer list to matrices |  | ||||||
| 		   deviceVector<RealF*> &Bkn, |  | ||||||
| 		   RealF beta, |  | ||||||
| 		   deviceVector<RealF*> &Cmn) |  | ||||||
|   { |  | ||||||
|     gemmBatched(GridBLAS_OP_N,GridBLAS_OP_N, |  | ||||||
| 		m,n,k, |  | ||||||
| 		alpha, |  | ||||||
| 		Amk, |  | ||||||
| 		Bkn, |  | ||||||
| 		beta, |  | ||||||
| 		Cmn); |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|   void gemmBatched(GridBLASOperation_t OpA, |  | ||||||
| 		   GridBLASOperation_t OpB, |  | ||||||
| 		   int m,int n, int k, |  | ||||||
| 		   ComplexD alpha, |  | ||||||
| 		   deviceVector<ComplexD*> &Amk,  // pointer list to matrices |  | ||||||
| 		   deviceVector<ComplexD*> &Bkn, |  | ||||||
| 		   ComplexD beta, |  | ||||||
| 		   deviceVector<ComplexD*> &Cmn) |  | ||||||
|   { |  | ||||||
|     RealD t2=usecond(); |  | ||||||
|     int32_t batchCount = Amk.size(); |  | ||||||
|     assert(Bkn.size()==batchCount); |  | ||||||
|     assert(Cmn.size()==batchCount); |  | ||||||
|  |  | ||||||
|     assert(OpA!=GridBLAS_OP_T); // Complex case expect no transpose |  | ||||||
|     assert(OpB!=GridBLAS_OP_T); |  | ||||||
|  |  | ||||||
|     int lda = m; // m x k column major |  | ||||||
|     int ldb = k; // k x n column major |  | ||||||
|     int ldc = m; // m x b column major |  | ||||||
|     if(OpA!=GridBLAS_OP_N) |  | ||||||
|       lda = k; |  | ||||||
|     if(OpB!=GridBLAS_OP_N) |  | ||||||
|       ldb = n; |  | ||||||
|      |  | ||||||
|     static deviceVector<ComplexD> alpha_p(1); |  | ||||||
|     static deviceVector<ComplexD> beta_p(1); |  | ||||||
|     // can prestore the 1 and the zero on device |  | ||||||
|     acceleratorCopyToDevice((void *)&alpha,(void *)&alpha_p[0],sizeof(ComplexD)); |  | ||||||
|     acceleratorCopyToDevice((void *)&beta ,(void *)&beta_p[0],sizeof(ComplexD)); |  | ||||||
|     RealD t0=usecond(); |  | ||||||
|     //    std::cout << "ZgemmBatched mnk  "<<m<<","<<n<<","<<k<<" count "<<batchCount<<std::endl; |  | ||||||
| #ifdef GRID_HIP |  | ||||||
|     hipblasOperation_t hOpA; |  | ||||||
|     hipblasOperation_t hOpB; |  | ||||||
|     if ( OpA == GridBLAS_OP_N ) hOpA = HIPBLAS_OP_N; |  | ||||||
|     if ( OpA == GridBLAS_OP_T ) hOpA = HIPBLAS_OP_T; |  | ||||||
|     if ( OpA == GridBLAS_OP_C ) hOpA = HIPBLAS_OP_C; |  | ||||||
|     if ( OpB == GridBLAS_OP_N ) hOpB = HIPBLAS_OP_N; |  | ||||||
|     if ( OpB == GridBLAS_OP_T ) hOpB = HIPBLAS_OP_T; |  | ||||||
|     if ( OpB == GridBLAS_OP_C ) hOpB = HIPBLAS_OP_C; |  | ||||||
|     auto err = hipblasZgemmBatched(gridblasHandle, |  | ||||||
| 				   hOpA, |  | ||||||
| 				   hOpB, |  | ||||||
| 				   m,n,k, |  | ||||||
| 				   (hipblasDoubleComplex *) &alpha_p[0], |  | ||||||
| 				   (hipblasDoubleComplex **)&Amk[0], lda, |  | ||||||
| 				   (hipblasDoubleComplex **)&Bkn[0], ldb, |  | ||||||
| 				   (hipblasDoubleComplex *) &beta_p[0], |  | ||||||
| 				   (hipblasDoubleComplex **)&Cmn[0], ldc, |  | ||||||
| 				   batchCount); |  | ||||||
|     //	 std::cout << " hipblas return code " <<(int)err<<std::endl; |  | ||||||
|     assert(err==HIPBLAS_STATUS_SUCCESS); |  | ||||||
| #endif |  | ||||||
| #ifdef GRID_CUDA |  | ||||||
|     cublasOperation_t hOpA; |  | ||||||
|     cublasOperation_t hOpB; |  | ||||||
|     if ( OpA == GridBLAS_OP_N ) hOpA = CUBLAS_OP_N; |  | ||||||
|     if ( OpA == GridBLAS_OP_T ) hOpA = CUBLAS_OP_T; |  | ||||||
|     if ( OpA == GridBLAS_OP_C ) hOpA = CUBLAS_OP_C; |  | ||||||
|     if ( OpB == GridBLAS_OP_N ) hOpB = CUBLAS_OP_N; |  | ||||||
|     if ( OpB == GridBLAS_OP_T ) hOpB = CUBLAS_OP_T; |  | ||||||
|     if ( OpB == GridBLAS_OP_C ) hOpB = CUBLAS_OP_C; |  | ||||||
|     auto err = cublasZgemmBatched(gridblasHandle, |  | ||||||
| 				  hOpA, |  | ||||||
| 				  hOpB, |  | ||||||
| 				  m,n,k, |  | ||||||
| 				  (cuDoubleComplex *) &alpha_p[0], |  | ||||||
| 				  (cuDoubleComplex **)&Amk[0], lda, |  | ||||||
| 				  (cuDoubleComplex **)&Bkn[0], ldb, |  | ||||||
| 				  (cuDoubleComplex *) &beta_p[0], |  | ||||||
| 				  (cuDoubleComplex **)&Cmn[0], ldc, |  | ||||||
| 				  batchCount); |  | ||||||
|     assert(err==CUBLAS_STATUS_SUCCESS); |  | ||||||
| #endif |  | ||||||
| #ifdef GRID_SYCL |  | ||||||
|       int64_t m64=m; |  | ||||||
|       int64_t n64=n; |  | ||||||
|       int64_t k64=k; |  | ||||||
|       int64_t lda64=lda; |  | ||||||
|       int64_t ldb64=ldb; |  | ||||||
|       int64_t ldc64=ldc; |  | ||||||
|       int64_t batchCount64=batchCount; |  | ||||||
|  |  | ||||||
|       oneapi::mkl::transpose iOpA; |  | ||||||
|       oneapi::mkl::transpose iOpB; |  | ||||||
|        |  | ||||||
|       if ( OpA == GridBLAS_OP_N ) iOpA = oneapi::mkl::transpose::N; |  | ||||||
|       if ( OpA == GridBLAS_OP_T ) iOpA = oneapi::mkl::transpose::T; |  | ||||||
|       if ( OpA == GridBLAS_OP_C ) iOpA = oneapi::mkl::transpose::C; |  | ||||||
|       if ( OpB == GridBLAS_OP_N ) iOpB = oneapi::mkl::transpose::N; |  | ||||||
|       if ( OpB == GridBLAS_OP_T ) iOpB = oneapi::mkl::transpose::T; |  | ||||||
|       if ( OpB == GridBLAS_OP_C ) iOpB = oneapi::mkl::transpose::C; |  | ||||||
|  |  | ||||||
|       oneapi::mkl::blas::column_major::gemm_batch(*gridblasHandle, |  | ||||||
| 						  &iOpA, |  | ||||||
| 						  &iOpB, |  | ||||||
| 						  &m64,&n64,&k64, |  | ||||||
| 						  (ComplexD *) &alpha_p[0], |  | ||||||
| 						  (const ComplexD **)&Amk[0], (const int64_t *)&lda64, |  | ||||||
| 						  (const ComplexD **)&Bkn[0], (const int64_t *)&ldb64, |  | ||||||
| 						  (ComplexD *) &beta_p[0], |  | ||||||
| 						  (ComplexD **)&Cmn[0], (const int64_t *)&ldc64, |  | ||||||
| 						  (int64_t)1,&batchCount64,std::vector<sycl::event>()); |  | ||||||
|       synchronise(); |  | ||||||
| #if 0 |  | ||||||
|       // This code was used to check the mat mul on Sunspot/OneMKL |  | ||||||
|       std::cerr << " Called SYCL batched ZGEMM OpA "<< OpA << " OpB "<<OpB <<std::endl; |  | ||||||
|       std::vector<ComplexD> A(m*k);  // pointer list to matrices |  | ||||||
|       std::vector<ComplexD> B(k*n); |  | ||||||
|       std::vector<ComplexD> C(m*n); |  | ||||||
|       //      int sda = lda*k; |  | ||||||
|       //      int sdb = ldb*k; |  | ||||||
|       //      int sdc = ldc*n; |  | ||||||
|       std::cerr << " Checking the GEMM results "<<std::endl; |  | ||||||
|       for (int p = 0; p < 1; ++p) { |  | ||||||
| 	ComplexD * Amk_p;  // pointer list to matrices |  | ||||||
| 	ComplexD * Bkn_p;  // pointer list to matrices |  | ||||||
| 	ComplexD * Cmn_p;  // pointer list to matrices |  | ||||||
| 	acceleratorCopyFromDevice((void *)&Amk[p],(void *)&Amk_p,sizeof(ComplexD*)); |  | ||||||
| 	acceleratorCopyFromDevice((void *)&Bkn[p],(void *)&Bkn_p,sizeof(ComplexD*)); |  | ||||||
| 	acceleratorCopyFromDevice((void *)&Cmn[p],(void *)&Cmn_p,sizeof(ComplexD*)); |  | ||||||
| 	std::cerr << " p " << p << " copied pointers "<<std::endl; |  | ||||||
| 	acceleratorCopyFromDevice((void *)Amk_p,(void *)&A[0],m*k*sizeof(ComplexD)); |  | ||||||
| 	acceleratorCopyFromDevice((void *)Bkn_p,(void *)&B[0],k*n*sizeof(ComplexD)); |  | ||||||
| 	acceleratorCopyFromDevice((void *)Cmn_p,(void *)&C[0],m*n*sizeof(ComplexD)); |  | ||||||
| 	std::cerr << " p " << p << " copied matrices "<<std::endl; |  | ||||||
| 	std::cerr << " C[0] "<<C[0]<<std::endl; |  | ||||||
| 	std::cerr << " A[0] "<<A[0]<<std::endl; |  | ||||||
| 	std::cerr << " B[0] "<<B[0]<<std::endl; |  | ||||||
| 	std::cerr << " m "<<m<<std::endl; |  | ||||||
| 	std::cerr << " n "<<n<<std::endl; |  | ||||||
| 	std::cerr << " k "<<k<<std::endl; |  | ||||||
| 	for (int mm = 0; mm < m; ++mm) { |  | ||||||
| 	  for (int nn = 0; nn < n; ++nn) { |  | ||||||
| 	    ComplexD c_mn(0.0); |  | ||||||
| 	    for (int kk = 0; kk < k; ++kk) { |  | ||||||
| 	      int idx_a, idx_b; |  | ||||||
| 	      //    int lda = m; // m x k column major |  | ||||||
| 	      //    int ldb = k; // k x n column major |  | ||||||
| 	      //    int ldc = m; // m x b column major |  | ||||||
| 	      if(OpA!=GridBLAS_OP_N) { |  | ||||||
| 		idx_a =kk + mm*lda; |  | ||||||
| 	      } else { |  | ||||||
| 		idx_a =mm + kk*lda; |  | ||||||
| 	      } |  | ||||||
| 	      if(OpB!=GridBLAS_OP_N) { |  | ||||||
| 		idx_b =nn + kk*ldb; |  | ||||||
| 	      } else { |  | ||||||
| 		idx_b =kk + nn*ldb; |  | ||||||
| 	      } |  | ||||||
| 	      //	      std::cerr << " idx_a "<<idx_a<<" idx_b "<<idx_b<<std::endl; |  | ||||||
|  |  | ||||||
| 	      ComplexD Ac = A[idx_a]; |  | ||||||
| 	      ComplexD Bc = B[idx_b]; |  | ||||||
| 	      if(OpA==GridBLAS_OP_C) Ac = conjugate(Ac); |  | ||||||
| 	      if(OpB==GridBLAS_OP_C) Bc = conjugate(Bc); |  | ||||||
| 	       |  | ||||||
| 	      c_mn += Ac*Bc; |  | ||||||
| 	    } |  | ||||||
| 	    std::cerr << " beta "<<beta<<" alpha "<<alpha<<" C_"<<mm<<","<<nn<<" "<<c_mn<<" "<<C[mm + nn*ldc]<<std::endl; |  | ||||||
| 	  } |  | ||||||
| 	} |  | ||||||
|       } |  | ||||||
| #endif |  | ||||||
| #endif |  | ||||||
| #if !defined(GRID_SYCL) && !defined(GRID_CUDA) && !defined(GRID_HIP) |  | ||||||
|     // Need a default/reference implementation; use Eigen |  | ||||||
|       if ( (OpA == GridBLAS_OP_N ) && (OpB == GridBLAS_OP_N) ) { |  | ||||||
| 	thread_for (p, batchCount, { |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXcd> eAmk(Amk[p],m,k); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXcd> eBkn(Bkn[p],k,n); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXcd> eCmn(Cmn[p],m,n); |  | ||||||
| 	  eCmn = beta * eCmn + alpha * eAmk * eBkn ; |  | ||||||
|         }); |  | ||||||
|       } else if ( (OpA == GridBLAS_OP_C ) && (OpB == GridBLAS_OP_N) ) { |  | ||||||
| 	thread_for (p, batchCount, { |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXcd> eAmk(Amk[p],k,m); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXcd> eBkn(Bkn[p],k,n); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXcd> eCmn(Cmn[p],m,n); |  | ||||||
| 	  eCmn = beta * eCmn + alpha * eAmk.adjoint() * eBkn ; |  | ||||||
| 	  }); |  | ||||||
|       } else if ( (OpA == GridBLAS_OP_N ) && (OpB == GridBLAS_OP_C) ) { |  | ||||||
| 	thread_for (p, batchCount, { |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXcd> eAmk(Amk[p],m,k); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXcd> eBkn(Bkn[p],n,k); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXcd> eCmn(Cmn[p],m,n); |  | ||||||
| 	  eCmn = beta * eCmn + alpha * eAmk * eBkn.adjoint() ; |  | ||||||
| 	  }); |  | ||||||
|       } else if ( (OpA == GridBLAS_OP_C ) && (OpB == GridBLAS_OP_C) ) { |  | ||||||
| 	thread_for (p, batchCount, { |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXcd> eAmk(Amk[p],k,m); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXcd> eBkn(Bkn[p],n,k); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXcd> eCmn(Cmn[p],m,n); |  | ||||||
| 	  eCmn = beta * eCmn + alpha * eAmk.adjoint() * eBkn.adjoint() ; |  | ||||||
| 	  } ); |  | ||||||
|       } else {  |  | ||||||
| 	assert(0); |  | ||||||
|       } |  | ||||||
| #endif |  | ||||||
|      RealD t1=usecond(); |  | ||||||
|      RealD flops = 8.0*m*n*k*batchCount; |  | ||||||
|      RealD bytes = 1.0*sizeof(ComplexD)*(m*k+k*n+m*n)*batchCount; |  | ||||||
|      //     std::cout <<GridLogMessage<< " batched Blas copy "<<(t0-t2)/1.e3 <<" ms "<<std::endl; |  | ||||||
|      //     std::cout <<GridLogMessage<< " batched Blas zGemm call "<<m<<","<<n<<","<<k<<" "<< flops/(t1-t0)/1.e3 <<" GF/s "<<(t1-t0)/1.e3<<" ms "<<std::endl; |  | ||||||
|      //     std::cout <<GridLogMessage<< " batched Blas zGemm call "<<m<<","<<n<<","<<k<<" "<< bytes/(t1-t0)/1.e3 <<" GB/s "<<(t1-t0)/1.e3<<" ms "<<std::endl; |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|   void gemmBatched(GridBLASOperation_t OpA, |  | ||||||
| 		   GridBLASOperation_t OpB, |  | ||||||
| 		   int m,int n, int k, |  | ||||||
| 		   ComplexF alpha, |  | ||||||
| 		   deviceVector<ComplexF*> &Amk,  // pointer list to matrices |  | ||||||
| 		   deviceVector<ComplexF*> &Bkn, |  | ||||||
| 		   ComplexF beta, |  | ||||||
| 		   deviceVector<ComplexF*> &Cmn) |  | ||||||
|   { |  | ||||||
|     RealD t2=usecond(); |  | ||||||
|     int32_t batchCount = Amk.size(); |  | ||||||
|  |  | ||||||
|     assert(OpA!=GridBLAS_OP_T); // Complex case expect no transpose |  | ||||||
|     assert(OpB!=GridBLAS_OP_T); |  | ||||||
|  |  | ||||||
|     int lda = m; // m x k column major |  | ||||||
|     int ldb = k; // k x n column major |  | ||||||
|     int ldc = m; // m x b column major |  | ||||||
|     if(OpA!=GridBLAS_OP_N) |  | ||||||
|       lda = k; |  | ||||||
|     if(OpB!=GridBLAS_OP_N) |  | ||||||
|       ldb = n; |  | ||||||
|     static deviceVector<ComplexF> alpha_p(1); |  | ||||||
|     static deviceVector<ComplexF> beta_p(1); |  | ||||||
|     // can prestore the 1 and the zero on device |  | ||||||
|     acceleratorCopyToDevice((void *)&alpha,(void *)&alpha_p[0],sizeof(ComplexF)); |  | ||||||
|     acceleratorCopyToDevice((void *)&beta ,(void *)&beta_p[0],sizeof(ComplexF)); |  | ||||||
|     RealD t0=usecond(); |  | ||||||
|  |  | ||||||
|     assert(Bkn.size()==batchCount); |  | ||||||
|     assert(Cmn.size()==batchCount); |  | ||||||
| #ifdef GRID_HIP |  | ||||||
|     hipblasOperation_t hOpA; |  | ||||||
|     hipblasOperation_t hOpB; |  | ||||||
|     if ( OpA == GridBLAS_OP_N ) hOpA = HIPBLAS_OP_N; |  | ||||||
|     if ( OpA == GridBLAS_OP_T ) hOpA = HIPBLAS_OP_T; |  | ||||||
|     if ( OpA == GridBLAS_OP_C ) hOpA = HIPBLAS_OP_C; |  | ||||||
|     if ( OpB == GridBLAS_OP_N ) hOpB = HIPBLAS_OP_N; |  | ||||||
|     if ( OpB == GridBLAS_OP_T ) hOpB = HIPBLAS_OP_T; |  | ||||||
|     if ( OpB == GridBLAS_OP_C ) hOpB = HIPBLAS_OP_C; |  | ||||||
|     auto err = hipblasCgemmBatched(gridblasHandle, |  | ||||||
| 				   hOpA, |  | ||||||
| 				   hOpB, |  | ||||||
| 				   m,n,k, |  | ||||||
| 				   (hipblasComplex *) &alpha_p[0], |  | ||||||
| 				   (hipblasComplex **)&Amk[0], lda, |  | ||||||
| 				   (hipblasComplex **)&Bkn[0], ldb, |  | ||||||
| 				   (hipblasComplex *) &beta_p[0], |  | ||||||
| 				   (hipblasComplex **)&Cmn[0], ldc, |  | ||||||
| 				   batchCount); |  | ||||||
|  |  | ||||||
|     assert(err==HIPBLAS_STATUS_SUCCESS); |  | ||||||
| #endif |  | ||||||
| #ifdef GRID_CUDA |  | ||||||
|     cublasOperation_t hOpA; |  | ||||||
|     cublasOperation_t hOpB; |  | ||||||
|     if ( OpA == GridBLAS_OP_N ) hOpA = CUBLAS_OP_N; |  | ||||||
|     if ( OpA == GridBLAS_OP_T ) hOpA = CUBLAS_OP_T; |  | ||||||
|     if ( OpA == GridBLAS_OP_C ) hOpA = CUBLAS_OP_C; |  | ||||||
|     if ( OpB == GridBLAS_OP_N ) hOpB = CUBLAS_OP_N; |  | ||||||
|     if ( OpB == GridBLAS_OP_T ) hOpB = CUBLAS_OP_T; |  | ||||||
|     if ( OpB == GridBLAS_OP_C ) hOpB = CUBLAS_OP_C; |  | ||||||
|     auto err = cublasCgemmBatched(gridblasHandle, |  | ||||||
| 				  hOpA, |  | ||||||
| 				  hOpB, |  | ||||||
| 				  m,n,k, |  | ||||||
| 				  (cuComplex *) &alpha_p[0], |  | ||||||
| 				  (cuComplex **)&Amk[0], lda, |  | ||||||
| 				  (cuComplex **)&Bkn[0], ldb, |  | ||||||
| 				  (cuComplex *) &beta_p[0], |  | ||||||
| 				  (cuComplex **)&Cmn[0], ldc, |  | ||||||
| 				  batchCount); |  | ||||||
|     assert(err==CUBLAS_STATUS_SUCCESS); |  | ||||||
| #endif |  | ||||||
| #ifdef GRID_SYCL |  | ||||||
|       int64_t m64=m; |  | ||||||
|       int64_t n64=n; |  | ||||||
|       int64_t k64=k; |  | ||||||
|       int64_t lda64=lda; |  | ||||||
|       int64_t ldb64=ldb; |  | ||||||
|       int64_t ldc64=ldc; |  | ||||||
|       int64_t batchCount64=batchCount; |  | ||||||
|  |  | ||||||
|       oneapi::mkl::transpose iOpA; |  | ||||||
|       oneapi::mkl::transpose iOpB; |  | ||||||
|        |  | ||||||
|       if ( OpA == GridBLAS_OP_N ) iOpA = oneapi::mkl::transpose::N; |  | ||||||
|       if ( OpA == GridBLAS_OP_T ) iOpA = oneapi::mkl::transpose::T; |  | ||||||
|       if ( OpA == GridBLAS_OP_C ) iOpA = oneapi::mkl::transpose::C; |  | ||||||
|       if ( OpB == GridBLAS_OP_N ) iOpB = oneapi::mkl::transpose::N; |  | ||||||
|       if ( OpB == GridBLAS_OP_T ) iOpB = oneapi::mkl::transpose::T; |  | ||||||
|       if ( OpB == GridBLAS_OP_C ) iOpB = oneapi::mkl::transpose::C; |  | ||||||
|  |  | ||||||
|       oneapi::mkl::blas::column_major::gemm_batch(*gridblasHandle, |  | ||||||
| 						  &iOpA, |  | ||||||
| 						  &iOpB, |  | ||||||
| 						  &m64,&n64,&k64, |  | ||||||
| 						  (ComplexF *) &alpha_p[0], |  | ||||||
| 						  (const ComplexF **)&Amk[0], (const int64_t *)&lda64, |  | ||||||
| 						  (const ComplexF **)&Bkn[0], (const int64_t *)&ldb64, |  | ||||||
| 						  (ComplexF *) &beta_p[0], |  | ||||||
| 						  (ComplexF **)&Cmn[0], (const int64_t *)&ldc64, |  | ||||||
| 						  (int64_t)1,&batchCount64,std::vector<sycl::event>()); |  | ||||||
|     synchronise(); |  | ||||||
| #endif |  | ||||||
| #if !defined(GRID_SYCL) && !defined(GRID_CUDA) && !defined(GRID_HIP) |  | ||||||
|     // Need a default/reference implementation; use Eigen |  | ||||||
|       if ( (OpA == GridBLAS_OP_N ) && (OpB == GridBLAS_OP_N) ) { |  | ||||||
| 	thread_for (p, batchCount, { |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXcf> eAmk(Amk[p],m,k); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXcf> eBkn(Bkn[p],k,n); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXcf> eCmn(Cmn[p],m,n); |  | ||||||
| 	  eCmn = beta * eCmn + alpha * eAmk * eBkn ; |  | ||||||
| 	  }); |  | ||||||
|       } else if ( (OpA == GridBLAS_OP_C ) && (OpB == GridBLAS_OP_N) ) { |  | ||||||
| 	thread_for (p, batchCount, { |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXcf> eAmk(Amk[p],k,m); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXcf> eBkn(Bkn[p],k,n); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXcf> eCmn(Cmn[p],m,n); |  | ||||||
| 	  eCmn = beta * eCmn + alpha * eAmk.adjoint() * eBkn ; |  | ||||||
| 	  }); |  | ||||||
|       } else if ( (OpA == GridBLAS_OP_N ) && (OpB == GridBLAS_OP_C) ) { |  | ||||||
| 	thread_for (p, batchCount, { |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXcf> eAmk(Amk[p],m,k); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXcf> eBkn(Bkn[p],n,k); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXcf> eCmn(Cmn[p],m,n); |  | ||||||
| 	  eCmn = beta * eCmn + alpha * eAmk * eBkn.adjoint() ; |  | ||||||
| 	  }); |  | ||||||
|       } else if ( (OpA == GridBLAS_OP_C ) && (OpB == GridBLAS_OP_C) ) { |  | ||||||
| 	thread_for (p, batchCount, { |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXcf> eAmk(Amk[p],k,m); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXcf> eBkn(Bkn[p],n,k); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXcf> eCmn(Cmn[p],m,n); |  | ||||||
| 	  eCmn = beta * eCmn + alpha * eAmk.adjoint() * eBkn.adjoint() ; |  | ||||||
| 	  } ); |  | ||||||
|       } else {  |  | ||||||
| 	assert(0); |  | ||||||
|       } |  | ||||||
| #endif |  | ||||||
|      RealD t1=usecond(); |  | ||||||
|      RealD flops = 8.0*m*n*k*batchCount; |  | ||||||
|      RealD bytes = 1.0*sizeof(ComplexF)*(m*k+k*n+m*n)*batchCount; |  | ||||||
|   } |  | ||||||
|    |  | ||||||
|   /////////////////////////////////////////////////////////////////////////// |  | ||||||
|   // Single precision real GEMM |  | ||||||
|   /////////////////////////////////////////////////////////////////////////// |  | ||||||
|  |  | ||||||
|   void gemmBatched(GridBLASOperation_t OpA, |  | ||||||
| 		   GridBLASOperation_t OpB, |  | ||||||
| 		   int m,int n, int k, |  | ||||||
| 		   RealF alpha, |  | ||||||
| 		   deviceVector<RealF*> &Amk,  // pointer list to matrices |  | ||||||
| 		   deviceVector<RealF*> &Bkn, |  | ||||||
| 		   RealF beta, |  | ||||||
| 		   deviceVector<RealF*> &Cmn) |  | ||||||
|   { |  | ||||||
|     RealD t2=usecond(); |  | ||||||
|     int32_t batchCount = Amk.size(); |  | ||||||
|  |  | ||||||
|     assert(OpA!=GridBLAS_OP_C); // Real case no conjugate |  | ||||||
|     assert(OpB!=GridBLAS_OP_C); |  | ||||||
|  |  | ||||||
|     int lda = m; // m x k column major |  | ||||||
|     int ldb = k; // k x n column major |  | ||||||
|     int ldc = m; // m x b column major |  | ||||||
|     if(OpA!=GridBLAS_OP_N) |  | ||||||
|       lda = k; |  | ||||||
|     if(OpB!=GridBLAS_OP_N) |  | ||||||
|       ldb = n; |  | ||||||
|     static deviceVector<RealF> alpha_p(1); |  | ||||||
|     static deviceVector<RealF> beta_p(1); |  | ||||||
|     // can prestore the 1 and the zero on device |  | ||||||
|     acceleratorCopyToDevice((void *)&alpha,(void *)&alpha_p[0],sizeof(RealF)); |  | ||||||
|     acceleratorCopyToDevice((void *)&beta ,(void *)&beta_p[0],sizeof(RealF)); |  | ||||||
|     RealD t0=usecond(); |  | ||||||
|  |  | ||||||
|     assert(Bkn.size()==batchCount); |  | ||||||
|     assert(Cmn.size()==batchCount); |  | ||||||
| #ifdef GRID_HIP |  | ||||||
|     hipblasOperation_t hOpA; |  | ||||||
|     hipblasOperation_t hOpB; |  | ||||||
|     if ( OpA == GridBLAS_OP_N ) hOpA = HIPBLAS_OP_N; |  | ||||||
|     if ( OpA == GridBLAS_OP_T ) hOpA = HIPBLAS_OP_T; |  | ||||||
|     if ( OpA == GridBLAS_OP_C ) hOpA = HIPBLAS_OP_C; |  | ||||||
|     if ( OpB == GridBLAS_OP_N ) hOpB = HIPBLAS_OP_N; |  | ||||||
|     if ( OpB == GridBLAS_OP_T ) hOpB = HIPBLAS_OP_T; |  | ||||||
|     if ( OpB == GridBLAS_OP_C ) hOpB = HIPBLAS_OP_C; |  | ||||||
|     auto err = hipblasSgemmBatched(gridblasHandle, |  | ||||||
| 				   hOpA, |  | ||||||
| 				   hOpB, |  | ||||||
| 				   m,n,k, |  | ||||||
| 				   (float *) &alpha_p[0], |  | ||||||
| 				   (float **)&Amk[0], lda, |  | ||||||
| 				   (float **)&Bkn[0], ldb, |  | ||||||
| 				   (float *) &beta_p[0], |  | ||||||
| 				   (float **)&Cmn[0], ldc, |  | ||||||
| 				   batchCount); |  | ||||||
|     assert(err==HIPBLAS_STATUS_SUCCESS); |  | ||||||
| #endif |  | ||||||
| #ifdef GRID_CUDA |  | ||||||
|     cublasOperation_t hOpA; |  | ||||||
|     cublasOperation_t hOpB; |  | ||||||
|     if ( OpA == GridBLAS_OP_N ) hOpA = CUBLAS_OP_N; |  | ||||||
|     if ( OpA == GridBLAS_OP_T ) hOpA = CUBLAS_OP_T; |  | ||||||
|     if ( OpA == GridBLAS_OP_C ) hOpA = CUBLAS_OP_C; |  | ||||||
|     if ( OpB == GridBLAS_OP_N ) hOpB = CUBLAS_OP_N; |  | ||||||
|     if ( OpB == GridBLAS_OP_T ) hOpB = CUBLAS_OP_T; |  | ||||||
|     if ( OpB == GridBLAS_OP_C ) hOpB = CUBLAS_OP_C; |  | ||||||
|     auto err = cublasSgemmBatched(gridblasHandle, |  | ||||||
| 				  hOpA, |  | ||||||
| 				  hOpB, |  | ||||||
| 				  m,n,k, |  | ||||||
| 				  (float *) &alpha_p[0], |  | ||||||
| 				  (float **)&Amk[0], lda, |  | ||||||
| 				  (float **)&Bkn[0], ldb, |  | ||||||
| 				  (float *) &beta_p[0], |  | ||||||
| 				  (float **)&Cmn[0], ldc, |  | ||||||
| 				  batchCount); |  | ||||||
|     assert(err==CUBLAS_STATUS_SUCCESS); |  | ||||||
| #endif |  | ||||||
| #ifdef GRID_SYCL |  | ||||||
|       int64_t m64=m; |  | ||||||
|       int64_t n64=n; |  | ||||||
|       int64_t k64=k; |  | ||||||
|       int64_t lda64=lda; |  | ||||||
|       int64_t ldb64=ldb; |  | ||||||
|       int64_t ldc64=ldc; |  | ||||||
|       int64_t batchCount64=batchCount; |  | ||||||
|  |  | ||||||
|       oneapi::mkl::transpose iOpA; |  | ||||||
|       oneapi::mkl::transpose iOpB; |  | ||||||
|        |  | ||||||
|       if ( OpA == GridBLAS_OP_N ) iOpA = oneapi::mkl::transpose::N; |  | ||||||
|       if ( OpA == GridBLAS_OP_T ) iOpA = oneapi::mkl::transpose::T; |  | ||||||
|       if ( OpA == GridBLAS_OP_C ) iOpA = oneapi::mkl::transpose::C; |  | ||||||
|       if ( OpB == GridBLAS_OP_N ) iOpB = oneapi::mkl::transpose::N; |  | ||||||
|       if ( OpB == GridBLAS_OP_T ) iOpB = oneapi::mkl::transpose::T; |  | ||||||
|       if ( OpB == GridBLAS_OP_C ) iOpB = oneapi::mkl::transpose::C; |  | ||||||
|  |  | ||||||
|       oneapi::mkl::blas::column_major::gemm_batch(*gridblasHandle, |  | ||||||
| 						  &iOpA, |  | ||||||
| 						  &iOpB, |  | ||||||
| 						  &m64,&n64,&k64, |  | ||||||
| 						  (float *) &alpha_p[0], |  | ||||||
| 						  (const float **)&Amk[0], (const int64_t *)&lda64, |  | ||||||
| 						  (const float **)&Bkn[0], (const int64_t *)&ldb64, |  | ||||||
| 						  (float *) &beta_p[0], |  | ||||||
| 						  (float **)&Cmn[0], (const int64_t *)&ldc64, |  | ||||||
| 						  (int64_t)1,&batchCount64,std::vector<sycl::event>()); |  | ||||||
|       synchronise(); |  | ||||||
| #endif |  | ||||||
| #if !defined(GRID_SYCL) && !defined(GRID_CUDA) && !defined(GRID_HIP) |  | ||||||
|     // Need a default/reference implementation; use Eigen |  | ||||||
|       if ( (OpA == GridBLAS_OP_N ) && (OpB == GridBLAS_OP_N) ) { |  | ||||||
| 	thread_for (p, batchCount, { |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXf> eAmk(Amk[p],m,k); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXf> eBkn(Bkn[p],k,n); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXf> eCmn(Cmn[p],m,n); |  | ||||||
| 	  eCmn = beta * eCmn + alpha * eAmk * eBkn ; |  | ||||||
| 	  }); |  | ||||||
|       } else if ( (OpA == GridBLAS_OP_T ) && (OpB == GridBLAS_OP_N) ) { |  | ||||||
| 	thread_for (p, batchCount, { |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXf> eAmk(Amk[p],k,m); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXf> eBkn(Bkn[p],k,n); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXf> eCmn(Cmn[p],m,n); |  | ||||||
| 	  eCmn = beta * eCmn + alpha * eAmk.transpose() * eBkn ; |  | ||||||
| 	  }); |  | ||||||
|       } else if ( (OpA == GridBLAS_OP_N ) && (OpB == GridBLAS_OP_T) ) { |  | ||||||
| 	thread_for (p, batchCount, { |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXf> eAmk(Amk[p],m,k); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXf> eBkn(Bkn[p],n,k); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXf> eCmn(Cmn[p],m,n); |  | ||||||
| 	  eCmn = beta * eCmn + alpha * eAmk * eBkn.transpose() ; |  | ||||||
| 	  }); |  | ||||||
|       } else if ( (OpA == GridBLAS_OP_T ) && (OpB == GridBLAS_OP_T) ) { |  | ||||||
| 	thread_for (p, batchCount, { |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXf> eAmk(Amk[p],k,m); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXf> eBkn(Bkn[p],n,k); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXf> eCmn(Cmn[p],m,n); |  | ||||||
| 	  eCmn = beta * eCmn + alpha * eAmk.transpose() * eBkn.transpose() ; |  | ||||||
| 	  } ); |  | ||||||
|       } else {  |  | ||||||
| 	assert(0); |  | ||||||
|       } |  | ||||||
| #endif |  | ||||||
|      RealD t1=usecond(); |  | ||||||
|      RealD flops = 2.0*m*n*k*batchCount; |  | ||||||
|      RealD bytes = 1.0*sizeof(RealF)*(m*k+k*n+m*n)*batchCount; |  | ||||||
|   } |  | ||||||
|    |  | ||||||
|    |  | ||||||
|   /////////////////////////////////////////////////////////////////////////// |  | ||||||
|   // Double precision real GEMM |  | ||||||
|   /////////////////////////////////////////////////////////////////////////// |  | ||||||
|   void gemmBatched(GridBLASOperation_t OpA, |  | ||||||
| 		   GridBLASOperation_t OpB, |  | ||||||
| 		   int m,int n, int k, |  | ||||||
| 		   RealD alpha, |  | ||||||
| 		   deviceVector<RealD*> &Amk,  // pointer list to matrices |  | ||||||
| 		   deviceVector<RealD*> &Bkn, |  | ||||||
| 		   RealD beta, |  | ||||||
| 		   deviceVector<RealD*> &Cmn) |  | ||||||
|   { |  | ||||||
|     RealD t2=usecond(); |  | ||||||
|     int32_t batchCount = Amk.size(); |  | ||||||
|  |  | ||||||
|     assert(OpA!=GridBLAS_OP_C); // Real case no conjugate |  | ||||||
|     assert(OpB!=GridBLAS_OP_C); |  | ||||||
|  |  | ||||||
|     int lda = m; // m x k column major |  | ||||||
|     int ldb = k; // k x n column major |  | ||||||
|     int ldc = m; // m x b column major |  | ||||||
|     if(OpA!=GridBLAS_OP_N) |  | ||||||
|       lda = k; |  | ||||||
|     if(OpB!=GridBLAS_OP_N) |  | ||||||
|       ldb = n; |  | ||||||
|      |  | ||||||
|     static deviceVector<RealD> alpha_p(1); |  | ||||||
|     static deviceVector<RealD> beta_p(1); |  | ||||||
|     // can prestore the 1 and the zero on device |  | ||||||
|     acceleratorCopyToDevice((void *)&alpha,(void *)&alpha_p[0],sizeof(RealD)); |  | ||||||
|     acceleratorCopyToDevice((void *)&beta ,(void *)&beta_p[0],sizeof(RealD)); |  | ||||||
|     RealD t0=usecond(); |  | ||||||
|  |  | ||||||
|     assert(Bkn.size()==batchCount); |  | ||||||
|     assert(Cmn.size()==batchCount); |  | ||||||
| #ifdef GRID_HIP |  | ||||||
|     hipblasOperation_t hOpA; |  | ||||||
|     hipblasOperation_t hOpB; |  | ||||||
|     if ( OpA == GridBLAS_OP_N ) hOpA = HIPBLAS_OP_N; |  | ||||||
|     if ( OpA == GridBLAS_OP_T ) hOpA = HIPBLAS_OP_T; |  | ||||||
|     if ( OpA == GridBLAS_OP_C ) hOpA = HIPBLAS_OP_C; |  | ||||||
|     if ( OpB == GridBLAS_OP_N ) hOpB = HIPBLAS_OP_N; |  | ||||||
|     if ( OpB == GridBLAS_OP_T ) hOpB = HIPBLAS_OP_T; |  | ||||||
|     if ( OpB == GridBLAS_OP_C ) hOpB = HIPBLAS_OP_C; |  | ||||||
|     auto err = hipblasDgemmBatched(gridblasHandle, |  | ||||||
| 				   HIPBLAS_OP_N, |  | ||||||
| 				   HIPBLAS_OP_N, |  | ||||||
| 				   m,n,k, |  | ||||||
| 				   (double *) &alpha_p[0], |  | ||||||
| 				   (double **)&Amk[0], lda, |  | ||||||
| 				   (double **)&Bkn[0], ldb, |  | ||||||
| 				   (double *) &beta_p[0], |  | ||||||
| 				   (double **)&Cmn[0], ldc, |  | ||||||
| 				   batchCount); |  | ||||||
|     assert(err==HIPBLAS_STATUS_SUCCESS); |  | ||||||
| #endif |  | ||||||
| #ifdef GRID_CUDA |  | ||||||
|     cublasOperation_t hOpA; |  | ||||||
|     cublasOperation_t hOpB; |  | ||||||
|     if ( OpA == GridBLAS_OP_N ) hOpA = CUBLAS_OP_N; |  | ||||||
|     if ( OpA == GridBLAS_OP_T ) hOpA = CUBLAS_OP_T; |  | ||||||
|     if ( OpA == GridBLAS_OP_C ) hOpA = CUBLAS_OP_C; |  | ||||||
|     if ( OpB == GridBLAS_OP_N ) hOpB = CUBLAS_OP_N; |  | ||||||
|     if ( OpB == GridBLAS_OP_T ) hOpB = CUBLAS_OP_T; |  | ||||||
|     if ( OpB == GridBLAS_OP_C ) hOpB = CUBLAS_OP_C; |  | ||||||
|     auto err = cublasDgemmBatched(gridblasHandle, |  | ||||||
| 				  hOpA, |  | ||||||
| 				  hOpB, |  | ||||||
| 				  m,n,k, |  | ||||||
| 				  (double *) &alpha_p[0], |  | ||||||
| 				  (double **)&Amk[0], lda, |  | ||||||
| 				  (double **)&Bkn[0], ldb, |  | ||||||
| 				  (double *) &beta_p[0], |  | ||||||
| 				  (double **)&Cmn[0], ldc, |  | ||||||
| 				  batchCount); |  | ||||||
|     assert(err==CUBLAS_STATUS_SUCCESS); |  | ||||||
| #endif |  | ||||||
| #ifdef GRID_SYCL |  | ||||||
|       int64_t m64=m; |  | ||||||
|       int64_t n64=n; |  | ||||||
|       int64_t k64=k; |  | ||||||
|       int64_t lda64=lda; |  | ||||||
|       int64_t ldb64=ldb; |  | ||||||
|       int64_t ldc64=ldc; |  | ||||||
|       int64_t batchCount64=batchCount; |  | ||||||
|  |  | ||||||
|       oneapi::mkl::transpose iOpA; |  | ||||||
|       oneapi::mkl::transpose iOpB; |  | ||||||
|        |  | ||||||
|       if ( OpA == GridBLAS_OP_N ) iOpA = oneapi::mkl::transpose::N; |  | ||||||
|       if ( OpA == GridBLAS_OP_T ) iOpA = oneapi::mkl::transpose::T; |  | ||||||
|       if ( OpA == GridBLAS_OP_C ) iOpA = oneapi::mkl::transpose::C; |  | ||||||
|       if ( OpB == GridBLAS_OP_N ) iOpB = oneapi::mkl::transpose::N; |  | ||||||
|       if ( OpB == GridBLAS_OP_T ) iOpB = oneapi::mkl::transpose::T; |  | ||||||
|       if ( OpB == GridBLAS_OP_C ) iOpB = oneapi::mkl::transpose::C; |  | ||||||
|  |  | ||||||
|       oneapi::mkl::blas::column_major::gemm_batch(*gridblasHandle, |  | ||||||
| 						  &iOpA, |  | ||||||
| 						  &iOpB, |  | ||||||
| 						  &m64,&n64,&k64, |  | ||||||
| 						  (double *) &alpha_p[0], |  | ||||||
| 						  (const double **)&Amk[0], (const int64_t *)&lda64, |  | ||||||
| 						  (const double **)&Bkn[0], (const int64_t *)&ldb64, |  | ||||||
| 						  (double *) &beta_p[0], |  | ||||||
| 						  (double **)&Cmn[0], (const int64_t *)&ldc64, |  | ||||||
| 						  (int64_t)1,&batchCount64,std::vector<sycl::event>()); |  | ||||||
|       synchronise(); |  | ||||||
| #endif |  | ||||||
| #if !defined(GRID_SYCL) && !defined(GRID_CUDA) && !defined(GRID_HIP) |  | ||||||
|     // Need a default/reference implementation; use Eigen |  | ||||||
|       if ( (OpA == GridBLAS_OP_N ) && (OpB == GridBLAS_OP_N) ) { |  | ||||||
| 	thread_for (p, batchCount, { |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXd> eAmk(Amk[p],m,k); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXd> eBkn(Bkn[p],k,n); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXd> eCmn(Cmn[p],m,n); |  | ||||||
| 	  eCmn = beta * eCmn + alpha * eAmk * eBkn ; |  | ||||||
| 	  }); |  | ||||||
|       } else if ( (OpA == GridBLAS_OP_T ) && (OpB == GridBLAS_OP_N) ) { |  | ||||||
| 	thread_for (p, batchCount, { |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXd> eAmk(Amk[p],k,m); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXd> eBkn(Bkn[p],k,n); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXd> eCmn(Cmn[p],m,n); |  | ||||||
| 	  eCmn = beta * eCmn + alpha * eAmk.transpose() * eBkn ; |  | ||||||
| 	  }); |  | ||||||
|       } else if ( (OpA == GridBLAS_OP_N ) && (OpB == GridBLAS_OP_T) ) { |  | ||||||
| 	thread_for (p, batchCount, { |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXd> eAmk(Amk[p],m,k); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXd> eBkn(Bkn[p],n,k); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXd> eCmn(Cmn[p],m,n); |  | ||||||
| 	  eCmn = beta * eCmn + alpha * eAmk * eBkn.transpose() ; |  | ||||||
| 	  }); |  | ||||||
|       } else if ( (OpA == GridBLAS_OP_T ) && (OpB == GridBLAS_OP_T) ) { |  | ||||||
| 	thread_for (p, batchCount, { |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXd> eAmk(Amk[p],k,m); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXd> eBkn(Bkn[p],n,k); |  | ||||||
| 	  Eigen::Map<Eigen::MatrixXd> eCmn(Cmn[p],m,n); |  | ||||||
| 	  eCmn = beta * eCmn + alpha * eAmk.transpose() * eBkn.transpose() ; |  | ||||||
| 	  }); |  | ||||||
|       } else {  |  | ||||||
| 	assert(0); |  | ||||||
|       } |  | ||||||
| #endif |  | ||||||
|      RealD t1=usecond(); |  | ||||||
|      RealD flops = 2.0*m*n*k*batchCount; |  | ||||||
|      RealD bytes = 1.0*sizeof(RealD)*(m*k+k*n+m*n)*batchCount; |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|   template<class CComplex> |  | ||||||
|   double benchmark(int M, int N, int K, int BATCH) |  | ||||||
|   { |  | ||||||
|     int32_t N_A = M*K*BATCH; |  | ||||||
|     int32_t N_B = K*N*BATCH; |  | ||||||
|     int32_t N_C = M*N*BATCH; |  | ||||||
|     deviceVector<CComplex> A(N_A); acceleratorMemSet(&A[0],0,N_A*sizeof(CComplex)); |  | ||||||
|     deviceVector<CComplex> B(N_B); acceleratorMemSet(&B[0],0,N_B*sizeof(CComplex)); |  | ||||||
|     deviceVector<CComplex> C(N_C); acceleratorMemSet(&C[0],0,N_C*sizeof(CComplex)); |  | ||||||
|     CComplex alpha(1.0); |  | ||||||
|     CComplex beta (1.0); |  | ||||||
|     RealD flops = 8.0*M*N*K*BATCH; |  | ||||||
|     int ncall=1000; |  | ||||||
|     deviceVector<CComplex *> As(BATCH); |  | ||||||
|     deviceVector<CComplex *> Bs(BATCH); |  | ||||||
|     deviceVector<CComplex *> Cs(BATCH); |  | ||||||
|     for(int b = 0 ; b < BATCH;b++) { |  | ||||||
|       CComplex *ptr; |  | ||||||
|       ptr = &A[b*M*K];      acceleratorPut(As[b],ptr); |  | ||||||
|       ptr = &B[b*K*N];      acceleratorPut(Bs[b],ptr); |  | ||||||
|       ptr = &C[b*M*N];      acceleratorPut(Cs[b],ptr); |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     // Warm up call |  | ||||||
|     gemmBatched(M,N,K, |  | ||||||
| 		alpha, |  | ||||||
| 		As, // m x k  |  | ||||||
| 		Bs, // k x n |  | ||||||
| 		beta,  |  | ||||||
| 		Cs); |  | ||||||
|     synchronise(); |  | ||||||
|  |  | ||||||
|     RealD t0 = usecond(); |  | ||||||
|     for(int i=0;i<ncall;i++){ |  | ||||||
|       gemmBatched(M,N,K, |  | ||||||
| 		  alpha, |  | ||||||
| 		  As, // m x k  |  | ||||||
| 		  Bs, // k x n |  | ||||||
| 		  beta,  |  | ||||||
| 		  Cs); |  | ||||||
|       synchronise(); |  | ||||||
|     } |  | ||||||
|     RealD t1 = usecond(); |  | ||||||
|     RealD bytes = 1.0*sizeof(CComplex)*(M*N*2+N*K+M*K)*BATCH; |  | ||||||
|     flops = 8.0*M*N*K*BATCH*ncall; |  | ||||||
|     flops = flops/(t1-t0)/1.e3; |  | ||||||
|     return flops; // Returns gigaflops |  | ||||||
|   } |  | ||||||
|  |  | ||||||
| }; |  | ||||||
|  |  | ||||||
| NAMESPACE_END(Grid); |  | ||||||
| @@ -1,513 +0,0 @@ | |||||||
| /************************************************************************************* |  | ||||||
|  |  | ||||||
|     Grid physics library, www.github.com/paboyle/Grid  |  | ||||||
|  |  | ||||||
|     Source file: MultiRHSDeflation.h |  | ||||||
|  |  | ||||||
|     Copyright (C) 2023 |  | ||||||
|  |  | ||||||
| Author: Peter Boyle <pboyle@bnl.gov> |  | ||||||
|  |  | ||||||
|     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 */ |  | ||||||
| #pragma once |  | ||||||
|  |  | ||||||
| NAMESPACE_BEGIN(Grid); |  | ||||||
|  |  | ||||||
|  |  | ||||||
| /*  |  | ||||||
|    MultiRHS block projection |  | ||||||
|  |  | ||||||
|    Import basis -> nblock x nbasis x  (block x internal)  |  | ||||||
|    Import vector of fine lattice objects -> nblock x nrhs x (block x internal)  |  | ||||||
|  |  | ||||||
|    => coarse_(nrhs x nbasis )^block = via batched GEMM |  | ||||||
|  |  | ||||||
| //template<class vobj,class CComplex,int nbasis,class VLattice> |  | ||||||
| //inline void blockProject(Lattice<iVector<CComplex,nbasis > > &coarseData, |  | ||||||
| //			   const VLattice &fineData, |  | ||||||
| //			   const VLattice &Basis) |  | ||||||
| */ |  | ||||||
|  |  | ||||||
| template<class Field> |  | ||||||
| class MultiRHSBlockProject |  | ||||||
| { |  | ||||||
| public: |  | ||||||
|  |  | ||||||
|   typedef typename Field::scalar_type   scalar; |  | ||||||
|   typedef typename Field::scalar_object scalar_object; |  | ||||||
|   typedef Field Fermion; |  | ||||||
|  |  | ||||||
|   int nbasis; |  | ||||||
|   GridBase *coarse_grid; |  | ||||||
|   GridBase *fine_grid; |  | ||||||
|   uint64_t block_vol; |  | ||||||
|   uint64_t fine_vol; |  | ||||||
|   uint64_t coarse_vol; |  | ||||||
|   uint64_t words; |  | ||||||
|  |  | ||||||
|   // Row major layout "C" order: |  | ||||||
|   // BLAS_V[coarse_vol][nbasis][block_vol][words] |  | ||||||
|   // BLAS_F[coarse_vol][nrhs][block_vol][words] |  | ||||||
|   // BLAS_C[coarse_vol][nrhs][nbasis] |  | ||||||
|   /* |  | ||||||
|    * in Fortran column major notation (cuBlas order) |  | ||||||
|    * |  | ||||||
|    * Vxb = [v1(x)][..][vn(x)] ... x coarse vol |  | ||||||
|    * |  | ||||||
|    * Fxr = [r1(x)][..][rm(x)] ... x coarse vol |  | ||||||
|    * |  | ||||||
|    * Block project: |  | ||||||
|    * C_br = V^dag F x coarse vol |  | ||||||
|    * |  | ||||||
|    * Block promote: |  | ||||||
|    * F_xr = Vxb Cbr x coarse_vol |  | ||||||
|    */   |  | ||||||
|   deviceVector<scalar> BLAS_V;      // words * block_vol * nbasis x coarse_vol  |  | ||||||
|   deviceVector<scalar> BLAS_F;      // nrhs x fine_vol * words   -- the sources |  | ||||||
|   deviceVector<scalar> BLAS_C;      // nrhs x coarse_vol * nbasis -- the coarse coeffs |  | ||||||
|  |  | ||||||
|   RealD blasNorm2(deviceVector<scalar> &blas) |  | ||||||
|   { |  | ||||||
|     scalar ss(0.0); |  | ||||||
|     std::vector<scalar> tmp(blas.size()); |  | ||||||
|     acceleratorCopyFromDevice(&blas[0],&tmp[0],blas.size()*sizeof(scalar)); |  | ||||||
|     for(int64_t s=0;s<blas.size();s++){ |  | ||||||
|       ss=ss+tmp[s]*adj(tmp[s]); |  | ||||||
|     } |  | ||||||
|     coarse_grid->GlobalSum(ss); |  | ||||||
|     return real(ss); |  | ||||||
|   } |  | ||||||
|    |  | ||||||
|   MultiRHSBlockProject(){}; |  | ||||||
|  ~MultiRHSBlockProject(){ Deallocate(); }; |  | ||||||
|    |  | ||||||
|   void Deallocate(void) |  | ||||||
|   { |  | ||||||
|     nbasis=0; |  | ||||||
|     coarse_grid=nullptr; |  | ||||||
|     fine_grid=nullptr; |  | ||||||
|     fine_vol=0; |  | ||||||
|     block_vol=0; |  | ||||||
|     coarse_vol=0; |  | ||||||
|     words=0; |  | ||||||
|     BLAS_V.resize(0); |  | ||||||
|     BLAS_F.resize(0); |  | ||||||
|     BLAS_C.resize(0); |  | ||||||
|   } |  | ||||||
|   void Allocate(int _nbasis,GridBase *_fgrid,GridBase *_cgrid) |  | ||||||
|   { |  | ||||||
|     nbasis=_nbasis; |  | ||||||
|  |  | ||||||
|     fine_grid=_fgrid; |  | ||||||
|     coarse_grid=_cgrid; |  | ||||||
|  |  | ||||||
|     fine_vol   = fine_grid->lSites(); |  | ||||||
|     coarse_vol = coarse_grid->lSites(); |  | ||||||
|     block_vol = fine_vol/coarse_vol; |  | ||||||
|      |  | ||||||
|     words = sizeof(scalar_object)/sizeof(scalar); |  | ||||||
|  |  | ||||||
|     BLAS_V.resize (fine_vol * words * nbasis ); |  | ||||||
|   } |  | ||||||
|   void ImportFineGridVectors(std::vector <Field > &vecs, deviceVector<scalar> &blas) |  | ||||||
|   { |  | ||||||
|     int nvec = vecs.size(); |  | ||||||
|     typedef typename Field::vector_object vobj; |  | ||||||
|     //    std::cout << GridLogMessage <<" BlockProjector importing "<<nvec<< " fine grid vectors" <<std::endl; |  | ||||||
|  |  | ||||||
|     assert(vecs[0].Grid()==fine_grid); |  | ||||||
|  |  | ||||||
|     subdivides(coarse_grid,fine_grid); // require they map |  | ||||||
|  |  | ||||||
|     int _ndimension = coarse_grid->_ndimension; |  | ||||||
|     assert(block_vol == fine_grid->oSites() / coarse_grid->oSites()); |  | ||||||
|      |  | ||||||
|     Coordinate  block_r      (_ndimension); |  | ||||||
|     for(int d=0 ; d<_ndimension;d++){ |  | ||||||
|       block_r[d] = fine_grid->_rdimensions[d] / coarse_grid->_rdimensions[d]; |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     uint64_t sz = blas.size(); |  | ||||||
|  |  | ||||||
|     acceleratorMemSet(&blas[0],0,blas.size()*sizeof(scalar)); |  | ||||||
|  |  | ||||||
|     Coordinate fine_rdimensions = fine_grid->_rdimensions; |  | ||||||
|     Coordinate coarse_rdimensions = coarse_grid->_rdimensions; |  | ||||||
|     int64_t bv= block_vol; |  | ||||||
|     for(int v=0;v<vecs.size();v++){ |  | ||||||
|  |  | ||||||
|       //      std::cout << " BlockProjector importing vector"<<v<<" "<<norm2(vecs[v])<<std::endl; |  | ||||||
|       autoView( fineData   , vecs[v], AcceleratorRead); |  | ||||||
|  |  | ||||||
|       auto blasData_p  = &blas[0]; |  | ||||||
|       auto fineData_p  = &fineData[0]; |  | ||||||
|  |  | ||||||
|       int64_t osites = fine_grid->oSites(); |  | ||||||
|  |  | ||||||
|       // loop over fine sites |  | ||||||
|       const int Nsimd = vobj::Nsimd(); |  | ||||||
|       //      std::cout << "sz "<<sz<<std::endl; |  | ||||||
|       //      std::cout << "prod "<<Nsimd * coarse_grid->oSites() * block_vol * nvec * words<<std::endl; |  | ||||||
|       assert(sz == Nsimd * coarse_grid->oSites() * block_vol * nvec * words); |  | ||||||
|       uint64_t lwords= words; // local variable for copy in to GPU |  | ||||||
|       accelerator_for(sf,osites,Nsimd,{ |  | ||||||
| #ifdef GRID_SIMT |  | ||||||
|         { |  | ||||||
| 	  int lane=acceleratorSIMTlane(Nsimd); // buffer lane |  | ||||||
| #else |  | ||||||
| 	  for(int lane=0;lane<Nsimd;lane++) { |  | ||||||
| #endif |  | ||||||
| 	  // One thread per fine site |  | ||||||
| 	  Coordinate coor_f(_ndimension); |  | ||||||
| 	  Coordinate coor_b(_ndimension); |  | ||||||
| 	  Coordinate coor_c(_ndimension); |  | ||||||
|  |  | ||||||
| 	  // Fine site to fine coor |  | ||||||
| 	  Lexicographic::CoorFromIndex(coor_f,sf,fine_rdimensions); |  | ||||||
|  |  | ||||||
| 	  for(int d=0;d<_ndimension;d++) coor_b[d] = coor_f[d]%block_r[d]; |  | ||||||
| 	  for(int d=0;d<_ndimension;d++) coor_c[d] = coor_f[d]/block_r[d]; |  | ||||||
| 	   |  | ||||||
| 	  int sc;// coarse site |  | ||||||
| 	  int sb;// block site |  | ||||||
| 	  Lexicographic::IndexFromCoor(coor_c,sc,coarse_rdimensions); |  | ||||||
| 	  Lexicographic::IndexFromCoor(coor_b,sb,block_r); |  | ||||||
|  |  | ||||||
|           scalar_object data = extractLane(lane,fineData[sf]); |  | ||||||
|  |  | ||||||
| 	  // BLAS layout address calculation |  | ||||||
| 	  // words * block_vol * nbasis x coarse_vol |  | ||||||
| 	  // coarse oSite x block vole x lanes |  | ||||||
| 	  int64_t site = (lane*osites + sc*bv)*nvec |  | ||||||
|    	               + v*bv |  | ||||||
| 	               + sb; |  | ||||||
|  |  | ||||||
| 	  //	  assert(site*lwords<sz); |  | ||||||
|  |  | ||||||
| 	  scalar_object * ptr = (scalar_object *)&blasData_p[site*lwords]; |  | ||||||
|  |  | ||||||
| 	  *ptr = data; |  | ||||||
| #ifdef GRID_SIMT |  | ||||||
| 	} |  | ||||||
| #else |  | ||||||
| 	} |  | ||||||
| #endif |  | ||||||
|       }); |  | ||||||
|       //      std::cout << " import fine Blas norm "<<blasNorm2(blas)<<std::endl; |  | ||||||
|       //      std::cout << " BlockProjector imported vector"<<v<<std::endl; |  | ||||||
|     } |  | ||||||
|   } |  | ||||||
|   void ExportFineGridVectors(std::vector <Field> &vecs, deviceVector<scalar> &blas) |  | ||||||
|   { |  | ||||||
|     typedef typename Field::vector_object vobj; |  | ||||||
|  |  | ||||||
|     int nvec = vecs.size(); |  | ||||||
|  |  | ||||||
|     assert(vecs[0].Grid()==fine_grid); |  | ||||||
|  |  | ||||||
|     subdivides(coarse_grid,fine_grid); // require they map |  | ||||||
|  |  | ||||||
|     int _ndimension = coarse_grid->_ndimension; |  | ||||||
|     assert(block_vol == fine_grid->oSites() / coarse_grid->oSites()); |  | ||||||
|      |  | ||||||
|     Coordinate  block_r      (_ndimension); |  | ||||||
|     for(int d=0 ; d<_ndimension;d++){ |  | ||||||
|       block_r[d] = fine_grid->_rdimensions[d] / coarse_grid->_rdimensions[d]; |  | ||||||
|     } |  | ||||||
|     Coordinate fine_rdimensions = fine_grid->_rdimensions; |  | ||||||
|     Coordinate coarse_rdimensions = coarse_grid->_rdimensions; |  | ||||||
|  |  | ||||||
|     //    std::cout << " export fine Blas norm "<<blasNorm2(blas)<<std::endl; |  | ||||||
|  |  | ||||||
|     int64_t bv= block_vol; |  | ||||||
|     for(int v=0;v<vecs.size();v++){ |  | ||||||
|  |  | ||||||
|       autoView( fineData   , vecs[v], AcceleratorWrite); |  | ||||||
|  |  | ||||||
|       auto blasData_p  = &blas[0]; |  | ||||||
|       auto fineData_p    = &fineData[0]; |  | ||||||
|  |  | ||||||
|       int64_t osites = fine_grid->oSites(); |  | ||||||
|       uint64_t lwords = words; |  | ||||||
|       //      std::cout << " Nsimd is "<<vobj::Nsimd() << std::endl; |  | ||||||
|       //      std::cout << " lwords is "<<lwords << std::endl; |  | ||||||
|       //      std::cout << " sizeof(scalar_object) is "<<sizeof(scalar_object) << std::endl; |  | ||||||
|       // loop over fine sites |  | ||||||
|       accelerator_for(sf,osites,vobj::Nsimd(),{ |  | ||||||
|        |  | ||||||
| #ifdef GRID_SIMT |  | ||||||
|         { |  | ||||||
| 	  int lane=acceleratorSIMTlane(vobj::Nsimd()); // buffer lane |  | ||||||
| #else |  | ||||||
| 	  for(int lane=0;lane<vobj::Nsimd();lane++) { |  | ||||||
| #endif |  | ||||||
| 	  // One thread per fine site |  | ||||||
| 	  Coordinate coor_f(_ndimension); |  | ||||||
| 	  Coordinate coor_b(_ndimension); |  | ||||||
| 	  Coordinate coor_c(_ndimension); |  | ||||||
|  |  | ||||||
| 	  Lexicographic::CoorFromIndex(coor_f,sf,fine_rdimensions); |  | ||||||
|  |  | ||||||
| 	  for(int d=0;d<_ndimension;d++) coor_b[d] = coor_f[d]%block_r[d]; |  | ||||||
| 	  for(int d=0;d<_ndimension;d++) coor_c[d] = coor_f[d]/block_r[d]; |  | ||||||
| 	   |  | ||||||
| 	  int sc; |  | ||||||
| 	  int sb; |  | ||||||
| 	  Lexicographic::IndexFromCoor(coor_c,sc,coarse_rdimensions); |  | ||||||
| 	  Lexicographic::IndexFromCoor(coor_b,sb,block_r); |  | ||||||
|  |  | ||||||
| 	  // BLAS layout address calculation |  | ||||||
| 	  // words * block_vol * nbasis x coarse_vol 	   |  | ||||||
| 	  int64_t site = (lane*osites + sc*bv)*nvec |  | ||||||
|    	               + v*bv |  | ||||||
| 	               + sb; |  | ||||||
|  |  | ||||||
| 	  scalar_object * ptr = (scalar_object *)&blasData_p[site*lwords]; |  | ||||||
|  |  | ||||||
| 	  scalar_object data = *ptr; |  | ||||||
|  |  | ||||||
| 	  insertLane(lane,fineData[sf],data); |  | ||||||
| #ifdef GRID_SIMT |  | ||||||
| 	} |  | ||||||
| #else |  | ||||||
| 	} |  | ||||||
| #endif |  | ||||||
|       }); |  | ||||||
|     } |  | ||||||
|   } |  | ||||||
|   template<class vobj> |  | ||||||
|   void ImportCoarseGridVectors(std::vector <Lattice<vobj> > &vecs, deviceVector<scalar> &blas) |  | ||||||
|   { |  | ||||||
|     int nvec = vecs.size(); |  | ||||||
|     typedef typename vobj::scalar_object coarse_scalar_object; |  | ||||||
|  |  | ||||||
|     //    std::cout << " BlockProjector importing "<<nvec<< " coarse grid vectors" <<std::endl; |  | ||||||
|  |  | ||||||
|     assert(vecs[0].Grid()==coarse_grid); |  | ||||||
|  |  | ||||||
|     int _ndimension = coarse_grid->_ndimension; |  | ||||||
|  |  | ||||||
|     uint64_t sz = blas.size(); |  | ||||||
|  |  | ||||||
|     Coordinate coarse_rdimensions = coarse_grid->_rdimensions; |  | ||||||
|      |  | ||||||
|     for(int v=0;v<vecs.size();v++){ |  | ||||||
|  |  | ||||||
|       //      std::cout << " BlockProjector importing coarse vector"<<v<<" "<<norm2(vecs[v])<<std::endl; |  | ||||||
|       autoView( coarseData   , vecs[v], AcceleratorRead); |  | ||||||
|  |  | ||||||
|       auto blasData_p  = &blas[0]; |  | ||||||
|       auto coarseData_p  = &coarseData[0]; |  | ||||||
|  |  | ||||||
|       int64_t osites = coarse_grid->oSites(); |  | ||||||
|  |  | ||||||
|       // loop over fine sites |  | ||||||
|       const int Nsimd = vobj::Nsimd(); |  | ||||||
|       uint64_t cwords=sizeof(typename vobj::scalar_object)/sizeof(scalar); |  | ||||||
|       assert(cwords==nbasis); |  | ||||||
|        |  | ||||||
|       accelerator_for(sc,osites,Nsimd,{ |  | ||||||
| #ifdef GRID_SIMT |  | ||||||
|         { |  | ||||||
| 	  int lane=acceleratorSIMTlane(Nsimd); // buffer lane |  | ||||||
| #else |  | ||||||
| 	  for(int lane=0;lane<Nsimd;lane++) { |  | ||||||
| #endif |  | ||||||
|            // C_br per site |  | ||||||
| 	    int64_t blas_site = (lane*osites + sc)*nvec*cwords + v*cwords; |  | ||||||
| 	     |  | ||||||
| 	    coarse_scalar_object data = extractLane(lane,coarseData[sc]); |  | ||||||
|  |  | ||||||
| 	    coarse_scalar_object * ptr = (coarse_scalar_object *)&blasData_p[blas_site]; |  | ||||||
|  |  | ||||||
| 	    *ptr = data; |  | ||||||
| #ifdef GRID_SIMT |  | ||||||
| 	} |  | ||||||
| #else |  | ||||||
| 	} |  | ||||||
| #endif |  | ||||||
|       }); |  | ||||||
|       //      std::cout << " import coarsee Blas norm "<<blasNorm2(blas)<<std::endl; |  | ||||||
|     } |  | ||||||
|   } |  | ||||||
|   template<class vobj> |  | ||||||
|   void ExportCoarseGridVectors(std::vector <Lattice<vobj> > &vecs, deviceVector<scalar> &blas) |  | ||||||
|   { |  | ||||||
|     int nvec = vecs.size(); |  | ||||||
|     typedef typename vobj::scalar_object coarse_scalar_object; |  | ||||||
|     //    std::cout << GridLogMessage<<" BlockProjector exporting "<<nvec<< " coarse grid vectors" <<std::endl; |  | ||||||
|  |  | ||||||
|     assert(vecs[0].Grid()==coarse_grid); |  | ||||||
|  |  | ||||||
|     int _ndimension = coarse_grid->_ndimension; |  | ||||||
|      |  | ||||||
|     uint64_t sz = blas.size(); |  | ||||||
|  |  | ||||||
|     Coordinate coarse_rdimensions = coarse_grid->_rdimensions; |  | ||||||
|      |  | ||||||
|     //    std::cout << " export coarsee Blas norm "<<blasNorm2(blas)<<std::endl; |  | ||||||
|     for(int v=0;v<vecs.size();v++){ |  | ||||||
|  |  | ||||||
|       //  std::cout << " BlockProjector exporting coarse vector"<<v<<std::endl; |  | ||||||
|       autoView( coarseData   , vecs[v], AcceleratorWrite); |  | ||||||
|  |  | ||||||
|       auto blasData_p  = &blas[0]; |  | ||||||
|       auto coarseData_p  = &coarseData[0]; |  | ||||||
|  |  | ||||||
|       int64_t osites = coarse_grid->oSites(); |  | ||||||
|  |  | ||||||
|       // loop over fine sites |  | ||||||
|       const int Nsimd = vobj::Nsimd(); |  | ||||||
|       uint64_t cwords=sizeof(typename vobj::scalar_object)/sizeof(scalar); |  | ||||||
|       assert(cwords==nbasis); |  | ||||||
|        |  | ||||||
|       accelerator_for(sc,osites,Nsimd,{ |  | ||||||
| 	  // Wrap in a macro "FOR_ALL_LANES(lane,{ ... }); |  | ||||||
| #ifdef GRID_SIMT |  | ||||||
|         { |  | ||||||
| 	  int lane=acceleratorSIMTlane(Nsimd); // buffer lane |  | ||||||
| #else |  | ||||||
| 	  for(int lane=0;lane<Nsimd;lane++) { |  | ||||||
| #endif |  | ||||||
| 	    int64_t blas_site = (lane*osites + sc)*nvec*cwords + v*cwords; |  | ||||||
| 	    coarse_scalar_object * ptr = (coarse_scalar_object *)&blasData_p[blas_site]; |  | ||||||
| 	    coarse_scalar_object data = *ptr; |  | ||||||
| 	    insertLane(lane,coarseData[sc],data); |  | ||||||
| #ifdef GRID_SIMT |  | ||||||
| 	} |  | ||||||
| #else |  | ||||||
| 	} |  | ||||||
| #endif |  | ||||||
|       }); |  | ||||||
|     } |  | ||||||
|   } |  | ||||||
|   void ImportBasis(std::vector < Field > &vecs) |  | ||||||
|   { |  | ||||||
|     //    std::cout << " BlockProjector Import basis size "<<vecs.size()<<std::endl; |  | ||||||
|     ImportFineGridVectors(vecs,BLAS_V); |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|   template<class cobj> |  | ||||||
|   void blockProject(std::vector<Field> &fine,std::vector< Lattice<cobj> > & coarse) |  | ||||||
|   { |  | ||||||
|     int nrhs=fine.size(); |  | ||||||
|     int _nbasis = sizeof(typename cobj::scalar_object)/sizeof(scalar); |  | ||||||
|     //    std::cout << "blockProject nbasis " <<nbasis<<" " << _nbasis<<std::endl; |  | ||||||
|     assert(nbasis==_nbasis); |  | ||||||
|      |  | ||||||
|     BLAS_F.resize (fine_vol * words * nrhs ); |  | ||||||
|     BLAS_C.resize (coarse_vol * nbasis * nrhs ); |  | ||||||
|  |  | ||||||
|     ///////////////////////////////////////////// |  | ||||||
|     // Copy in the multi-rhs sources to same data layout |  | ||||||
|     ///////////////////////////////////////////// |  | ||||||
|     //    std::cout << "BlockProject import fine"<<std::endl; |  | ||||||
|     ImportFineGridVectors(fine,BLAS_F); |  | ||||||
|      |  | ||||||
|     deviceVector<scalar *> Vd(coarse_vol); |  | ||||||
|     deviceVector<scalar *> Fd(coarse_vol); |  | ||||||
|     deviceVector<scalar *> Cd(coarse_vol); |  | ||||||
|  |  | ||||||
|     //    std::cout << "BlockProject pointers"<<std::endl; |  | ||||||
|     for(int c=0;c<coarse_vol;c++){ |  | ||||||
|       // BLAS_V[coarse_vol][nbasis][block_vol][words] |  | ||||||
|       // BLAS_F[coarse_vol][nrhs][block_vol][words] |  | ||||||
|       // BLAS_C[coarse_vol][nrhs][nbasis] |  | ||||||
|       scalar * Vh = & BLAS_V[c*nbasis*block_vol*words]; |  | ||||||
|       scalar * Fh = & BLAS_F[c*nrhs*block_vol*words]; |  | ||||||
|       scalar * Ch = & BLAS_C[c*nrhs*nbasis]; |  | ||||||
|  |  | ||||||
|       acceleratorPut(Vd[c],Vh); |  | ||||||
|       acceleratorPut(Fd[c],Fh); |  | ||||||
|       acceleratorPut(Cd[c],Ch); |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     GridBLAS BLAS; |  | ||||||
|  |  | ||||||
|     //    std::cout << "BlockProject BLAS"<<std::endl; |  | ||||||
|     int64_t vw = block_vol * words; |  | ||||||
|     ///////////////////////////////////////// |  | ||||||
|     // C_br = V^dag R |  | ||||||
|     ///////////////////////////////////////// |  | ||||||
|     BLAS.gemmBatched(GridBLAS_OP_C,GridBLAS_OP_N,  |  | ||||||
|     		     nbasis,nrhs,vw, |  | ||||||
| 		     ComplexD(1.0), |  | ||||||
| 		     Vd, |  | ||||||
| 		     Fd, |  | ||||||
| 		     ComplexD(0.0),  // wipe out C |  | ||||||
| 		     Cd); |  | ||||||
|     BLAS.synchronise(); |  | ||||||
|     //    std::cout << "BlockProject done"<<std::endl; |  | ||||||
|     ExportCoarseGridVectors(coarse, BLAS_C); |  | ||||||
|     //    std::cout << "BlockProject done"<<std::endl; |  | ||||||
|  |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|   template<class cobj> |  | ||||||
|   void blockPromote(std::vector<Field> &fine,std::vector<Lattice<cobj> > & coarse) |  | ||||||
|   { |  | ||||||
|     int nrhs=fine.size(); |  | ||||||
|     int _nbasis = sizeof(typename cobj::scalar_object)/sizeof(scalar); |  | ||||||
|     assert(nbasis==_nbasis); |  | ||||||
|      |  | ||||||
|     BLAS_F.resize (fine_vol * words * nrhs ); |  | ||||||
|     BLAS_C.resize (coarse_vol * nbasis * nrhs ); |  | ||||||
|  |  | ||||||
|     ImportCoarseGridVectors(coarse, BLAS_C); |  | ||||||
|  |  | ||||||
|     GridBLAS BLAS; |  | ||||||
|  |  | ||||||
|     deviceVector<scalar *> Vd(coarse_vol); |  | ||||||
|     deviceVector<scalar *> Fd(coarse_vol); |  | ||||||
|     deviceVector<scalar *> Cd(coarse_vol); |  | ||||||
|  |  | ||||||
|     for(int c=0;c<coarse_vol;c++){ |  | ||||||
|       // BLAS_V[coarse_vol][nbasis][block_vol][words] |  | ||||||
|       // BLAS_F[coarse_vol][nrhs][block_vol][words] |  | ||||||
|       // BLAS_C[coarse_vol][nrhs][nbasis] |  | ||||||
|       scalar * Vh = & BLAS_V[c*nbasis*block_vol*words]; |  | ||||||
|       scalar * Fh = & BLAS_F[c*nrhs*block_vol*words]; |  | ||||||
|       scalar * Ch = & BLAS_C[c*nrhs*nbasis]; |  | ||||||
|       acceleratorPut(Vd[c],Vh); |  | ||||||
|       acceleratorPut(Fd[c],Fh); |  | ||||||
|       acceleratorPut(Cd[c],Ch); |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     ///////////////////////////////////////// |  | ||||||
|     // Block promote: |  | ||||||
|     // F_xr = Vxb Cbr (x coarse_vol) |  | ||||||
|     ///////////////////////////////////////// |  | ||||||
|  |  | ||||||
|     int64_t vw = block_vol * words; |  | ||||||
|     BLAS.gemmBatched(GridBLAS_OP_N,GridBLAS_OP_N,  |  | ||||||
|     		     vw,nrhs,nbasis, |  | ||||||
| 		     ComplexD(1.0), |  | ||||||
| 		     Vd, |  | ||||||
| 		     Cd, |  | ||||||
| 		     ComplexD(0.0),  // wipe out C |  | ||||||
| 		     Fd); |  | ||||||
|     BLAS.synchronise(); |  | ||||||
|     //    std::cout << " blas call done"<<std::endl; |  | ||||||
|      |  | ||||||
|     ExportFineGridVectors(fine, BLAS_F); |  | ||||||
|     //    std::cout << " exported "<<std::endl; |  | ||||||
|   } |  | ||||||
| }; |  | ||||||
|  |  | ||||||
| NAMESPACE_END(Grid); |  | ||||||
| @@ -1,233 +0,0 @@ | |||||||
| /************************************************************************************* |  | ||||||
|  |  | ||||||
|     Grid physics library, www.github.com/paboyle/Grid  |  | ||||||
|  |  | ||||||
|     Source file: MultiRHSDeflation.h |  | ||||||
|  |  | ||||||
|     Copyright (C) 2023 |  | ||||||
|  |  | ||||||
| Author: Peter Boyle <pboyle@bnl.gov> |  | ||||||
|  |  | ||||||
|     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 */ |  | ||||||
| #pragma once |  | ||||||
|  |  | ||||||
| NAMESPACE_BEGIN(Grid); |  | ||||||
|  |  | ||||||
|  |  | ||||||
| /* Need helper object for BLAS accelerated mrhs projection |  | ||||||
|  |  | ||||||
|    i) MultiRHS Deflation |  | ||||||
|  |  | ||||||
|    Import Evecs -> nev x vol x internal  |  | ||||||
|    Import vector of Lattice objects -> nrhs x vol x internal |  | ||||||
|    => Cij (nrhs x Nev) via GEMM. |  | ||||||
|    => Guess  (nrhs x vol x internal)  = C x evecs (via GEMM) |  | ||||||
|    Export |  | ||||||
|  |  | ||||||
|     |  | ||||||
|    ii) MultiRHS block projection |  | ||||||
|  |  | ||||||
|    Import basis -> nblock x nbasis x  (block x internal)  |  | ||||||
|    Import vector of fine lattice objects -> nblock x nrhs x (block x internal)  |  | ||||||
|  |  | ||||||
|    => coarse_(nrhs x nbasis )^block = via batched GEMM |  | ||||||
|  |  | ||||||
|    iii)   Alternate interface:  |  | ||||||
|    Import higher dim Lattice object-> vol x nrhs layout |  | ||||||
|     |  | ||||||
| */ |  | ||||||
| template<class Field> |  | ||||||
| class MultiRHSDeflation |  | ||||||
| { |  | ||||||
| public: |  | ||||||
|  |  | ||||||
|   typedef typename Field::scalar_type   scalar; |  | ||||||
|   typedef typename Field::scalar_object scalar_object; |  | ||||||
|  |  | ||||||
|   int nev; |  | ||||||
|   std::vector<RealD> eval; |  | ||||||
|   GridBase *grid; |  | ||||||
|   uint64_t vol; |  | ||||||
|   uint64_t words; |  | ||||||
|    |  | ||||||
|   deviceVector<scalar> BLAS_E;      //  nev x vol -- the eigenbasis   (up to a 1/sqrt(lambda)) |  | ||||||
|   deviceVector<scalar> BLAS_R;      // nrhs x vol -- the sources |  | ||||||
|   deviceVector<scalar> BLAS_G;      // nrhs x vol -- the guess |  | ||||||
|   deviceVector<scalar> BLAS_C;      // nrhs x nev -- the coefficients  |  | ||||||
|    |  | ||||||
|   MultiRHSDeflation(){}; |  | ||||||
|   ~MultiRHSDeflation(){ Deallocate(); }; |  | ||||||
|    |  | ||||||
|   void Deallocate(void) |  | ||||||
|   { |  | ||||||
|     nev=0; |  | ||||||
|     grid=nullptr; |  | ||||||
|     vol=0; |  | ||||||
|     words=0; |  | ||||||
|     BLAS_E.resize(0); |  | ||||||
|     BLAS_R.resize(0); |  | ||||||
|     BLAS_C.resize(0); |  | ||||||
|     BLAS_G.resize(0); |  | ||||||
|   } |  | ||||||
|   void Allocate(int _nev,GridBase *_grid) |  | ||||||
|   { |  | ||||||
|     nev=_nev; |  | ||||||
|     grid=_grid; |  | ||||||
|     vol   = grid->lSites(); |  | ||||||
|     words = sizeof(scalar_object)/sizeof(scalar); |  | ||||||
|     eval.resize(nev); |  | ||||||
|     BLAS_E.resize (vol * words * nev ); |  | ||||||
|     std::cout << GridLogMessage << " Allocate for "<<nev<<" eigenvectors and volume "<<vol<<std::endl; |  | ||||||
|   } |  | ||||||
|   void ImportEigenVector(Field &evec,RealD &_eval, int ev) |  | ||||||
|   { |  | ||||||
|     //    std::cout << " ev " <<ev<<" eval "<<_eval<< std::endl; |  | ||||||
|     assert(ev<eval.size()); |  | ||||||
|     eval[ev] = _eval; |  | ||||||
|  |  | ||||||
|     int64_t offset = ev*vol*words; |  | ||||||
|     autoView(v,evec,AcceleratorRead); |  | ||||||
|     acceleratorCopyDeviceToDevice(&v[0],&BLAS_E[offset],sizeof(scalar_object)*vol); |  | ||||||
|  |  | ||||||
|   } |  | ||||||
|   void ImportEigenBasis(std::vector<Field> &evec,std::vector<RealD> &_eval) |  | ||||||
|   { |  | ||||||
|     ImportEigenBasis(evec,_eval,0,evec.size()); |  | ||||||
|   } |  | ||||||
|   // Could use to import a batch of eigenvectors |  | ||||||
|   void ImportEigenBasis(std::vector<Field> &evec,std::vector<RealD> &_eval, int _ev0, int _nev) |  | ||||||
|   { |  | ||||||
|     assert(_ev0+_nev<=evec.size()); |  | ||||||
|  |  | ||||||
|     Allocate(_nev,evec[0].Grid()); |  | ||||||
|      |  | ||||||
|     // Imports a sub-batch of eigenvectors, _ev0, ..., _ev0+_nev-1 |  | ||||||
|     for(int e=0;e<nev;e++){ |  | ||||||
|       std::cout << "Importing eigenvector "<<e<<" evalue "<<_eval[_ev0+e]<<std::endl; |  | ||||||
|       ImportEigenVector(evec[_ev0+e],_eval[_ev0+e],e); |  | ||||||
|     } |  | ||||||
|   } |  | ||||||
|   void DeflateSources(std::vector<Field> &source,std::vector<Field> & guess) |  | ||||||
|   { |  | ||||||
|     int nrhs = source.size(); |  | ||||||
|     assert(source.size()==guess.size()); |  | ||||||
|     assert(grid == guess[0].Grid()); |  | ||||||
|     conformable(guess[0],source[0]); |  | ||||||
|  |  | ||||||
|     int64_t vw = vol * words; |  | ||||||
|  |  | ||||||
|     RealD t0 = usecond(); |  | ||||||
|     BLAS_R.resize(nrhs * vw); // cost free if size doesn't change |  | ||||||
|     BLAS_G.resize(nrhs * vw); // cost free if size doesn't change |  | ||||||
|     BLAS_C.resize(nev * nrhs);// cost free if size doesn't change |  | ||||||
|  |  | ||||||
|     ///////////////////////////////////////////// |  | ||||||
|     // Copy in the multi-rhs sources |  | ||||||
|     ///////////////////////////////////////////// |  | ||||||
|     //    for(int r=0;r<nrhs;r++){ |  | ||||||
|     //      std::cout << " source["<<r<<"] = "<<norm2(source[r])<<std::endl; |  | ||||||
|     //    } |  | ||||||
|     for(int r=0;r<nrhs;r++){ |  | ||||||
|       int64_t offset = r*vw; |  | ||||||
|       autoView(v,source[r],AcceleratorRead); |  | ||||||
|       acceleratorCopyDeviceToDevice(&v[0],&BLAS_R[offset],sizeof(scalar_object)*vol); |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|   /* |  | ||||||
|    * in Fortran column major notation (cuBlas order) |  | ||||||
|    * |  | ||||||
|    * Exe = [e1(x)][..][en(x)] |  | ||||||
|    * |  | ||||||
|    * Rxr = [r1(x)][..][rm(x)] |  | ||||||
|    * |  | ||||||
|    * C_er = E^dag R |  | ||||||
|    * C_er = C_er / lambda_e  |  | ||||||
|    * G_xr = Exe Cer |  | ||||||
|    */ |  | ||||||
|     deviceVector<scalar *> Ed(1); |  | ||||||
|     deviceVector<scalar *> Rd(1); |  | ||||||
|     deviceVector<scalar *> Cd(1); |  | ||||||
|     deviceVector<scalar *> Gd(1); |  | ||||||
|  |  | ||||||
|     scalar * Eh = & BLAS_E[0]; |  | ||||||
|     scalar * Rh = & BLAS_R[0]; |  | ||||||
|     scalar * Ch = & BLAS_C[0]; |  | ||||||
|     scalar * Gh = & BLAS_G[0]; |  | ||||||
|  |  | ||||||
|     acceleratorPut(Ed[0],Eh); |  | ||||||
|     acceleratorPut(Rd[0],Rh); |  | ||||||
|     acceleratorPut(Cd[0],Ch); |  | ||||||
|     acceleratorPut(Gd[0],Gh); |  | ||||||
|  |  | ||||||
|     GridBLAS BLAS; |  | ||||||
|  |  | ||||||
|     ///////////////////////////////////////// |  | ||||||
|     // C_er = E^dag R |  | ||||||
|     ///////////////////////////////////////// |  | ||||||
|     BLAS.gemmBatched(GridBLAS_OP_C,GridBLAS_OP_N,  |  | ||||||
|     		     nev,nrhs,vw, |  | ||||||
| 		     ComplexD(1.0), |  | ||||||
| 		     Ed, |  | ||||||
| 		     Rd, |  | ||||||
| 		     ComplexD(0.0),  // wipe out C |  | ||||||
| 		     Cd); |  | ||||||
|     BLAS.synchronise(); |  | ||||||
|  |  | ||||||
|     assert(BLAS_C.size()==nev*nrhs); |  | ||||||
|  |  | ||||||
|     std::vector<scalar> HOST_C(BLAS_C.size());      // nrhs . nev -- the coefficients  |  | ||||||
|     acceleratorCopyFromDevice(&BLAS_C[0],&HOST_C[0],BLAS_C.size()*sizeof(scalar)); |  | ||||||
|     grid->GlobalSumVector(&HOST_C[0],nev*nrhs); |  | ||||||
|     for(int e=0;e<nev;e++){ |  | ||||||
|       RealD lam(1.0/eval[e]); |  | ||||||
|       for(int r=0;r<nrhs;r++){ |  | ||||||
| 	int off = e+nev*r; |  | ||||||
| 	HOST_C[off]=HOST_C[off] * lam; |  | ||||||
| 	//	std::cout << "C["<<e<<"]["<<r<<"] ="<<HOST_C[off]<< " eval[e] "<<eval[e] <<std::endl; |  | ||||||
|       } |  | ||||||
|     } |  | ||||||
|     acceleratorCopyToDevice(&HOST_C[0],&BLAS_C[0],BLAS_C.size()*sizeof(scalar)); |  | ||||||
|  |  | ||||||
|      |  | ||||||
|     ///////////////////////////////////////// |  | ||||||
|     // Guess G_xr = Exe Cer |  | ||||||
|     ///////////////////////////////////////// |  | ||||||
|     BLAS.gemmBatched(GridBLAS_OP_N,GridBLAS_OP_N,  |  | ||||||
| 		     vw,nrhs,nev, |  | ||||||
| 		     ComplexD(1.0), |  | ||||||
| 		     Ed, // x . nev |  | ||||||
| 		     Cd, // nev . nrhs |  | ||||||
| 		     ComplexD(0.0), |  | ||||||
| 		     Gd); |  | ||||||
|     BLAS.synchronise(); |  | ||||||
|  |  | ||||||
|     /////////////////////////////////////// |  | ||||||
|     // Copy out the multirhs |  | ||||||
|     /////////////////////////////////////// |  | ||||||
|     for(int r=0;r<nrhs;r++){ |  | ||||||
|       int64_t offset = r*vw; |  | ||||||
|       autoView(v,guess[r],AcceleratorWrite); |  | ||||||
|       acceleratorCopyDeviceToDevice(&BLAS_G[offset],&v[0],sizeof(scalar_object)*vol); |  | ||||||
|     } |  | ||||||
|     RealD t1 = usecond(); |  | ||||||
|     std::cout << GridLogMessage << "MultiRHSDeflation for "<<nrhs<<" sources with "<<nev<<" eigenvectors took " << (t1-t0)/1e3 <<" ms"<<std::endl; |  | ||||||
|   } |  | ||||||
| }; |  | ||||||
|  |  | ||||||
| NAMESPACE_END(Grid); |  | ||||||
| @@ -33,111 +33,109 @@ Author: Peter Boyle <paboyle@ph.ed.ac.uk> | |||||||
|    * Script A = SolverMatrix  |    * Script A = SolverMatrix  | ||||||
|    * Script P = Preconditioner |    * Script P = Preconditioner | ||||||
|    * |    * | ||||||
|  |    * Deflation methods considered | ||||||
|  |    *      -- Solve P A x = P b        [ like Luscher ] | ||||||
|  |    * DEF-1        M P A x = M P b     [i.e. left precon] | ||||||
|  |    * DEF-2        P^T M A x = P^T M b | ||||||
|  |    * ADEF-1       Preconditioner = M P + Q      [ Q + M + M A Q] | ||||||
|  |    * ADEF-2       Preconditioner = P^T M + Q | ||||||
|  |    * BNN          Preconditioner = P^T M P + Q | ||||||
|  |    * BNN2         Preconditioner = M P + P^TM +Q - M P A M  | ||||||
|  |    *  | ||||||
|    * Implement ADEF-2 |    * Implement ADEF-2 | ||||||
|    * |    * | ||||||
|    * Vstart = P^Tx + Qb |    * Vstart = P^Tx + Qb | ||||||
|    * M1 = P^TM + Q |    * M1 = P^TM + Q | ||||||
|    * M2=M3=1 |    * M2=M3=1 | ||||||
|  |    * Vout = x | ||||||
|    */ |    */ | ||||||
| NAMESPACE_BEGIN(Grid); |  | ||||||
|  |  | ||||||
|  | // abstract base | ||||||
| template<class Field> | template<class Field, class CoarseField> | ||||||
| class TwoLevelCG : public LinearFunction<Field> | class TwoLevelFlexiblePcg : public LinearFunction<Field> | ||||||
| { | { | ||||||
|  public: |  public: | ||||||
|  |   int verbose; | ||||||
|   RealD   Tolerance; |   RealD   Tolerance; | ||||||
|   Integer MaxIterations; |   Integer MaxIterations; | ||||||
|  |   const int mmax = 5; | ||||||
|   GridBase *grid; |   GridBase *grid; | ||||||
|  |   GridBase *coarsegrid; | ||||||
|  |  | ||||||
|   // Fine operator, Smoother, CoarseSolver |   LinearOperatorBase<Field>   *_Linop | ||||||
|   LinearOperatorBase<Field>   &_FineLinop; |   OperatorFunction<Field>     *_Smoother, | ||||||
|   LinearFunction<Field>   &_Smoother; |   LinearFunction<CoarseField> *_CoarseSolver; | ||||||
|  |  | ||||||
|  |   // Need somthing that knows how to get from Coarse to fine and back again | ||||||
|    |    | ||||||
|   // more most opertor functions |   // more most opertor functions | ||||||
|   TwoLevelCG(RealD tol, |   TwoLevelFlexiblePcg(RealD tol, | ||||||
| 	     Integer maxit, | 		     Integer maxit, | ||||||
| 	     LinearOperatorBase<Field>   &FineLinop, | 		     LinearOperatorBase<Field> *Linop, | ||||||
| 	     LinearFunction<Field>       &Smoother, | 		     LinearOperatorBase<Field> *SmootherLinop, | ||||||
| 	     GridBase *fine) :  | 		     OperatorFunction<Field>   *Smoother, | ||||||
|  | 		     OperatorFunction<CoarseField>  CoarseLinop | ||||||
|  | 		     ) :  | ||||||
|       Tolerance(tol),  |       Tolerance(tol),  | ||||||
|       MaxIterations(maxit), |       MaxIterations(maxit), | ||||||
|       _FineLinop(FineLinop), |       _Linop(Linop), | ||||||
|       _Smoother(Smoother) |       _PreconditionerLinop(PrecLinop), | ||||||
|   { |       _Preconditioner(Preconditioner) | ||||||
|     grid       = fine; |   {  | ||||||
|  |     verbose=0; | ||||||
|   }; |   }; | ||||||
|    |  | ||||||
|   virtual void operator() (const Field &src, Field &x) |   // The Pcg routine is common to all, but the various matrices differ from derived  | ||||||
|   { |   // implementation to derived implmentation | ||||||
|     std::cout << GridLogMessage<<"HDCG: fPcg starting single RHS"<<std::endl; |   void operator() (const Field &src, Field &psi){ | ||||||
|  |   void operator() (const Field &src, Field &psi){ | ||||||
|  |  | ||||||
|  |     psi.Checkerboard() = src.Checkerboard(); | ||||||
|  |     grid             = src.Grid(); | ||||||
|  |  | ||||||
|     RealD f; |     RealD f; | ||||||
|     RealD rtzp,rtz,a,d,b; |     RealD rtzp,rtz,a,d,b; | ||||||
|     RealD rptzp; |     RealD rptzp; | ||||||
|  |     RealD tn; | ||||||
|  |     RealD guess = norm2(psi); | ||||||
|  |     RealD ssq   = norm2(src); | ||||||
|  |     RealD rsq   = ssq*Tolerance*Tolerance; | ||||||
|  |      | ||||||
|     ///////////////////////////// |     ///////////////////////////// | ||||||
|     // Set up history vectors |     // Set up history vectors | ||||||
|     ///////////////////////////// |     ///////////////////////////// | ||||||
|     int mmax = 5; |     std::vector<Field> p  (mmax,grid); | ||||||
|     std::cout << GridLogMessage<<"HDCG: fPcg allocating"<<std::endl; |  | ||||||
|     std::vector<Field> p(mmax,grid); |  | ||||||
|     std::vector<Field> mmp(mmax,grid); |     std::vector<Field> mmp(mmax,grid); | ||||||
|     std::vector<RealD> pAp(mmax); |     std::vector<RealD> pAp(mmax); | ||||||
|     Field z(grid); |  | ||||||
|  |     Field x  (grid); x = psi; | ||||||
|  |     Field z  (grid); | ||||||
|     Field tmp(grid); |     Field tmp(grid); | ||||||
|     Field  mp (grid); |     Field r  (grid); | ||||||
|     Field  r  (grid); |     Field mu (grid); | ||||||
|     Field  mu (grid); |    | ||||||
|      |  | ||||||
|     std::cout << GridLogMessage<<"HDCG: fPcg allocated"<<std::endl; |  | ||||||
|     //Initial residual computation & set up |  | ||||||
|     RealD guess   = norm2(x); |  | ||||||
|     std::cout << GridLogMessage<<"HDCG: fPcg guess nrm "<<guess<<std::endl; |  | ||||||
|     RealD src_nrm = norm2(src); |  | ||||||
|     std::cout << GridLogMessage<<"HDCG: fPcg src nrm "<<src_nrm<<std::endl; |  | ||||||
|      |  | ||||||
|     if ( src_nrm == 0.0 ) { |  | ||||||
|       std::cout << GridLogMessage<<"HDCG: fPcg given trivial source norm "<<src_nrm<<std::endl; |  | ||||||
|       x=Zero(); |  | ||||||
|     } |  | ||||||
|     RealD tn; |  | ||||||
|      |  | ||||||
|     GridStopWatch HDCGTimer; |  | ||||||
|     HDCGTimer.Start(); |  | ||||||
|     ////////////////////////// |     ////////////////////////// | ||||||
|     // x0 = Vstart -- possibly modify guess |     // x0 = Vstart -- possibly modify guess | ||||||
|     ////////////////////////// |     ////////////////////////// | ||||||
|  |     x=src; | ||||||
|     Vstart(x,src); |     Vstart(x,src); | ||||||
|      |  | ||||||
|     // r0 = b -A x0 |     // r0 = b -A x0 | ||||||
|     _FineLinop.HermOp(x,mmp[0]); |     HermOp(x,mmp); // Shouldn't this be something else? | ||||||
|     axpy (r, -1.0,mmp[0], src);    // Recomputes r=src-Ax0 |     axpy (r, -1.0,mmp[0], src);    // Recomputes r=src-Ax0 | ||||||
|     { |  | ||||||
|       double n1 = norm2(x); |  | ||||||
|       double n2 = norm2(mmp[0]); |  | ||||||
|       double n3 = norm2(r); |  | ||||||
|       std::cout<<GridLogMessage<<"x,vstart,r = "<<n1<<" "<<n2<<" "<<n3<<std::endl; |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     ////////////////////////////////// |     ////////////////////////////////// | ||||||
|     // Compute z = M1 x |     // Compute z = M1 x | ||||||
|     ////////////////////////////////// |     ////////////////////////////////// | ||||||
|     PcgM1(r,z); |     M1(r,z,tmp,mp,SmootherMirs); | ||||||
|     rtzp =real(innerProduct(r,z)); |     rtzp =real(innerProduct(r,z)); | ||||||
|      |  | ||||||
|     /////////////////////////////////////// |     /////////////////////////////////////// | ||||||
|     // Solve for Mss mu = P A z and set p = z-mu |     // Solve for Mss mu = P A z and set p = z-mu | ||||||
|     // Def2 p = 1 - Q Az = Pright z |     // Def2: p = 1 - Q Az = Pright z  | ||||||
|     // Other algos M2 is trivial |     // Other algos M2 is trivial | ||||||
|     /////////////////////////////////////// |     /////////////////////////////////////// | ||||||
|     PcgM2(z,p[0]); |     M2(z,p[0]); | ||||||
|  |  | ||||||
|     RealD ssq =  norm2(src); |  | ||||||
|     RealD rsq =  ssq*Tolerance*Tolerance; |  | ||||||
|  |  | ||||||
|     std::cout << GridLogMessage<<"HDCG: k=0 residual "<<rtzp<<" rsq "<<rsq<<"\n"; |  | ||||||
|  |  | ||||||
|     Field pp(grid); |  | ||||||
|  |  | ||||||
|     for (int k=0;k<=MaxIterations;k++){ |     for (int k=0;k<=MaxIterations;k++){ | ||||||
|      |      | ||||||
| @@ -145,46 +143,31 @@ class TwoLevelCG : public LinearFunction<Field> | |||||||
|       int peri_kp = (k+1) % mmax; |       int peri_kp = (k+1) % mmax; | ||||||
|  |  | ||||||
|       rtz=rtzp; |       rtz=rtzp; | ||||||
|       d= PcgM3(p[peri_k],mmp[peri_k]); |       d= M3(p[peri_k],mp,mmp[peri_k],tmp); | ||||||
|       a = rtz/d; |       a = rtz/d; | ||||||
|      |      | ||||||
|       // Memorise this |       // Memorise this | ||||||
|       pAp[peri_k] = d; |       pAp[peri_k] = d; | ||||||
|        |  | ||||||
|       axpy(x,a,p[peri_k],x); |       axpy(x,a,p[peri_k],x); | ||||||
|       RealD rn = axpy_norm(r,-a,mmp[peri_k],r); |       RealD rn = axpy_norm(r,-a,mmp[peri_k],r); | ||||||
|  |  | ||||||
|       // Compute z = M x |       // Compute z = M x | ||||||
|       PcgM1(r,z); |       M1(r,z,tmp,mp); | ||||||
|        |  | ||||||
|       { |  | ||||||
| 	RealD n1,n2; |  | ||||||
| 	n1=norm2(r); |  | ||||||
| 	n2=norm2(z); |  | ||||||
| 	std::cout << GridLogMessage<<"HDCG::fPcg iteration "<<k<<" : vector r,z "<<n1<<" "<<n2<<"\n"; |  | ||||||
|       } |  | ||||||
|       rtzp =real(innerProduct(r,z)); |       rtzp =real(innerProduct(r,z)); | ||||||
|       std::cout << GridLogMessage<<"HDCG::fPcg iteration "<<k<<" : inner rtzp "<<rtzp<<"\n"; |  | ||||||
|  |  | ||||||
|       //    PcgM2(z,p[0]); |       M2(z,mu); // ADEF-2 this is identity. Axpy possible to eliminate | ||||||
|       PcgM2(z,mu); // ADEF-2 this is identity. Axpy possible to eliminate |  | ||||||
|        |  | ||||||
|       p[peri_kp]=mu; |  | ||||||
|  |  | ||||||
|       // Standard search direction  p -> z + b p     |       p[peri_kp]=p[peri_k]; | ||||||
|  |  | ||||||
|  |       // Standard search direction  p -> z + b p    ; b =  | ||||||
|       b = (rtzp)/rtz; |       b = (rtzp)/rtz; | ||||||
|        |  | ||||||
|       int northog; |  | ||||||
|       // k=zero  <=> peri_kp=1;        northog = 1 |  | ||||||
|       // k=1     <=> peri_kp=2;        northog = 2 |  | ||||||
|       // ...               ...                  ... |  | ||||||
|       // k=mmax-2<=> peri_kp=mmax-1;   northog = mmax-1 |  | ||||||
|       // k=mmax-1<=> peri_kp=0;        northog = 1 |  | ||||||
|  |  | ||||||
|  |       int northog; | ||||||
|       //    northog     = (peri_kp==0)?1:peri_kp; // This is the fCG(mmax) algorithm |       //    northog     = (peri_kp==0)?1:peri_kp; // This is the fCG(mmax) algorithm | ||||||
|       northog     = (k>mmax-1)?(mmax-1):k;        // This is the fCG-Tr(mmax-1) algorithm |       northog     = (k>mmax-1)?(mmax-1):k;        // This is the fCG-Tr(mmax-1) algorithm | ||||||
|      |      | ||||||
|       std::cout<<GridLogMessage<<"HDCG::fPcg iteration "<<k<<" : orthogonalising to last "<<northog<<" vectors\n"; |  | ||||||
|       for(int back=0; back < northog; back++){ |       for(int back=0; back < northog; back++){ | ||||||
| 	int peri_back = (k-back)%mmax; | 	int peri_back = (k-back)%mmax; | ||||||
| 	RealD pbApk= real(innerProduct(mmp[peri_back],p[peri_kp])); | 	RealD pbApk= real(innerProduct(mmp[peri_back],p[peri_kp])); | ||||||
| @@ -193,324 +176,75 @@ class TwoLevelCG : public LinearFunction<Field> | |||||||
|       } |       } | ||||||
|  |  | ||||||
|       RealD rrn=sqrt(rn/ssq); |       RealD rrn=sqrt(rn/ssq); | ||||||
|       RealD rtn=sqrt(rtz/ssq); |       std::cout<<GridLogMessage<<"TwoLevelfPcg: k= "<<k<<" residual = "<<rrn<<std::endl; | ||||||
|       RealD rtnp=sqrt(rtzp/ssq); |  | ||||||
|  |  | ||||||
|       std::cout<<GridLogMessage<<"HDCG: fPcg k= "<<k<<" residual = "<<rrn<<"\n"; |  | ||||||
|  |  | ||||||
|       // Stopping condition |       // Stopping condition | ||||||
|       if ( rn <= rsq ) {  |       if ( rn <= rsq ) {  | ||||||
|  |  | ||||||
| 	HDCGTimer.Stop(); | 	HermOp(x,mmp); // Shouldn't this be something else? | ||||||
| 	std::cout<<GridLogMessage<<"HDCG: fPcg converged in "<<k<<" iterations and "<<HDCGTimer.Elapsed()<<std::endl;; |  | ||||||
| 	 |  | ||||||
| 	_FineLinop.HermOp(x,mmp[0]);			   |  | ||||||
| 	axpy(tmp,-1.0,src,mmp[0]); | 	axpy(tmp,-1.0,src,mmp[0]); | ||||||
| 	 | 	 | ||||||
| 	RealD  mmpnorm = sqrt(norm2(mmp[0])); | 	RealD psinorm = sqrt(norm2(x)); | ||||||
| 	RealD  xnorm   = sqrt(norm2(x)); | 	RealD srcnorm = sqrt(norm2(src)); | ||||||
| 	RealD  srcnorm = sqrt(norm2(src)); | 	RealD tmpnorm = sqrt(norm2(tmp)); | ||||||
| 	RealD  tmpnorm = sqrt(norm2(tmp)); | 	RealD true_residual = tmpnorm/srcnorm; | ||||||
| 	RealD  true_residual = tmpnorm/srcnorm; | 	std::cout<<GridLogMessage<<"TwoLevelfPcg:   true residual is "<<true_residual<<std::endl; | ||||||
| 	std::cout<<GridLogMessage | 	std::cout<<GridLogMessage<<"TwoLevelfPcg: target residual was"<<Tolerance<<std::endl; | ||||||
| 	       <<"HDCG: true residual is "<<true_residual | 	return k; | ||||||
| 	       <<" solution "<<xnorm |  | ||||||
| 	       <<" source "<<srcnorm |  | ||||||
| 	       <<" mmp "<<mmpnorm	   |  | ||||||
| 	       <<std::endl; |  | ||||||
|        |  | ||||||
| 	return; |  | ||||||
|       } |       } | ||||||
|  |  | ||||||
|     } |     } | ||||||
|     HDCGTimer.Stop(); |     // Non-convergence | ||||||
|     std::cout<<GridLogMessage<<"HDCG: not converged "<<HDCGTimer.Elapsed()<<std::endl; |     assert(0); | ||||||
|     RealD  xnorm   = sqrt(norm2(x)); |  | ||||||
|     RealD  srcnorm = sqrt(norm2(src)); |  | ||||||
|     std::cout<<GridLogMessage<<"HDCG: non-converged solution "<<xnorm<<" source "<<srcnorm<<std::endl; |  | ||||||
|   } |   } | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|   virtual void operator() (std::vector<Field> &src, std::vector<Field> &x) |  | ||||||
|   { |  | ||||||
|     std::cout << GridLogMessage<<"HDCG: mrhs fPcg starting"<<std::endl; |  | ||||||
|     src[0].Grid()->Barrier(); |  | ||||||
|     int nrhs = src.size(); |  | ||||||
|     std::vector<RealD> f(nrhs); |  | ||||||
|     std::vector<RealD> rtzp(nrhs); |  | ||||||
|     std::vector<RealD> rtz(nrhs); |  | ||||||
|     std::vector<RealD> a(nrhs); |  | ||||||
|     std::vector<RealD> d(nrhs); |  | ||||||
|     std::vector<RealD> b(nrhs); |  | ||||||
|     std::vector<RealD> rptzp(nrhs); |  | ||||||
|     ///////////////////////////// |  | ||||||
|     // Set up history vectors |  | ||||||
|     ///////////////////////////// |  | ||||||
|     int mmax = 3; |  | ||||||
|     std::cout << GridLogMessage<<"HDCG: fPcg allocating"<<std::endl; |  | ||||||
|     src[0].Grid()->Barrier(); |  | ||||||
|     std::vector<std::vector<Field> > p(nrhs);   for(int r=0;r<nrhs;r++)  p[r].resize(mmax,grid); |  | ||||||
|     std::cout << GridLogMessage<<"HDCG: fPcg allocated p"<<std::endl; |  | ||||||
|     src[0].Grid()->Barrier(); |  | ||||||
|     std::vector<std::vector<Field> > mmp(nrhs); for(int r=0;r<nrhs;r++) mmp[r].resize(mmax,grid); |  | ||||||
|     std::cout << GridLogMessage<<"HDCG: fPcg allocated mmp"<<std::endl; |  | ||||||
|     src[0].Grid()->Barrier(); |  | ||||||
|     std::vector<std::vector<RealD> > pAp(nrhs); for(int r=0;r<nrhs;r++) pAp[r].resize(mmax); |  | ||||||
|     std::cout << GridLogMessage<<"HDCG: fPcg allocated pAp"<<std::endl; |  | ||||||
|     src[0].Grid()->Barrier(); |  | ||||||
|     std::vector<Field> z(nrhs,grid); |  | ||||||
|     std::vector<Field>  mp (nrhs,grid); |  | ||||||
|     std::vector<Field>  r  (nrhs,grid); |  | ||||||
|     std::vector<Field>  mu (nrhs,grid); |  | ||||||
|     std::cout << GridLogMessage<<"HDCG: fPcg allocated z,mp,r,mu"<<std::endl; |  | ||||||
|     src[0].Grid()->Barrier(); |  | ||||||
|  |  | ||||||
|     //Initial residual computation & set up |  | ||||||
|     std::vector<RealD> src_nrm(nrhs); |  | ||||||
|     for(int rhs=0;rhs<nrhs;rhs++) { |  | ||||||
|       src_nrm[rhs]=norm2(src[rhs]); |  | ||||||
|       assert(src_nrm[rhs]!=0.0); |  | ||||||
|     } |  | ||||||
|     std::vector<RealD> tn(nrhs); |  | ||||||
|  |  | ||||||
|     GridStopWatch HDCGTimer; |  | ||||||
|     HDCGTimer.Start(); |  | ||||||
|     ////////////////////////// |  | ||||||
|     // x0 = Vstart -- possibly modify guess |  | ||||||
|     ////////////////////////// |  | ||||||
|     Vstart(x,src); |  | ||||||
|  |  | ||||||
|     for(int rhs=0;rhs<nrhs;rhs++){ |  | ||||||
|       // r0 = b -A x0 |  | ||||||
|       _FineLinop.HermOp(x[rhs],mmp[rhs][0]); |  | ||||||
|       axpy (r[rhs], -1.0,mmp[rhs][0], src[rhs]);    // Recomputes r=src-Ax0 |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     ////////////////////////////////// |  | ||||||
|     // Compute z = M1 x |  | ||||||
|     ////////////////////////////////// |  | ||||||
|     // This needs a multiRHS version for acceleration |  | ||||||
|     PcgM1(r,z); |  | ||||||
|  |  | ||||||
|     std::vector<RealD> ssq(nrhs); |  | ||||||
|     std::vector<RealD> rsq(nrhs); |  | ||||||
|     std::vector<Field> pp(nrhs,grid); |  | ||||||
|  |  | ||||||
|     for(int rhs=0;rhs<nrhs;rhs++){ |  | ||||||
|       rtzp[rhs] =real(innerProduct(r[rhs],z[rhs])); |  | ||||||
|       p[rhs][0]=z[rhs]; |  | ||||||
|       ssq[rhs]=norm2(src[rhs]); |  | ||||||
|       rsq[rhs]=  ssq[rhs]*Tolerance*Tolerance; |  | ||||||
|       std::cout << GridLogMessage<<"mrhs HDCG: "<<rhs<<" k=0 residual "<<rtzp[rhs]<<" rsq "<<rsq[rhs]<<"\n"; |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     std::vector<RealD> rn(nrhs); |  | ||||||
|     for (int k=0;k<=MaxIterations;k++){ |  | ||||||
|      |  | ||||||
|       int peri_k  = k % mmax; |  | ||||||
|       int peri_kp = (k+1) % mmax; |  | ||||||
|  |  | ||||||
|       for(int rhs=0;rhs<nrhs;rhs++){ |  | ||||||
| 	rtz[rhs]=rtzp[rhs]; |  | ||||||
| 	d[rhs]= PcgM3(p[rhs][peri_k],mmp[rhs][peri_k]); |  | ||||||
| 	a[rhs] = rtz[rhs]/d[rhs]; |  | ||||||
|      |  | ||||||
| 	// Memorise this |  | ||||||
| 	pAp[rhs][peri_k] = d[rhs]; |  | ||||||
|  |  | ||||||
| 	axpy(x[rhs],a[rhs],p[rhs][peri_k],x[rhs]); |  | ||||||
| 	rn[rhs] = axpy_norm(r[rhs],-a[rhs],mmp[rhs][peri_k],r[rhs]); |  | ||||||
|       } |  | ||||||
|  |  | ||||||
|       // Compute z = M x (for *all* RHS) |  | ||||||
|       PcgM1(r,z); |  | ||||||
|       std::cout << GridLogMessage<<"HDCG::fPcg M1 complete"<<std::endl; |  | ||||||
|       grid->Barrier(); |  | ||||||
|        |  | ||||||
|       RealD max_rn=0.0; |  | ||||||
|       for(int rhs=0;rhs<nrhs;rhs++){ |  | ||||||
|  |  | ||||||
| 	rtzp[rhs] =real(innerProduct(r[rhs],z[rhs])); |  | ||||||
|  |  | ||||||
| 	std::cout << GridLogMessage<<"HDCG::fPcg rhs"<<rhs<<" iteration "<<k<<" : inner rtzp "<<rtzp[rhs]<<"\n"; |  | ||||||
| 	 |  | ||||||
| 	mu[rhs]=z[rhs]; |  | ||||||
|  |  | ||||||
| 	p[rhs][peri_kp]=mu[rhs]; |  | ||||||
|  |  | ||||||
| 	// Standard search direction p == z + b p  |  | ||||||
| 	b[rhs] = (rtzp[rhs])/rtz[rhs]; |  | ||||||
|  |  | ||||||
| 	int northog = (k>mmax-1)?(mmax-1):k;        // This is the fCG-Tr(mmax-1) algorithm |  | ||||||
| 	std::cout<<GridLogMessage<<"HDCG::fPcg iteration "<<k<<" : orthogonalising to last "<<northog<<" vectors\n"; |  | ||||||
| 	for(int back=0; back < northog; back++){ |  | ||||||
| 	  int peri_back = (k-back)%mmax; |  | ||||||
| 	  RealD pbApk= real(innerProduct(mmp[rhs][peri_back],p[rhs][peri_kp])); |  | ||||||
| 	  RealD beta = -pbApk/pAp[rhs][peri_back]; |  | ||||||
| 	  axpy(p[rhs][peri_kp],beta,p[rhs][peri_back],p[rhs][peri_kp]); |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	RealD rrn=sqrt(rn[rhs]/ssq[rhs]); |  | ||||||
| 	RealD rtn=sqrt(rtz[rhs]/ssq[rhs]); |  | ||||||
| 	RealD rtnp=sqrt(rtzp[rhs]/ssq[rhs]); |  | ||||||
| 	 |  | ||||||
| 	std::cout<<GridLogMessage<<"HDCG: rhs "<<rhs<<"fPcg k= "<<k<<" residual = "<<rrn<<"\n"; |  | ||||||
| 	if ( rrn > max_rn ) max_rn = rrn; |  | ||||||
|       } |  | ||||||
|  |  | ||||||
|       // Stopping condition based on worst case |  | ||||||
|       if ( max_rn <= Tolerance ) {  |  | ||||||
|  |  | ||||||
| 	HDCGTimer.Stop(); |  | ||||||
| 	std::cout<<GridLogMessage<<"HDCG: mrhs fPcg converged in "<<k<<" iterations and "<<HDCGTimer.Elapsed()<<std::endl;; |  | ||||||
|  |  | ||||||
| 	for(int rhs=0;rhs<nrhs;rhs++){ |  | ||||||
| 	  _FineLinop.HermOp(x[rhs],mmp[rhs][0]);			   |  | ||||||
| 	  Field tmp(grid); |  | ||||||
| 	  axpy(tmp,-1.0,src[rhs],mmp[rhs][0]); |  | ||||||
|        |  | ||||||
| 	  RealD  mmpnorm = sqrt(norm2(mmp[rhs][0])); |  | ||||||
| 	  RealD  xnorm   = sqrt(norm2(x[rhs])); |  | ||||||
| 	  RealD  srcnorm = sqrt(norm2(src[rhs])); |  | ||||||
| 	  RealD  tmpnorm = sqrt(norm2(tmp)); |  | ||||||
| 	  RealD  true_residual = tmpnorm/srcnorm; |  | ||||||
| 	  std::cout<<GridLogMessage |  | ||||||
| 		   <<"HDCG: true residual ["<<rhs<<"] is "<<true_residual |  | ||||||
| 		   <<" solution "<<xnorm |  | ||||||
| 		   <<" source "<<srcnorm |  | ||||||
| 		   <<" mmp "<<mmpnorm	   |  | ||||||
| 		   <<std::endl; |  | ||||||
| 	} |  | ||||||
| 	return; |  | ||||||
|       } |  | ||||||
|        |  | ||||||
|     } |  | ||||||
|     HDCGTimer.Stop(); |  | ||||||
|     std::cout<<GridLogMessage<<"HDCG: not converged "<<HDCGTimer.Elapsed()<<std::endl; |  | ||||||
|     for(int rhs=0;rhs<nrhs;rhs++){ |  | ||||||
|       RealD  xnorm   = sqrt(norm2(x[rhs])); |  | ||||||
|       RealD  srcnorm = sqrt(norm2(src[rhs])); |  | ||||||
|       std::cout<<GridLogMessage<<"HDCG: non-converged solution "<<xnorm<<" source "<<srcnorm<<std::endl; |  | ||||||
|     } |  | ||||||
|   } |  | ||||||
|    |  | ||||||
|  |  | ||||||
|  public: |  public: | ||||||
|  |  | ||||||
|   virtual void PcgM1(std::vector<Field> & in,std::vector<Field> & out) |   virtual void M(Field & in,Field & out,Field & tmp) { | ||||||
|   { |  | ||||||
|     std::cout << "PcgM1 default (cheat) mrhs version"<<std::endl; |  | ||||||
|     for(int rhs=0;rhs<in.size();rhs++){ |  | ||||||
|       this->PcgM1(in[rhs],out[rhs]); |  | ||||||
|     } |  | ||||||
|   } |  | ||||||
|   virtual void PcgM1(Field & in, Field & out)     =0; |  | ||||||
|   virtual void Vstart(std::vector<Field> & x,std::vector<Field> & src) |  | ||||||
|   { |  | ||||||
|     std::cout << "Vstart default (cheat) mrhs version"<<std::endl; |  | ||||||
|     for(int rhs=0;rhs<x.size();rhs++){ |  | ||||||
|       this->Vstart(x[rhs],src[rhs]); |  | ||||||
|     } |  | ||||||
|   } |  | ||||||
|   virtual void Vstart(Field & x,const Field & src)=0; |  | ||||||
|  |  | ||||||
|   virtual void PcgM2(const Field & in, Field & out) { |  | ||||||
|     out=in; |  | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   virtual RealD PcgM3(const Field & p, Field & mmp){ |   virtual void M1(Field & in, Field & out) {// the smoother | ||||||
|     RealD dd; |  | ||||||
|     _FineLinop.HermOp(p,mmp); |  | ||||||
|     ComplexD dot = innerProduct(p,mmp); |  | ||||||
|     dd=real(dot); |  | ||||||
|     return dd; |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|   ///////////////////////////////////////////////////////////////////// |  | ||||||
|   // Only Def1 has non-trivial Vout. |  | ||||||
|   ///////////////////////////////////////////////////////////////////// |  | ||||||
|  |  | ||||||
| }; |  | ||||||
|    |  | ||||||
| template<class Field, class CoarseField, class Aggregation> |  | ||||||
| class TwoLevelADEF2 : public TwoLevelCG<Field> |  | ||||||
| { |  | ||||||
|  public: |  | ||||||
|   /////////////////////////////////////////////////////////////////////////////////// |  | ||||||
|   // Need something that knows how to get from Coarse to fine and back again |  | ||||||
|   //  void ProjectToSubspace(CoarseVector &CoarseVec,const FineField &FineVec){ |  | ||||||
|   //  void PromoteFromSubspace(const CoarseVector &CoarseVec,FineField &FineVec){ |  | ||||||
|   /////////////////////////////////////////////////////////////////////////////////// |  | ||||||
|   GridBase *coarsegrid; |  | ||||||
|   Aggregation &_Aggregates;                     |  | ||||||
|   LinearFunction<CoarseField> &_CoarseSolver; |  | ||||||
|   LinearFunction<CoarseField> &_CoarseSolverPrecise; |  | ||||||
|   /////////////////////////////////////////////////////////////////////////////////// |  | ||||||
|    |  | ||||||
|   // more most opertor functions |  | ||||||
|   TwoLevelADEF2(RealD tol, |  | ||||||
| 		Integer maxit, |  | ||||||
| 		LinearOperatorBase<Field>    &FineLinop, |  | ||||||
| 		LinearFunction<Field>        &Smoother, |  | ||||||
| 		LinearFunction<CoarseField>  &CoarseSolver, |  | ||||||
| 		LinearFunction<CoarseField>  &CoarseSolverPrecise, |  | ||||||
| 		Aggregation &Aggregates |  | ||||||
| 		) : |  | ||||||
|       TwoLevelCG<Field>(tol,maxit,FineLinop,Smoother,Aggregates.FineGrid), |  | ||||||
|       _CoarseSolver(CoarseSolver), |  | ||||||
|       _CoarseSolverPrecise(CoarseSolverPrecise), |  | ||||||
|       _Aggregates(Aggregates) |  | ||||||
|   { |  | ||||||
|     coarsegrid = Aggregates.CoarseGrid; |  | ||||||
|   }; |  | ||||||
|  |  | ||||||
|   virtual void PcgM1(Field & in, Field & out) |  | ||||||
|   { |  | ||||||
|     GRID_TRACE("MultiGridPreconditioner "); |  | ||||||
|     // [PTM+Q] in = [1 - Q A] M in + Q in = Min + Q [ in -A Min] |     // [PTM+Q] in = [1 - Q A] M in + Q in = Min + Q [ in -A Min] | ||||||
|  |     Field tmp(grid); | ||||||
|  |     Field Min(grid); | ||||||
|  |  | ||||||
|     Field tmp(this->grid); |     PcgM(in,Min); // Smoother call | ||||||
|     Field Min(this->grid); |  | ||||||
|     CoarseField PleftProj(this->coarsegrid); |  | ||||||
|     CoarseField PleftMss_proj(this->coarsegrid); |  | ||||||
|  |  | ||||||
|     GridStopWatch SmootherTimer; |     HermOp(Min,out); | ||||||
|     GridStopWatch MatrixTimer; |  | ||||||
|     SmootherTimer.Start(); |  | ||||||
|     this->_Smoother(in,Min); |  | ||||||
|     SmootherTimer.Stop(); |  | ||||||
|  |  | ||||||
|     MatrixTimer.Start(); |  | ||||||
|     this->_FineLinop.HermOp(Min,out); |  | ||||||
|     MatrixTimer.Stop(); |  | ||||||
|     axpy(tmp,-1.0,out,in);          // tmp  = in - A Min |     axpy(tmp,-1.0,out,in);          // tmp  = in - A Min | ||||||
|  |  | ||||||
|     GridStopWatch ProjTimer; |     ProjectToSubspace(tmp,PleftProj);      | ||||||
|     GridStopWatch CoarseTimer; |     ApplyInverse(PleftProj,PleftMss_proj); // Ass^{-1} [in - A Min]_s | ||||||
|     GridStopWatch PromTimer; |     PromoteFromSubspace(PleftMss_proj,tmp);// tmp = Q[in - A Min]   | ||||||
|     ProjTimer.Start(); |  | ||||||
|     this->_Aggregates.ProjectToSubspace(PleftProj,tmp);      |  | ||||||
|     ProjTimer.Stop(); |  | ||||||
|     CoarseTimer.Start(); |  | ||||||
|     this->_CoarseSolver(PleftProj,PleftMss_proj); // Ass^{-1} [in - A Min]_s |  | ||||||
|     CoarseTimer.Stop(); |  | ||||||
|     PromTimer.Start(); |  | ||||||
|     this->_Aggregates.PromoteFromSubspace(PleftMss_proj,tmp);// tmp = Q[in - A Min]   |  | ||||||
|     PromTimer.Stop(); |  | ||||||
|     std::cout << GridLogPerformance << "PcgM1 breakdown "<<std::endl; |  | ||||||
|     std::cout << GridLogPerformance << "\tSmoother   " << SmootherTimer.Elapsed() <<std::endl; |  | ||||||
|     std::cout << GridLogPerformance << "\tMatrix     " << MatrixTimer.Elapsed() <<std::endl; |  | ||||||
|     std::cout << GridLogPerformance << "\tProj       " << ProjTimer.Elapsed() <<std::endl; |  | ||||||
|     std::cout << GridLogPerformance << "\tCoarse     " << CoarseTimer.Elapsed() <<std::endl; |  | ||||||
|     std::cout << GridLogPerformance << "\tProm       " << PromTimer.Elapsed() <<std::endl; |  | ||||||
|  |  | ||||||
|     axpy(out,1.0,Min,tmp); // Min+tmp |     axpy(out,1.0,Min,tmp); // Min+tmp | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   virtual void Vstart(Field & x,const Field & src) |   virtual void M2(const Field & in, Field & out) { | ||||||
|   { |     out=in; | ||||||
|     std::cout << GridLogMessage<<"HDCG: fPcg Vstart "<<std::endl; |     // Must override for Def2 only | ||||||
|  |     //  case PcgDef2: | ||||||
|  |     //    Pright(in,out); | ||||||
|  |     //    break; | ||||||
|  |   } | ||||||
|  |  | ||||||
|  |   virtual RealD M3(const Field & p, Field & mmp){ | ||||||
|  |     double d,dd; | ||||||
|  |     HermOpAndNorm(p,mmp,d,dd); | ||||||
|  |     return dd; | ||||||
|  |     // Must override for Def1 only | ||||||
|  |     //  case PcgDef1: | ||||||
|  |     //    d=linop_d->Mprec(p,mmp,tmp,0,1);// Dag no | ||||||
|  |     //      linop_d->Mprec(mmp,mp,tmp,1);// Dag yes | ||||||
|  |     //    Pleft(mp,mmp); | ||||||
|  |     //    d=real(linop_d->inner(p,mmp)); | ||||||
|  |   } | ||||||
|  |  | ||||||
|  |   virtual void VstartDef2(Field & xconst Field & src){ | ||||||
|  |     //case PcgDef2: | ||||||
|  |     //case PcgAdef2:  | ||||||
|  |     //case PcgAdef2f: | ||||||
|  |     //case PcgV11f: | ||||||
|     /////////////////////////////////// |     /////////////////////////////////// | ||||||
|     // Choose x_0 such that  |     // Choose x_0 such that  | ||||||
|     // x_0 = guess +  (A_ss^inv) r_s = guess + Ass_inv [src -Aguess] |     // x_0 = guess +  (A_ss^inv) r_s = guess + Ass_inv [src -Aguess] | ||||||
| @@ -522,78 +256,142 @@ class TwoLevelADEF2 : public TwoLevelCG<Field> | |||||||
|     //                   = src_s - (A guess)_s - src_s  + (A guess)_s  |     //                   = src_s - (A guess)_s - src_s  + (A guess)_s  | ||||||
|     //                   = 0  |     //                   = 0  | ||||||
|     /////////////////////////////////// |     /////////////////////////////////// | ||||||
|     Field r(this->grid); |     Field r(grid); | ||||||
|     Field mmp(this->grid); |     Field mmp(grid); | ||||||
|     CoarseField PleftProj(this->coarsegrid); |      | ||||||
|     CoarseField PleftMss_proj(this->coarsegrid); |     HermOp(x,mmp); | ||||||
|  |     axpy (r, -1.0, mmp, src);        // r_{-1} = src - A x | ||||||
|     std::cout << GridLogMessage<<"HDCG: fPcg Vstart projecting "<<std::endl; |     ProjectToSubspace(r,PleftProj);      | ||||||
|     this->_Aggregates.ProjectToSubspace(PleftProj,src);      |     ApplyInverseCG(PleftProj,PleftMss_proj); // Ass^{-1} r_s | ||||||
|     std::cout << GridLogMessage<<"HDCG: fPcg Vstart coarse solve "<<std::endl; |     PromoteFromSubspace(PleftMss_proj,mmp);   | ||||||
|     this->_CoarseSolverPrecise(PleftProj,PleftMss_proj); // Ass^{-1} r_s |     x=x+mmp; | ||||||
|     std::cout << GridLogMessage<<"HDCG: fPcg Vstart promote "<<std::endl; |  | ||||||
|     this->_Aggregates.PromoteFromSubspace(PleftMss_proj,x);   |  | ||||||
|  |  | ||||||
|   } |   } | ||||||
|  |  | ||||||
| }; |  | ||||||
|  |  | ||||||
|    |  | ||||||
| template<class Field> |  | ||||||
| class TwoLevelADEF1defl : public TwoLevelCG<Field> |  | ||||||
| { |  | ||||||
| public: |  | ||||||
|   const std::vector<Field> &evec; |  | ||||||
|   const std::vector<RealD> &eval; |  | ||||||
|    |  | ||||||
|   TwoLevelADEF1defl(RealD tol, |  | ||||||
| 		   Integer maxit, |  | ||||||
| 		   LinearOperatorBase<Field>   &FineLinop, |  | ||||||
| 		   LinearFunction<Field>   &Smoother, |  | ||||||
| 		   std::vector<Field> &_evec, |  | ||||||
| 		   std::vector<RealD> &_eval) :  |  | ||||||
|     TwoLevelCG<Field>(tol,maxit,FineLinop,Smoother,_evec[0].Grid()), |  | ||||||
|     evec(_evec), |  | ||||||
|     eval(_eval) |  | ||||||
|   {}; |  | ||||||
|  |  | ||||||
|   // Can just inherit existing M2 |  | ||||||
|   // Can just inherit existing M3 |  | ||||||
|  |  | ||||||
|   // Simple vstart - do nothing |  | ||||||
|   virtual void Vstart(Field & x,const Field & src){ |   virtual void Vstart(Field & x,const Field & src){ | ||||||
|     x=src; // Could apply Q |     return; | ||||||
|   }; |  | ||||||
|  |  | ||||||
|   // Override PcgM1 |  | ||||||
|   virtual void PcgM1(Field & in, Field & out) |  | ||||||
|   { |  | ||||||
|     GRID_TRACE("EvecPreconditioner "); |  | ||||||
|     int N=evec.size(); |  | ||||||
|     Field Pin(this->grid); |  | ||||||
|     Field Qin(this->grid); |  | ||||||
|  |  | ||||||
|     //MP  + Q = M(1-AQ) + Q = M |  | ||||||
|     // // If we are eigenvector deflating in coarse space |  | ||||||
|     // // Q   = Sum_i |phi_i> 1/lambda_i <phi_i| |  | ||||||
|     // // A Q = Sum_i |phi_i> <phi_i| |  | ||||||
|     // // M(1-AQ) = M(1-proj) + Q |  | ||||||
|     Qin.Checkerboard()=in.Checkerboard(); |  | ||||||
|     Qin = Zero(); |  | ||||||
|     Pin = in; |  | ||||||
|     for (int i=0;i<N;i++) { |  | ||||||
|       const Field& tmp = evec[i]; |  | ||||||
|       auto ip = TensorRemove(innerProduct(tmp,in)); |  | ||||||
|       axpy(Qin, ip / eval[i],tmp,Qin); |  | ||||||
|       axpy(Pin, -ip ,tmp,Pin); |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     this->_Smoother(Pin,out); |  | ||||||
|  |  | ||||||
|     out = out + Qin; |  | ||||||
|   } |   } | ||||||
| }; |  | ||||||
|  |  | ||||||
| NAMESPACE_END(Grid); |   ///////////////////////////////////////////////////////////////////// | ||||||
|  |   // Only Def1 has non-trivial Vout. Override in Def1 | ||||||
|  |   ///////////////////////////////////////////////////////////////////// | ||||||
|  |   virtual void   Vout  (Field & in, Field & out,Field & src){ | ||||||
|  |     out = in; | ||||||
|  |     //case PcgDef1: | ||||||
|  |     //    //Qb + PT x | ||||||
|  |     //    ProjectToSubspace(src,PleftProj);      | ||||||
|  |     //    ApplyInverse(PleftProj,PleftMss_proj); // Ass^{-1} r_s | ||||||
|  |     //    PromoteFromSubspace(PleftMss_proj,tmp);   | ||||||
|  |     //     | ||||||
|  |     //    Pright(in,out); | ||||||
|  |     //     | ||||||
|  |     //    linop_d->axpy(out,tmp,out,1.0); | ||||||
|  |     //    break; | ||||||
|  |   } | ||||||
|  |  | ||||||
|  |   //////////////////////////////////////////////////////////////////////////////////////////////// | ||||||
|  |   // Pright and Pleft are common to all implementations | ||||||
|  |   //////////////////////////////////////////////////////////////////////////////////////////////// | ||||||
|  |   virtual void Pright(Field & in,Field & out){ | ||||||
|  |     // P_R  = [ 1              0 ]  | ||||||
|  |     //        [ -Mss^-1 Msb    0 ]  | ||||||
|  |     Field in_sbar(grid); | ||||||
|  |  | ||||||
|  |     ProjectToSubspace(in,PleftProj);      | ||||||
|  |     PromoteFromSubspace(PleftProj,out);   | ||||||
|  |     axpy(in_sbar,-1.0,out,in);       // in_sbar = in - in_s  | ||||||
|  |  | ||||||
|  |     HermOp(in_sbar,out); | ||||||
|  |     ProjectToSubspace(out,PleftProj);           // Mssbar in_sbar  (project) | ||||||
|  |  | ||||||
|  |     ApplyInverse     (PleftProj,PleftMss_proj); // Mss^{-1} Mssbar  | ||||||
|  |     PromoteFromSubspace(PleftMss_proj,out);     //  | ||||||
|  |  | ||||||
|  |     axpy(out,-1.0,out,in_sbar);     // in_sbar - Mss^{-1} Mssbar in_sbar | ||||||
|  |   } | ||||||
|  |   virtual void Pleft (Field & in,Field & out){ | ||||||
|  |     // P_L  = [ 1  -Mbs Mss^-1]  | ||||||
|  |     //        [ 0   0         ]  | ||||||
|  |     Field in_sbar(grid); | ||||||
|  |     Field    tmp2(grid); | ||||||
|  |     Field    Mtmp(grid); | ||||||
|  |  | ||||||
|  |     ProjectToSubspace(in,PleftProj);      | ||||||
|  |     PromoteFromSubspace(PleftProj,out);   | ||||||
|  |     axpy(in_sbar,-1.0,out,in);      // in_sbar = in - in_s | ||||||
|  |  | ||||||
|  |     ApplyInverse(PleftProj,PleftMss_proj); // Mss^{-1} in_s | ||||||
|  |     PromoteFromSubspace(PleftMss_proj,out); | ||||||
|  |  | ||||||
|  |     HermOp(out,Mtmp); | ||||||
|  |  | ||||||
|  |     ProjectToSubspace(Mtmp,PleftProj);      // Msbar s Mss^{-1} | ||||||
|  |     PromoteFromSubspace(PleftProj,tmp2); | ||||||
|  |  | ||||||
|  |     axpy(out,-1.0,tmp2,Mtmp); | ||||||
|  |     axpy(out,-1.0,out,in_sbar);     // in_sbar - Msbars Mss^{-1} in_s | ||||||
|  |   } | ||||||
|  | } | ||||||
|  |  | ||||||
|  | template<class Field> | ||||||
|  | class TwoLevelFlexiblePcgADef2 : public TwoLevelFlexiblePcg<Field> { | ||||||
|  |  public: | ||||||
|  |   virtual void M(Field & in,Field & out,Field & tmp){ | ||||||
|  |  | ||||||
|  |   }  | ||||||
|  |   virtual void M1(Field & in, Field & out,Field & tmp,Field & mp){ | ||||||
|  |  | ||||||
|  |   } | ||||||
|  |   virtual void M2(Field & in, Field & out){ | ||||||
|  |  | ||||||
|  |   } | ||||||
|  |   virtual RealD M3(Field & p, Field & mp,Field & mmp, Field & tmp){ | ||||||
|  |  | ||||||
|  |   } | ||||||
|  |   virtual void Vstart(Field & in, Field & src, Field & r, Field & mp, Field & mmp, Field & tmp){ | ||||||
|  |  | ||||||
|  |   } | ||||||
|  | } | ||||||
|  | /* | ||||||
|  | template<class Field> | ||||||
|  | class TwoLevelFlexiblePcgAD : public TwoLevelFlexiblePcg<Field> { | ||||||
|  |  public: | ||||||
|  |   virtual void M(Field & in,Field & out,Field & tmp);  | ||||||
|  |   virtual void M1(Field & in, Field & out,Field & tmp,Field & mp); | ||||||
|  |   virtual void M2(Field & in, Field & out); | ||||||
|  |   virtual RealD M3(Field & p, Field & mp,Field & mmp, Field & tmp); | ||||||
|  |   virtual void Vstart(Field & in, Field & src, Field & r, Field & mp, Field & mmp, Field & tmp); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | template<class Field> | ||||||
|  | class TwoLevelFlexiblePcgDef1 : public TwoLevelFlexiblePcg<Field> { | ||||||
|  |  public: | ||||||
|  |   virtual void M(Field & in,Field & out,Field & tmp);  | ||||||
|  |   virtual void M1(Field & in, Field & out,Field & tmp,Field & mp); | ||||||
|  |   virtual void M2(Field & in, Field & out); | ||||||
|  |   virtual RealD M3(Field & p, Field & mp,Field & mmp, Field & tmp); | ||||||
|  |   virtual void Vstart(Field & in, Field & src, Field & r, Field & mp, Field & mmp, Field & tmp); | ||||||
|  |   virtual void   Vout  (Field & in, Field & out,Field & src,Field & tmp); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | template<class Field> | ||||||
|  | class TwoLevelFlexiblePcgDef2 : public TwoLevelFlexiblePcg<Field> { | ||||||
|  |  public: | ||||||
|  |   virtual void M(Field & in,Field & out,Field & tmp);  | ||||||
|  |   virtual void M1(Field & in, Field & out,Field & tmp,Field & mp); | ||||||
|  |   virtual void M2(Field & in, Field & out); | ||||||
|  |   virtual RealD M3(Field & p, Field & mp,Field & mmp, Field & tmp); | ||||||
|  |   virtual void Vstart(Field & in, Field & src, Field & r, Field & mp, Field & mmp, Field & tmp); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | template<class Field> | ||||||
|  | class TwoLevelFlexiblePcgV11: public TwoLevelFlexiblePcg<Field> { | ||||||
|  |  public: | ||||||
|  |   virtual void M(Field & in,Field & out,Field & tmp);  | ||||||
|  |   virtual void M1(Field & in, Field & out,Field & tmp,Field & mp); | ||||||
|  |   virtual void M2(Field & in, Field & out); | ||||||
|  |   virtual RealD M3(Field & p, Field & mp,Field & mmp, Field & tmp); | ||||||
|  |   virtual void Vstart(Field & in, Field & src, Field & r, Field & mp, Field & mmp, Field & tmp); | ||||||
|  | } | ||||||
|  | */ | ||||||
| #endif | #endif | ||||||
|   | |||||||
| @@ -1,414 +0,0 @@ | |||||||
|     /************************************************************************************* |  | ||||||
|  |  | ||||||
|     Grid physics library, www.github.com/paboyle/Grid  |  | ||||||
|  |  | ||||||
|     Source file: ./lib/algorithms/iterative/AdefGeneric.h |  | ||||||
|  |  | ||||||
|     Copyright (C) 2015 |  | ||||||
|  |  | ||||||
| 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 */ |  | ||||||
| #pragma once |  | ||||||
|  |  | ||||||
|  |  | ||||||
|   /* |  | ||||||
|    * Compared to Tang-2009:  P=Pleft. P^T = PRight Q=MssInv.  |  | ||||||
|    * Script A = SolverMatrix  |  | ||||||
|    * Script P = Preconditioner |  | ||||||
|    * |  | ||||||
|    * Implement ADEF-2 |  | ||||||
|    * |  | ||||||
|    * Vstart = P^Tx + Qb |  | ||||||
|    * M1 = P^TM + Q |  | ||||||
|    * M2=M3=1 |  | ||||||
|    */ |  | ||||||
| NAMESPACE_BEGIN(Grid); |  | ||||||
|  |  | ||||||
|  |  | ||||||
| template<class Field> |  | ||||||
| class TwoLevelCGmrhs |  | ||||||
| { |  | ||||||
|  public: |  | ||||||
|   RealD   Tolerance; |  | ||||||
|   Integer MaxIterations; |  | ||||||
|   GridBase *grid; |  | ||||||
|  |  | ||||||
|   // Fine operator, Smoother, CoarseSolver |  | ||||||
|   LinearOperatorBase<Field>   &_FineLinop; |  | ||||||
|   LinearFunction<Field>   &_Smoother; |  | ||||||
|  |  | ||||||
|   GridStopWatch ProjectTimer; |  | ||||||
|   GridStopWatch PromoteTimer; |  | ||||||
|   GridStopWatch DeflateTimer; |  | ||||||
|   GridStopWatch CoarseTimer; |  | ||||||
|   GridStopWatch FineTimer; |  | ||||||
|   GridStopWatch SmoothTimer; |  | ||||||
|   GridStopWatch InsertTimer; |  | ||||||
|  |  | ||||||
|    |  | ||||||
|   // more most opertor functions |  | ||||||
|   TwoLevelCGmrhs(RealD tol, |  | ||||||
| 		 Integer maxit, |  | ||||||
| 		 LinearOperatorBase<Field>   &FineLinop, |  | ||||||
| 		 LinearFunction<Field>       &Smoother, |  | ||||||
| 		 GridBase *fine) :  |  | ||||||
|     Tolerance(tol),  |  | ||||||
|     MaxIterations(maxit), |  | ||||||
|     _FineLinop(FineLinop), |  | ||||||
|     _Smoother(Smoother) |  | ||||||
|   { |  | ||||||
|     grid       = fine; |  | ||||||
|   }; |  | ||||||
|    |  | ||||||
|   // Vector case |  | ||||||
|   virtual void operator() (std::vector<Field> &src, std::vector<Field> &x) |  | ||||||
|   { |  | ||||||
|     std::cout << GridLogMessage<<"HDCG: mrhs fPcg starting"<<std::endl; |  | ||||||
|     src[0].Grid()->Barrier(); |  | ||||||
|     int nrhs = src.size(); |  | ||||||
|     std::vector<RealD> f(nrhs); |  | ||||||
|     std::vector<RealD> rtzp(nrhs); |  | ||||||
|     std::vector<RealD> rtz(nrhs); |  | ||||||
|     std::vector<RealD> a(nrhs); |  | ||||||
|     std::vector<RealD> d(nrhs); |  | ||||||
|     std::vector<RealD> b(nrhs); |  | ||||||
|     std::vector<RealD> rptzp(nrhs); |  | ||||||
|     ///////////////////////////// |  | ||||||
|     // Set up history vectors |  | ||||||
|     ///////////////////////////// |  | ||||||
|     int mmax = 3; |  | ||||||
|  |  | ||||||
|     std::vector<std::vector<Field> > p(nrhs);   for(int r=0;r<nrhs;r++)  p[r].resize(mmax,grid); |  | ||||||
|     std::vector<std::vector<Field> > mmp(nrhs); for(int r=0;r<nrhs;r++) mmp[r].resize(mmax,grid); |  | ||||||
|     std::vector<std::vector<RealD> > pAp(nrhs); for(int r=0;r<nrhs;r++) pAp[r].resize(mmax); |  | ||||||
|  |  | ||||||
|     std::vector<Field> z(nrhs,grid); |  | ||||||
|     std::vector<Field>  mp (nrhs,grid); |  | ||||||
|     std::vector<Field>  r  (nrhs,grid); |  | ||||||
|     std::vector<Field>  mu (nrhs,grid); |  | ||||||
|  |  | ||||||
|     //Initial residual computation & set up |  | ||||||
|     std::vector<RealD> src_nrm(nrhs); |  | ||||||
|     for(int rhs=0;rhs<nrhs;rhs++) { |  | ||||||
|       src_nrm[rhs]=norm2(src[rhs]); |  | ||||||
|       assert(src_nrm[rhs]!=0.0); |  | ||||||
|     } |  | ||||||
|     std::vector<RealD> tn(nrhs); |  | ||||||
|  |  | ||||||
|     GridStopWatch HDCGTimer; |  | ||||||
|     ////////////////////////// |  | ||||||
|     // x0 = Vstart -- possibly modify guess |  | ||||||
|     ////////////////////////// |  | ||||||
|     Vstart(x,src); |  | ||||||
|  |  | ||||||
|     for(int rhs=0;rhs<nrhs;rhs++){ |  | ||||||
|       // r0 = b -A x0 |  | ||||||
|       _FineLinop.HermOp(x[rhs],mmp[rhs][0]); |  | ||||||
|       axpy (r[rhs], -1.0,mmp[rhs][0], src[rhs]);    // Recomputes r=src-Ax0 |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     ////////////////////////////////// |  | ||||||
|     // Compute z = M1 x |  | ||||||
|     ////////////////////////////////// |  | ||||||
|     // This needs a multiRHS version for acceleration |  | ||||||
|     PcgM1(r,z); |  | ||||||
|  |  | ||||||
|     std::vector<RealD> ssq(nrhs); |  | ||||||
|     std::vector<RealD> rsq(nrhs); |  | ||||||
|     std::vector<Field> pp(nrhs,grid); |  | ||||||
|  |  | ||||||
|     for(int rhs=0;rhs<nrhs;rhs++){ |  | ||||||
|       rtzp[rhs] =real(innerProduct(r[rhs],z[rhs])); |  | ||||||
|       p[rhs][0]=z[rhs]; |  | ||||||
|       ssq[rhs]=norm2(src[rhs]); |  | ||||||
|       rsq[rhs]=  ssq[rhs]*Tolerance*Tolerance; |  | ||||||
|       //      std::cout << GridLogMessage<<"mrhs HDCG: "<<rhs<<" k=0 residual "<<rtzp[rhs]<<" rsq "<<rsq[rhs]<<"\n"; |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     ProjectTimer.Reset(); |  | ||||||
|     PromoteTimer.Reset(); |  | ||||||
|     DeflateTimer.Reset(); |  | ||||||
|     CoarseTimer.Reset(); |  | ||||||
|     SmoothTimer.Reset(); |  | ||||||
|     FineTimer.Reset(); |  | ||||||
|     InsertTimer.Reset(); |  | ||||||
|  |  | ||||||
|     GridStopWatch M1Timer; |  | ||||||
|     GridStopWatch M2Timer; |  | ||||||
|     GridStopWatch M3Timer; |  | ||||||
|     GridStopWatch LinalgTimer; |  | ||||||
|  |  | ||||||
|     HDCGTimer.Start(); |  | ||||||
|  |  | ||||||
|     std::vector<RealD> rn(nrhs); |  | ||||||
|     for (int k=0;k<=MaxIterations;k++){ |  | ||||||
|      |  | ||||||
|       int peri_k  = k % mmax; |  | ||||||
|       int peri_kp = (k+1) % mmax; |  | ||||||
|  |  | ||||||
|       for(int rhs=0;rhs<nrhs;rhs++){ |  | ||||||
| 	rtz[rhs]=rtzp[rhs]; |  | ||||||
| 	M3Timer.Start(); |  | ||||||
| 	d[rhs]= PcgM3(p[rhs][peri_k],mmp[rhs][peri_k]); |  | ||||||
| 	M3Timer.Stop(); |  | ||||||
| 	a[rhs] = rtz[rhs]/d[rhs]; |  | ||||||
|  |  | ||||||
| 	LinalgTimer.Start(); |  | ||||||
| 	// Memorise this |  | ||||||
| 	pAp[rhs][peri_k] = d[rhs]; |  | ||||||
|  |  | ||||||
| 	axpy(x[rhs],a[rhs],p[rhs][peri_k],x[rhs]); |  | ||||||
| 	rn[rhs] = axpy_norm(r[rhs],-a[rhs],mmp[rhs][peri_k],r[rhs]); |  | ||||||
| 	LinalgTimer.Stop(); |  | ||||||
|       } |  | ||||||
|  |  | ||||||
|       // Compute z = M x (for *all* RHS) |  | ||||||
|       M1Timer.Start(); |  | ||||||
|       PcgM1(r,z); |  | ||||||
|       M1Timer.Stop(); |  | ||||||
|        |  | ||||||
|       RealD max_rn=0.0; |  | ||||||
|       LinalgTimer.Start(); |  | ||||||
|       for(int rhs=0;rhs<nrhs;rhs++){ |  | ||||||
|  |  | ||||||
| 	rtzp[rhs] =real(innerProduct(r[rhs],z[rhs])); |  | ||||||
|  |  | ||||||
| 	//	std::cout << GridLogMessage<<"HDCG::fPcg rhs"<<rhs<<" iteration "<<k<<" : inner rtzp "<<rtzp[rhs]<<"\n"; |  | ||||||
| 	mu[rhs]=z[rhs]; |  | ||||||
|  |  | ||||||
| 	p[rhs][peri_kp]=mu[rhs]; |  | ||||||
|  |  | ||||||
| 	// Standard search direction p == z + b p  |  | ||||||
| 	b[rhs] = (rtzp[rhs])/rtz[rhs]; |  | ||||||
|  |  | ||||||
| 	int northog = (k>mmax-1)?(mmax-1):k;        // This is the fCG-Tr(mmax-1) algorithm |  | ||||||
| 	for(int back=0; back < northog; back++){ |  | ||||||
| 	  int peri_back = (k-back)%mmax; |  | ||||||
| 	  RealD pbApk= real(innerProduct(mmp[rhs][peri_back],p[rhs][peri_kp])); |  | ||||||
| 	  RealD beta = -pbApk/pAp[rhs][peri_back]; |  | ||||||
| 	  axpy(p[rhs][peri_kp],beta,p[rhs][peri_back],p[rhs][peri_kp]); |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	RealD rrn=sqrt(rn[rhs]/ssq[rhs]); |  | ||||||
| 	RealD rtn=sqrt(rtz[rhs]/ssq[rhs]); |  | ||||||
| 	RealD rtnp=sqrt(rtzp[rhs]/ssq[rhs]); |  | ||||||
| 	 |  | ||||||
| 	std::cout<<GridLogMessage<<"HDCG:fPcg rhs "<<rhs<<" k= "<<k<<" residual = "<<rrn<<"\n"; |  | ||||||
| 	if ( rrn > max_rn ) max_rn = rrn; |  | ||||||
|       } |  | ||||||
|       LinalgTimer.Stop(); |  | ||||||
|  |  | ||||||
|       // Stopping condition based on worst case |  | ||||||
|       if ( max_rn <= Tolerance ) {  |  | ||||||
|  |  | ||||||
| 	HDCGTimer.Stop(); |  | ||||||
| 	std::cout<<GridLogMessage<<"HDCG: mrhs fPcg converged in "<<k<<" iterations and "<<HDCGTimer.Elapsed()<<std::endl;; |  | ||||||
| 	std::cout<<GridLogMessage<<"HDCG: mrhs fPcg : Linalg  "<<LinalgTimer.Elapsed()<<std::endl;; |  | ||||||
| 	std::cout<<GridLogMessage<<"HDCG: mrhs fPcg : fine M3 "<<M3Timer.Elapsed()<<std::endl;; |  | ||||||
| 	std::cout<<GridLogMessage<<"HDCG: mrhs fPcg : prec M1 "<<M1Timer.Elapsed()<<std::endl;; |  | ||||||
| 	std::cout<<GridLogMessage<<"**** M1 breakdown:"<<std::endl; |  | ||||||
| 	std::cout<<GridLogMessage<<"HDCG: mrhs fPcg : Project "<<ProjectTimer.Elapsed()<<std::endl;; |  | ||||||
| 	std::cout<<GridLogMessage<<"HDCG: mrhs fPcg : Promote "<<PromoteTimer.Elapsed()<<std::endl;; |  | ||||||
| 	std::cout<<GridLogMessage<<"HDCG: mrhs fPcg : Deflate "<<DeflateTimer.Elapsed()<<std::endl;; |  | ||||||
| 	std::cout<<GridLogMessage<<"HDCG: mrhs fPcg : Coarse  "<<CoarseTimer.Elapsed()<<std::endl;; |  | ||||||
| 	std::cout<<GridLogMessage<<"HDCG: mrhs fPcg : Fine    "<<FineTimer.Elapsed()<<std::endl;; |  | ||||||
| 	std::cout<<GridLogMessage<<"HDCG: mrhs fPcg : Smooth  "<<SmoothTimer.Elapsed()<<std::endl;; |  | ||||||
| 	std::cout<<GridLogMessage<<"HDCG: mrhs fPcg : Insert  "<<InsertTimer.Elapsed()<<std::endl;; |  | ||||||
|  |  | ||||||
| 	for(int rhs=0;rhs<nrhs;rhs++){ |  | ||||||
| 	  _FineLinop.HermOp(x[rhs],mmp[rhs][0]);			   |  | ||||||
| 	  Field tmp(grid); |  | ||||||
| 	  axpy(tmp,-1.0,src[rhs],mmp[rhs][0]); |  | ||||||
|        |  | ||||||
| 	  RealD  mmpnorm = sqrt(norm2(mmp[rhs][0])); |  | ||||||
| 	  RealD  xnorm   = sqrt(norm2(x[rhs])); |  | ||||||
| 	  RealD  srcnorm = sqrt(norm2(src[rhs])); |  | ||||||
| 	  RealD  tmpnorm = sqrt(norm2(tmp)); |  | ||||||
| 	  RealD  true_residual = tmpnorm/srcnorm; |  | ||||||
| 	  std::cout<<GridLogMessage |  | ||||||
| 		   <<"HDCG: true residual ["<<rhs<<"] is "<<true_residual |  | ||||||
| 		   <<" solution "<<xnorm |  | ||||||
| 		   <<" source "<<srcnorm |  | ||||||
| 		   <<" mmp "<<mmpnorm	   |  | ||||||
| 		   <<std::endl; |  | ||||||
| 	} |  | ||||||
| 	return; |  | ||||||
|       } |  | ||||||
|        |  | ||||||
|     } |  | ||||||
|     HDCGTimer.Stop(); |  | ||||||
|     std::cout<<GridLogMessage<<"HDCG: not converged "<<HDCGTimer.Elapsed()<<std::endl; |  | ||||||
|     for(int rhs=0;rhs<nrhs;rhs++){ |  | ||||||
|       RealD  xnorm   = sqrt(norm2(x[rhs])); |  | ||||||
|       RealD  srcnorm = sqrt(norm2(src[rhs])); |  | ||||||
|       std::cout<<GridLogMessage<<"HDCG: non-converged solution "<<xnorm<<" source "<<srcnorm<<std::endl; |  | ||||||
|     } |  | ||||||
|   } |  | ||||||
|    |  | ||||||
|  |  | ||||||
|  public: |  | ||||||
|  |  | ||||||
|   virtual void PcgM1(std::vector<Field> & in,std::vector<Field> & out) = 0; |  | ||||||
|   virtual void Vstart(std::vector<Field> & x,std::vector<Field> & src) = 0; |  | ||||||
|   virtual void PcgM2(const Field & in, Field & out) { |  | ||||||
|     out=in; |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|   virtual RealD PcgM3(const Field & p, Field & mmp){ |  | ||||||
|     RealD dd; |  | ||||||
|     _FineLinop.HermOp(p,mmp); |  | ||||||
|     ComplexD dot = innerProduct(p,mmp); |  | ||||||
|     dd=real(dot); |  | ||||||
|     return dd; |  | ||||||
|   } |  | ||||||
|  |  | ||||||
| }; |  | ||||||
|  |  | ||||||
| template<class Field, class CoarseField> |  | ||||||
| class TwoLevelADEF2mrhs : public TwoLevelCGmrhs<Field> |  | ||||||
| { |  | ||||||
| public: |  | ||||||
|   GridBase *coarsegrid; |  | ||||||
|   GridBase *coarsegridmrhs; |  | ||||||
|   LinearFunction<CoarseField> &_CoarseSolverMrhs; |  | ||||||
|   LinearFunction<CoarseField> &_CoarseSolverPreciseMrhs; |  | ||||||
|   MultiRHSBlockProject<Field>    &_Projector; |  | ||||||
|   MultiRHSDeflation<CoarseField> &_Deflator; |  | ||||||
|  |  | ||||||
|    |  | ||||||
|   TwoLevelADEF2mrhs(RealD tol, |  | ||||||
| 		    Integer maxit, |  | ||||||
| 		    LinearOperatorBase<Field>    &FineLinop, |  | ||||||
| 		    LinearFunction<Field>        &Smoother, |  | ||||||
| 		    LinearFunction<CoarseField>  &CoarseSolverMrhs, |  | ||||||
| 		    LinearFunction<CoarseField>  &CoarseSolverPreciseMrhs, |  | ||||||
| 		    MultiRHSBlockProject<Field>    &Projector, |  | ||||||
| 		    MultiRHSDeflation<CoarseField> &Deflator, |  | ||||||
| 		    GridBase *_coarsemrhsgrid) : |  | ||||||
|     TwoLevelCGmrhs<Field>(tol, maxit,FineLinop,Smoother,Projector.fine_grid), |  | ||||||
|     _CoarseSolverMrhs(CoarseSolverMrhs), |  | ||||||
|     _CoarseSolverPreciseMrhs(CoarseSolverPreciseMrhs), |  | ||||||
|     _Projector(Projector), |  | ||||||
|     _Deflator(Deflator) |  | ||||||
|   { |  | ||||||
|     coarsegrid = Projector.coarse_grid; |  | ||||||
|     coarsegridmrhs = _coarsemrhsgrid;// Thi could be in projector |  | ||||||
|   }; |  | ||||||
|  |  | ||||||
|   // Override Vstart |  | ||||||
|   virtual void Vstart(std::vector<Field> & x,std::vector<Field> & src) |  | ||||||
|   { |  | ||||||
|     int nrhs=x.size(); |  | ||||||
|     /////////////////////////////////// |  | ||||||
|     // Choose x_0 such that  |  | ||||||
|     // x_0 = guess +  (A_ss^inv) r_s = guess + Ass_inv [src -Aguess] |  | ||||||
|     //                               = [1 - Ass_inv A] Guess + Assinv src |  | ||||||
|     //                               = P^T guess + Assinv src  |  | ||||||
|     //                               = Vstart  [Tang notation] |  | ||||||
|     // This gives: |  | ||||||
|     // W^T (src - A x_0) = src_s - A guess_s - r_s |  | ||||||
|     //                   = src_s - (A guess)_s - src_s  + (A guess)_s  |  | ||||||
|     //                   = 0  |  | ||||||
|     /////////////////////////////////// |  | ||||||
|     std::vector<CoarseField> PleftProj(nrhs,this->coarsegrid); |  | ||||||
|     std::vector<CoarseField> PleftMss_proj(nrhs,this->coarsegrid); |  | ||||||
|     CoarseField PleftProjMrhs(this->coarsegridmrhs); |  | ||||||
|     CoarseField PleftMss_projMrhs(this->coarsegridmrhs); |  | ||||||
|  |  | ||||||
|     this->_Projector.blockProject(src,PleftProj); |  | ||||||
|     this->_Deflator.DeflateSources(PleftProj,PleftMss_proj); |  | ||||||
|     for(int rhs=0;rhs<nrhs;rhs++) { |  | ||||||
|       InsertSliceFast(PleftProj[rhs],PleftProjMrhs,rhs,0); |  | ||||||
|       InsertSliceFast(PleftMss_proj[rhs],PleftMss_projMrhs,rhs,0); // the guess |  | ||||||
|     } |  | ||||||
|      |  | ||||||
|     this->_CoarseSolverPreciseMrhs(PleftProjMrhs,PleftMss_projMrhs); // Ass^{-1} r_s |  | ||||||
|  |  | ||||||
|     for(int rhs=0;rhs<nrhs;rhs++) { |  | ||||||
|       ExtractSliceFast(PleftMss_proj[rhs],PleftMss_projMrhs,rhs,0); |  | ||||||
|     } |  | ||||||
|     this->_Projector.blockPromote(x,PleftMss_proj); |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|   virtual void PcgM1(std::vector<Field> & in,std::vector<Field> & out){ |  | ||||||
|  |  | ||||||
|     int nrhs=in.size(); |  | ||||||
|  |  | ||||||
|     // [PTM+Q] in = [1 - Q A] M in + Q in = Min + Q [ in -A Min] |  | ||||||
|     std::vector<Field> tmp(nrhs,this->grid); |  | ||||||
|     std::vector<Field> Min(nrhs,this->grid); |  | ||||||
|  |  | ||||||
|     std::vector<CoarseField> PleftProj(nrhs,this->coarsegrid); |  | ||||||
|     std::vector<CoarseField> PleftMss_proj(nrhs,this->coarsegrid); |  | ||||||
|  |  | ||||||
|     CoarseField PleftProjMrhs(this->coarsegridmrhs); |  | ||||||
|     CoarseField PleftMss_projMrhs(this->coarsegridmrhs); |  | ||||||
|  |  | ||||||
|     for(int rhs=0;rhs<nrhs;rhs++) { |  | ||||||
|  |  | ||||||
|       this->SmoothTimer.Start(); |  | ||||||
|       this->_Smoother(in[rhs],Min[rhs]); |  | ||||||
|       this->SmoothTimer.Stop(); |  | ||||||
|  |  | ||||||
|       this->FineTimer.Start(); |  | ||||||
|       this->_FineLinop.HermOp(Min[rhs],out[rhs]); |  | ||||||
|  |  | ||||||
|       axpy(tmp[rhs],-1.0,out[rhs],in[rhs]);          // resid  = in - A Min |  | ||||||
|       this->FineTimer.Stop(); |  | ||||||
|  |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     this->ProjectTimer.Start(); |  | ||||||
|     this->_Projector.blockProject(tmp,PleftProj); |  | ||||||
|     this->ProjectTimer.Stop(); |  | ||||||
|     this->DeflateTimer.Start(); |  | ||||||
|     this->_Deflator.DeflateSources(PleftProj,PleftMss_proj); |  | ||||||
|     this->DeflateTimer.Stop(); |  | ||||||
|     this->InsertTimer.Start(); |  | ||||||
|     for(int rhs=0;rhs<nrhs;rhs++) { |  | ||||||
|       InsertSliceFast(PleftProj[rhs],PleftProjMrhs,rhs,0); |  | ||||||
|       InsertSliceFast(PleftMss_proj[rhs],PleftMss_projMrhs,rhs,0); // the guess |  | ||||||
|     } |  | ||||||
|     this->InsertTimer.Stop(); |  | ||||||
|  |  | ||||||
|     this->CoarseTimer.Start(); |  | ||||||
|     this->_CoarseSolverMrhs(PleftProjMrhs,PleftMss_projMrhs); // Ass^{-1} [in - A Min]_s |  | ||||||
|     this->CoarseTimer.Stop(); |  | ||||||
|  |  | ||||||
|     this->InsertTimer.Start(); |  | ||||||
|     for(int rhs=0;rhs<nrhs;rhs++) { |  | ||||||
|       ExtractSliceFast(PleftMss_proj[rhs],PleftMss_projMrhs,rhs,0); |  | ||||||
|     } |  | ||||||
|     this->InsertTimer.Stop(); |  | ||||||
|     this->PromoteTimer.Start(); |  | ||||||
|     this->_Projector.blockPromote(tmp,PleftMss_proj);// tmp= Q[in - A Min]   |  | ||||||
|     this->PromoteTimer.Stop(); |  | ||||||
|     this->FineTimer.Start(); |  | ||||||
|     for(int rhs=0;rhs<nrhs;rhs++) { |  | ||||||
|       axpy(out[rhs],1.0,Min[rhs],tmp[rhs]); // Min+tmp |  | ||||||
|     } |  | ||||||
|     this->FineTimer.Stop(); |  | ||||||
|   } |  | ||||||
| }; |  | ||||||
|    |  | ||||||
|  |  | ||||||
| NAMESPACE_END(Grid); |  | ||||||
|  |  | ||||||
|  |  | ||||||
| @@ -54,14 +54,11 @@ public: | |||||||
|   ConjugateGradient(RealD tol, Integer maxit, bool err_on_no_conv = true) |   ConjugateGradient(RealD tol, Integer maxit, bool err_on_no_conv = true) | ||||||
|     : Tolerance(tol), |     : Tolerance(tol), | ||||||
|       MaxIterations(maxit), |       MaxIterations(maxit), | ||||||
|       ErrorOnNoConverge(err_on_no_conv) |       ErrorOnNoConverge(err_on_no_conv){}; | ||||||
|   {}; |  | ||||||
|  |  | ||||||
|   void operator()(LinearOperatorBase<Field> &Linop, const Field &src, Field &psi) { |   void operator()(LinearOperatorBase<Field> &Linop, const Field &src, Field &psi) { | ||||||
|  |  | ||||||
|     GRID_TRACE("ConjugateGradient"); |     GRID_TRACE("ConjugateGradient"); | ||||||
|     GridStopWatch PreambleTimer; |  | ||||||
|     PreambleTimer.Start(); |  | ||||||
|     psi.Checkerboard() = src.Checkerboard(); |     psi.Checkerboard() = src.Checkerboard(); | ||||||
|  |  | ||||||
|     conformable(psi, src); |     conformable(psi, src); | ||||||
| @@ -69,26 +66,22 @@ public: | |||||||
|     RealD cp, c, a, d, b, ssq, qq; |     RealD cp, c, a, d, b, ssq, qq; | ||||||
|     //RealD b_pred; |     //RealD b_pred; | ||||||
|  |  | ||||||
|     // Was doing copies |     Field p(src); | ||||||
|     Field p(src.Grid()); |     Field mmp(src); | ||||||
|     Field mmp(src.Grid()); |     Field r(src); | ||||||
|     Field r(src.Grid()); |  | ||||||
|  |  | ||||||
|     // Initial residual computation & set up |     // Initial residual computation & set up | ||||||
|     ssq = norm2(src); |  | ||||||
|     RealD guess = norm2(psi); |     RealD guess = norm2(psi); | ||||||
|     assert(std::isnan(guess) == 0); |     assert(std::isnan(guess) == 0); | ||||||
|     if ( guess == 0.0 ) { |      | ||||||
|       r = src; |     Linop.HermOpAndNorm(psi, mmp, d, b); | ||||||
|       p = r; |      | ||||||
|       a = ssq; |     r = src - mmp; | ||||||
|     } else {  |     p = r; | ||||||
|       Linop.HermOpAndNorm(psi, mmp, d, b); |  | ||||||
|       r = src - mmp; |     a = norm2(p); | ||||||
|       p = r; |  | ||||||
|       a = norm2(p); |  | ||||||
|     } |  | ||||||
|     cp = a; |     cp = a; | ||||||
|  |     ssq = norm2(src); | ||||||
|  |  | ||||||
|     // Handle trivial case of zero src |     // Handle trivial case of zero src | ||||||
|     if (ssq == 0.){ |     if (ssq == 0.){ | ||||||
| @@ -118,7 +111,6 @@ public: | |||||||
|     std::cout << GridLogIterative << std::setprecision(8) |     std::cout << GridLogIterative << std::setprecision(8) | ||||||
|               << "ConjugateGradient: k=0 residual " << cp << " target " << rsq << std::endl; |               << "ConjugateGradient: k=0 residual " << cp << " target " << rsq << std::endl; | ||||||
|  |  | ||||||
|     PreambleTimer.Stop(); |  | ||||||
|     GridStopWatch LinalgTimer; |     GridStopWatch LinalgTimer; | ||||||
|     GridStopWatch InnerTimer; |     GridStopWatch InnerTimer; | ||||||
|     GridStopWatch AxpyNormTimer; |     GridStopWatch AxpyNormTimer; | ||||||
| @@ -191,14 +183,13 @@ public: | |||||||
| 		  << "\tTrue residual " << true_residual | 		  << "\tTrue residual " << true_residual | ||||||
| 		  << "\tTarget " << Tolerance << std::endl; | 		  << "\tTarget " << Tolerance << std::endl; | ||||||
|  |  | ||||||
| 	//	std::cout << GridLogMessage << "\tPreamble   " << PreambleTimer.Elapsed() <<std::endl; |         std::cout << GridLogMessage << "Time breakdown "<<std::endl; | ||||||
| 	std::cout << GridLogMessage << "\tSolver Elapsed    " << SolverTimer.Elapsed() <<std::endl; | 	std::cout << GridLogMessage << "\tElapsed    " << SolverTimer.Elapsed() <<std::endl; | ||||||
|         std::cout << GridLogPerformance << "Time breakdown "<<std::endl; | 	std::cout << GridLogMessage << "\tMatrix     " << MatrixTimer.Elapsed() <<std::endl; | ||||||
| 	std::cout << GridLogPerformance << "\tMatrix     " << MatrixTimer.Elapsed() <<std::endl; | 	std::cout << GridLogMessage << "\tLinalg     " << LinalgTimer.Elapsed() <<std::endl; | ||||||
| 	std::cout << GridLogPerformance << "\tLinalg     " << LinalgTimer.Elapsed() <<std::endl; | 	std::cout << GridLogMessage << "\tInner      " << InnerTimer.Elapsed() <<std::endl; | ||||||
| 	std::cout << GridLogPerformance << "\t\tInner      " << InnerTimer.Elapsed() <<std::endl; | 	std::cout << GridLogMessage << "\tAxpyNorm   " << AxpyNormTimer.Elapsed() <<std::endl; | ||||||
| 	std::cout << GridLogPerformance << "\t\tAxpyNorm   " << AxpyNormTimer.Elapsed() <<std::endl; | 	std::cout << GridLogMessage << "\tLinearComb " << LinearCombTimer.Elapsed() <<std::endl; | ||||||
| 	std::cout << GridLogPerformance << "\t\tLinearComb " << LinearCombTimer.Elapsed() <<std::endl; |  | ||||||
|  |  | ||||||
| 	std::cout << GridLogDebug << "\tMobius flop rate " << DwfFlops/ usecs<< " Gflops " <<std::endl; | 	std::cout << GridLogDebug << "\tMobius flop rate " << DwfFlops/ usecs<< " Gflops " <<std::endl; | ||||||
|  |  | ||||||
| @@ -211,22 +202,12 @@ public: | |||||||
|       } |       } | ||||||
|     } |     } | ||||||
|     // Failed. Calculate true residual before giving up                                                          |     // Failed. Calculate true residual before giving up                                                          | ||||||
|     // Linop.HermOpAndNorm(psi, mmp, d, qq); |     Linop.HermOpAndNorm(psi, mmp, d, qq); | ||||||
|     //    p = mmp - src; |     p = mmp - src; | ||||||
|     //TrueResidual = sqrt(norm2(p)/ssq); |  | ||||||
|     //    TrueResidual = 1; |  | ||||||
|  |  | ||||||
|     std::cout << GridLogMessage << "ConjugateGradient did NOT converge "<<k<<" / "<< MaxIterations |     TrueResidual = sqrt(norm2(p)/ssq); | ||||||
|     	      <<" residual "<< std::sqrt(cp / ssq)<< std::endl; |  | ||||||
|     SolverTimer.Stop(); |     std::cout << GridLogMessage << "ConjugateGradient did NOT converge "<<k<<" / "<< MaxIterations<< std::endl; | ||||||
|     std::cout << GridLogMessage << "\tPreamble   " << PreambleTimer.Elapsed() <<std::endl; |  | ||||||
|     std::cout << GridLogMessage << "\tSolver     " << SolverTimer.Elapsed() <<std::endl; |  | ||||||
|     std::cout << GridLogMessage << "Solver breakdown "<<std::endl; |  | ||||||
|     std::cout << GridLogMessage << "\tMatrix     " << MatrixTimer.Elapsed() <<std::endl; |  | ||||||
|     std::cout << GridLogMessage<< "\tLinalg     " << LinalgTimer.Elapsed() <<std::endl; |  | ||||||
|     std::cout << GridLogPerformance << "\t\tInner      " << InnerTimer.Elapsed() <<std::endl; |  | ||||||
|     std::cout << GridLogPerformance << "\t\tAxpyNorm   " << AxpyNormTimer.Elapsed() <<std::endl; |  | ||||||
|     std::cout << GridLogPerformance << "\t\tLinearComb " << LinearCombTimer.Elapsed() <<std::endl; |  | ||||||
|  |  | ||||||
|     if (ErrorOnNoConverge) assert(0); |     if (ErrorOnNoConverge) assert(0); | ||||||
|     IterationsToComplete = k; |     IterationsToComplete = k; | ||||||
|   | |||||||
| @@ -144,7 +144,7 @@ public: | |||||||
|     for(int s=0;s<nshift;s++){ |     for(int s=0;s<nshift;s++){ | ||||||
|       rsq[s] = cp * mresidual[s] * mresidual[s]; |       rsq[s] = cp * mresidual[s] * mresidual[s]; | ||||||
|       std::cout<<GridLogMessage<<"ConjugateGradientMultiShift: shift "<<s |       std::cout<<GridLogMessage<<"ConjugateGradientMultiShift: shift "<<s | ||||||
| 	       <<" target resid^2 "<<rsq[s]<<std::endl; | 	       <<" target resid "<<rsq[s]<<std::endl; | ||||||
|       ps[s] = src; |       ps[s] = src; | ||||||
|     } |     } | ||||||
|     // r and p for primary |     // r and p for primary | ||||||
|   | |||||||
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @@ -79,16 +79,14 @@ template<class Field> class ImplicitlyRestartedLanczosHermOpTester  : public Imp | |||||||
|     RealD vv = norm2(v) / ::pow(evalMaxApprox,2.0); |     RealD vv = norm2(v) / ::pow(evalMaxApprox,2.0); | ||||||
|  |  | ||||||
|     std::cout.precision(13); |     std::cout.precision(13); | ||||||
|  |  | ||||||
|     int conv=0; |  | ||||||
|     if( (vv<eresid*eresid) ) conv = 1; |  | ||||||
|  |  | ||||||
|     std::cout<<GridLogIRL  << "[" << std::setw(3)<<j<<"] " |     std::cout<<GridLogIRL  << "[" << std::setw(3)<<j<<"] " | ||||||
| 	     <<"eval = "<<std::setw(25)<< eval << " (" << eval_poly << ")" | 	     <<"eval = "<<std::setw(25)<< eval << " (" << eval_poly << ")" | ||||||
| 	     <<" |H B[i] - eval[i]B[i]|^2 / evalMaxApprox^2 " << std::setw(25) << vv | 	     <<" |H B[i] - eval[i]B[i]|^2 / evalMaxApprox^2 " << std::setw(25) << vv | ||||||
| 	     <<" target " << eresid*eresid << " conv " <<conv |  | ||||||
| 	     <<std::endl; | 	     <<std::endl; | ||||||
|  |  | ||||||
|  |     int conv=0; | ||||||
|  |     if( (vv<eresid*eresid) ) conv = 1; | ||||||
|  |  | ||||||
|     return conv; |     return conv; | ||||||
|   } |   } | ||||||
| }; | }; | ||||||
| @@ -459,7 +457,7 @@ until convergence | |||||||
| 	    std::vector<Field>& evec, | 	    std::vector<Field>& evec, | ||||||
| 	    Field& w,int Nm,int k) | 	    Field& w,int Nm,int k) | ||||||
|   { |   { | ||||||
|     std::cout<<GridLogDebug << "Lanczos step " <<k<<std::endl; |     std::cout<<GridLogIRL << "Lanczos step " <<k<<std::endl; | ||||||
|     const RealD tiny = 1.0e-20; |     const RealD tiny = 1.0e-20; | ||||||
|     assert( k< Nm ); |     assert( k< Nm ); | ||||||
|  |  | ||||||
| @@ -467,7 +465,7 @@ until convergence | |||||||
|  |  | ||||||
|     Field& evec_k = evec[k]; |     Field& evec_k = evec[k]; | ||||||
|  |  | ||||||
|     _PolyOp(evec_k,w);    std::cout<<GridLogDebug << "PolyOp" <<std::endl; |     _PolyOp(evec_k,w);    std::cout<<GridLogIRL << "PolyOp" <<std::endl; | ||||||
|  |  | ||||||
|     if(k>0) w -= lme[k-1] * evec[k-1]; |     if(k>0) w -= lme[k-1] * evec[k-1]; | ||||||
|  |  | ||||||
| @@ -482,18 +480,18 @@ until convergence | |||||||
|     lme[k] = beta; |     lme[k] = beta; | ||||||
|  |  | ||||||
|     if ( (k>0) && ( (k % orth_period) == 0 )) { |     if ( (k>0) && ( (k % orth_period) == 0 )) { | ||||||
|       std::cout<<GridLogDebug << "Orthogonalising " <<k<<std::endl; |       std::cout<<GridLogIRL << "Orthogonalising " <<k<<std::endl; | ||||||
|       orthogonalize(w,evec,k); // orthonormalise |       orthogonalize(w,evec,k); // orthonormalise | ||||||
|       std::cout<<GridLogDebug << "Orthogonalised " <<k<<std::endl; |       std::cout<<GridLogIRL << "Orthogonalised " <<k<<std::endl; | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     if(k < Nm-1) evec[k+1] = w; |     if(k < Nm-1) evec[k+1] = w; | ||||||
|  |  | ||||||
|     std::cout<<GridLogIRL << "Lanczos step alpha[" << k << "] = " << zalph << " beta[" << k << "] = "<<beta<<std::endl; |     std::cout<<GridLogIRL << "alpha[" << k << "] = " << zalph << " beta[" << k << "] = "<<beta<<std::endl; | ||||||
|     if ( beta < tiny )  |     if ( beta < tiny )  | ||||||
|       std::cout<<GridLogIRL << " beta is tiny "<<beta<<std::endl; |       std::cout<<GridLogIRL << " beta is tiny "<<beta<<std::endl; | ||||||
|  |  | ||||||
|     std::cout<<GridLogDebug << "Lanczos step complete " <<k<<std::endl; |     std::cout<<GridLogIRL << "Lanczos step complete " <<k<<std::endl; | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   void diagonalize_Eigen(std::vector<RealD>& lmd, std::vector<RealD>& lme,  |   void diagonalize_Eigen(std::vector<RealD>& lmd, std::vector<RealD>& lme,  | ||||||
|   | |||||||
| @@ -33,7 +33,7 @@ NAMESPACE_BEGIN(Grid); | |||||||
| /////////////////////////////////////////////////////////////////////////////////////////////////////// | /////////////////////////////////////////////////////////////////////////////////////////////////////// | ||||||
| // Take a matrix and form an NE solver calling a Herm solver | // Take a matrix and form an NE solver calling a Herm solver | ||||||
| /////////////////////////////////////////////////////////////////////////////////////////////////////// | /////////////////////////////////////////////////////////////////////////////////////////////////////// | ||||||
| template<class Field> class NormalEquations : public LinearFunction<Field>{ | template<class Field> class NormalEquations { | ||||||
| private: | private: | ||||||
|   SparseMatrixBase<Field> & _Matrix; |   SparseMatrixBase<Field> & _Matrix; | ||||||
|   OperatorFunction<Field> & _HermitianSolver; |   OperatorFunction<Field> & _HermitianSolver; | ||||||
| @@ -60,7 +60,7 @@ public: | |||||||
|   }      |   }      | ||||||
| }; | }; | ||||||
|  |  | ||||||
| template<class Field> class HPDSolver : public LinearFunction<Field> { | template<class Field> class HPDSolver { | ||||||
| private: | private: | ||||||
|   LinearOperatorBase<Field> & _Matrix; |   LinearOperatorBase<Field> & _Matrix; | ||||||
|   OperatorFunction<Field> & _HermitianSolver; |   OperatorFunction<Field> & _HermitianSolver; | ||||||
| @@ -78,13 +78,13 @@ public: | |||||||
|   void operator() (const Field &in, Field &out){ |   void operator() (const Field &in, Field &out){ | ||||||
|   |   | ||||||
|     _Guess(in,out); |     _Guess(in,out); | ||||||
|     _HermitianSolver(_Matrix,in,out);  //M out = in |     _HermitianSolver(_Matrix,in,out);  // Mdag M out = Mdag in | ||||||
|  |  | ||||||
|   }      |   }      | ||||||
| }; | }; | ||||||
|  |  | ||||||
|  |  | ||||||
| template<class Field> class MdagMSolver : public LinearFunction<Field> { | template<class Field> class MdagMSolver { | ||||||
| private: | private: | ||||||
|   SparseMatrixBase<Field> & _Matrix; |   SparseMatrixBase<Field> & _Matrix; | ||||||
|   OperatorFunction<Field> & _HermitianSolver; |   OperatorFunction<Field> & _HermitianSolver; | ||||||
|   | |||||||
| @@ -20,7 +20,7 @@ template<class Field> class PowerMethod | |||||||
|     RealD evalMaxApprox = 0.0;  |     RealD evalMaxApprox = 0.0;  | ||||||
|     auto src_n = src;  |     auto src_n = src;  | ||||||
|     auto tmp = src;  |     auto tmp = src;  | ||||||
|     const int _MAX_ITER_EST_ = 100;  |     const int _MAX_ITER_EST_ = 50;  | ||||||
|  |  | ||||||
|     for (int i=0;i<_MAX_ITER_EST_;i++) {  |     for (int i=0;i<_MAX_ITER_EST_;i++) {  | ||||||
|        |        | ||||||
|   | |||||||
| @@ -499,87 +499,6 @@ namespace Grid { | |||||||
|       } |       } | ||||||
|   }; |   }; | ||||||
|  |  | ||||||
|   /////////////////////////////////////////////////////////////////////////////////////////////////////// |  | ||||||
|   // Site diagonal is identity, left preconditioned by Mee^inv |  | ||||||
|   // ( 1 - Mee^inv Meo Moo^inv Moe ) phi = Mee_inv ( Mee - Meo Moo^inv Moe Mee^inv  ) phi =  Mee_inv eta |  | ||||||
|   // |  | ||||||
|   // Solve: |  | ||||||
|   // ( 1 - Mee^inv Meo Moo^inv Moe )^dag ( 1 - Mee^inv Meo Moo^inv Moe ) phi = ( 1 - Mee^inv Meo Moo^inv Moe )^dag  Mee_inv eta |  | ||||||
|   // |  | ||||||
|   // Old notation e<->o |  | ||||||
|   // |  | ||||||
|   // Left precon by Moo^-1 |  | ||||||
|   //  b) (Doo^{dag} M_oo^-dag) (Moo^-1 Doo) psi_o =  [ (D_oo)^dag M_oo^-dag ] Moo^-1 L^{-1}  eta_o |  | ||||||
|   //                                   eta_o'     = (D_oo)^dag  M_oo^-dag Moo^-1 (eta_o - Moe Mee^{-1} eta_e) |  | ||||||
|   /////////////////////////////////////////////////////////////////////////////////////////////////////// |  | ||||||
|   template<class Field> class SchurRedBlackDiagOneSolve : public SchurRedBlackBase<Field> { |  | ||||||
|   public: |  | ||||||
|     typedef CheckerBoardedSparseMatrixBase<Field> Matrix; |  | ||||||
|  |  | ||||||
|     ///////////////////////////////////////////////////// |  | ||||||
|     // Wrap the usual normal equations Schur trick |  | ||||||
|     ///////////////////////////////////////////////////// |  | ||||||
|   SchurRedBlackDiagOneSolve(OperatorFunction<Field> &HermitianRBSolver, const bool initSubGuess = false, |  | ||||||
|       const bool _solnAsInitGuess = false)   |  | ||||||
|     : SchurRedBlackBase<Field>(HermitianRBSolver,initSubGuess,_solnAsInitGuess) {}; |  | ||||||
|  |  | ||||||
|     virtual void RedBlackSource(Matrix & _Matrix,const Field &src, Field &src_e,Field &src_o) |  | ||||||
|     { |  | ||||||
|       GridBase *grid = _Matrix.RedBlackGrid(); |  | ||||||
|       GridBase *fgrid= _Matrix.Grid(); |  | ||||||
|  |  | ||||||
|       SchurDiagOneOperator<Matrix,Field> _HermOpEO(_Matrix); |  | ||||||
|        |  | ||||||
|       Field   tmp(grid); |  | ||||||
|       Field  Mtmp(grid); |  | ||||||
|  |  | ||||||
|       pickCheckerboard(Even,src_e,src); |  | ||||||
|       pickCheckerboard(Odd ,src_o,src); |  | ||||||
|      |  | ||||||
|       ///////////////////////////////////////////////////// |  | ||||||
|       // src_o = Mpcdag *MooeeInv * (source_o - Moe MeeInv source_e) |  | ||||||
|       ///////////////////////////////////////////////////// |  | ||||||
|       _Matrix.MooeeInv(src_e,tmp);     assert(  tmp.Checkerboard() ==Even); |  | ||||||
|       _Matrix.Meooe   (tmp,Mtmp);      assert( Mtmp.Checkerboard() ==Odd);      |  | ||||||
|       Mtmp=src_o-Mtmp;                  |  | ||||||
|       _Matrix.MooeeInv(Mtmp,tmp);      assert( tmp.Checkerboard() ==Odd);      |  | ||||||
|        |  | ||||||
|       // get the right MpcDag |  | ||||||
|       _HermOpEO.MpcDag(tmp,src_o);     assert(src_o.Checkerboard() ==Odd);        |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     virtual void RedBlackSolution(Matrix & _Matrix,const Field &sol_o, const Field &src_e,Field &sol) |  | ||||||
|     { |  | ||||||
|       GridBase *grid = _Matrix.RedBlackGrid(); |  | ||||||
|       GridBase *fgrid= _Matrix.Grid(); |  | ||||||
|  |  | ||||||
|       Field   tmp(grid); |  | ||||||
|       Field   sol_e(grid); |  | ||||||
|  |  | ||||||
|  |  | ||||||
|       /////////////////////////////////////////////////// |  | ||||||
|       // sol_e = M_ee^-1 * ( src_e - Meo sol_o )... |  | ||||||
|       /////////////////////////////////////////////////// |  | ||||||
|       _Matrix.Meooe(sol_o,tmp);    assert(  tmp.Checkerboard()   ==Even); |  | ||||||
|       tmp = src_e-tmp;             assert(  src_e.Checkerboard() ==Even); |  | ||||||
|       _Matrix.MooeeInv(tmp,sol_e); assert(  sol_e.Checkerboard() ==Even); |  | ||||||
|       |  | ||||||
|       setCheckerboard(sol,sol_e);  assert(  sol_e.Checkerboard() ==Even); |  | ||||||
|       setCheckerboard(sol,sol_o);  assert(  sol_o.Checkerboard() ==Odd ); |  | ||||||
|     }; |  | ||||||
|  |  | ||||||
|     virtual void RedBlackSolve   (Matrix & _Matrix,const Field &src_o, Field &sol_o) |  | ||||||
|     { |  | ||||||
|       SchurDiagOneOperator<Matrix,Field> _HermOpEO(_Matrix); |  | ||||||
|       this->_HermitianRBSolver(_HermOpEO,src_o,sol_o); |  | ||||||
|     }; |  | ||||||
|     virtual void RedBlackSolve   (Matrix & _Matrix,const std::vector<Field> &src_o,  std::vector<Field> &sol_o) |  | ||||||
|     { |  | ||||||
|       SchurDiagOneOperator<Matrix,Field> _HermOpEO(_Matrix); |  | ||||||
|       this->_HermitianRBSolver(_HermOpEO,src_o,sol_o);  |  | ||||||
|     } |  | ||||||
|   }; |  | ||||||
|  |  | ||||||
|   /////////////////////////////////////////////////////////////////////////////////////////////////////// |   /////////////////////////////////////////////////////////////////////////////////////////////////////// | ||||||
|   // Site diagonal is identity, right preconditioned by Mee^inv |   // Site diagonal is identity, right preconditioned by Mee^inv | ||||||
|   // ( 1 - Meo Moo^inv Moe Mee^inv  ) phi =( 1 - Meo Moo^inv Moe Mee^inv  ) Mee psi =  = eta  = eta |   // ( 1 - Meo Moo^inv Moe Mee^inv  ) phi =( 1 - Meo Moo^inv Moe Mee^inv  ) Mee psi =  = eta  = eta | ||||||
|   | |||||||
| @@ -1,478 +0,0 @@ | |||||||
| /************************************************************************************* |  | ||||||
|  |  | ||||||
|     Grid physics library, www.github.com/paboyle/Grid  |  | ||||||
|  |  | ||||||
|     Source file: ./lib/algorithms/Aggregates.h |  | ||||||
|  |  | ||||||
|     Copyright (C) 2015 |  | ||||||
|  |  | ||||||
| Author: Azusa Yamaguchi <ayamaguc@staffmail.ed.ac.uk> |  | ||||||
| Author: Peter Boyle <paboyle@ph.ed.ac.uk> |  | ||||||
| Author: Peter Boyle <peterboyle@Peters-MacBook-Pro-2.local> |  | ||||||
| Author: paboyle <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 */ |  | ||||||
| #pragma once |  | ||||||
|  |  | ||||||
| NAMESPACE_BEGIN(Grid); |  | ||||||
|  |  | ||||||
| inline RealD AggregatePowerLaw(RealD x) |  | ||||||
| { |  | ||||||
|   //  return std::pow(x,-4); |  | ||||||
|   //  return std::pow(x,-3); |  | ||||||
|   return std::pow(x,-5); |  | ||||||
| } |  | ||||||
|  |  | ||||||
| template<class Fobj,class CComplex,int nbasis> |  | ||||||
| class Aggregation { |  | ||||||
| public: |  | ||||||
|   constexpr int Nbasis(void) { return nbasis; }; |  | ||||||
|    |  | ||||||
|   typedef iVector<CComplex,nbasis >             siteVector; |  | ||||||
|   typedef Lattice<siteVector>                 CoarseVector; |  | ||||||
|   typedef Lattice<iMatrix<CComplex,nbasis > > CoarseMatrix; |  | ||||||
|  |  | ||||||
|   typedef Lattice< CComplex >   CoarseScalar; // used for inner products on fine field |  | ||||||
|   typedef Lattice<Fobj >        FineField; |  | ||||||
|  |  | ||||||
|   GridBase *CoarseGrid; |  | ||||||
|   GridBase *FineGrid; |  | ||||||
|   std::vector<Lattice<Fobj> > subspace; |  | ||||||
|   int checkerboard; |  | ||||||
|   int Checkerboard(void){return checkerboard;} |  | ||||||
|   Aggregation(GridBase *_CoarseGrid,GridBase *_FineGrid,int _checkerboard) :  |  | ||||||
|     CoarseGrid(_CoarseGrid), |  | ||||||
|     FineGrid(_FineGrid), |  | ||||||
|     subspace(nbasis,_FineGrid), |  | ||||||
|     checkerboard(_checkerboard) |  | ||||||
|   { |  | ||||||
|   }; |  | ||||||
|    |  | ||||||
|    |  | ||||||
|   void Orthogonalise(void){ |  | ||||||
|     CoarseScalar InnerProd(CoarseGrid);  |  | ||||||
|     //    std::cout << GridLogMessage <<" Block Gramm-Schmidt pass 1"<<std::endl; |  | ||||||
|     blockOrthogonalise(InnerProd,subspace); |  | ||||||
|   }  |  | ||||||
|   void ProjectToSubspace(CoarseVector &CoarseVec,const FineField &FineVec){ |  | ||||||
|     blockProject(CoarseVec,FineVec,subspace); |  | ||||||
|   } |  | ||||||
|   void PromoteFromSubspace(const CoarseVector &CoarseVec,FineField &FineVec){ |  | ||||||
|     FineVec.Checkerboard() = subspace[0].Checkerboard(); |  | ||||||
|     blockPromote(CoarseVec,FineVec,subspace); |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|   virtual void CreateSubspaceRandom(GridParallelRNG  &RNG) { |  | ||||||
|     int nn=nbasis; |  | ||||||
|     RealD scale; |  | ||||||
|     FineField noise(FineGrid); |  | ||||||
|     for(int b=0;b<nn;b++){ |  | ||||||
|       subspace[b] = Zero(); |  | ||||||
|       gaussian(RNG,noise); |  | ||||||
|       scale = std::pow(norm2(noise),-0.5);  |  | ||||||
|       noise=noise*scale; |  | ||||||
|       subspace[b] = noise; |  | ||||||
|     } |  | ||||||
|   } |  | ||||||
|   virtual void CreateSubspace(GridParallelRNG  &RNG,LinearOperatorBase<FineField> &hermop,int nn=nbasis) |  | ||||||
|   { |  | ||||||
|  |  | ||||||
|     RealD scale; |  | ||||||
|  |  | ||||||
|     ConjugateGradient<FineField> CG(1.0e-2,100,false); |  | ||||||
|     FineField noise(FineGrid); |  | ||||||
|     FineField Mn(FineGrid); |  | ||||||
|  |  | ||||||
|     for(int b=0;b<nn;b++){ |  | ||||||
|        |  | ||||||
|       subspace[b] = Zero(); |  | ||||||
|       gaussian(RNG,noise); |  | ||||||
|       scale = std::pow(norm2(noise),-0.5);  |  | ||||||
|       noise=noise*scale; |  | ||||||
|        |  | ||||||
|       hermop.Op(noise,Mn); std::cout<<GridLogMessage << "noise   ["<<b<<"] <n|MdagM|n> "<<norm2(Mn)<<std::endl; |  | ||||||
|  |  | ||||||
|       for(int i=0;i<1;i++){ |  | ||||||
|  |  | ||||||
| 	CG(hermop,noise,subspace[b]); |  | ||||||
|  |  | ||||||
| 	noise = subspace[b]; |  | ||||||
| 	scale = std::pow(norm2(noise),-0.5);  |  | ||||||
| 	noise=noise*scale; |  | ||||||
|  |  | ||||||
|       } |  | ||||||
|  |  | ||||||
|       hermop.Op(noise,Mn); std::cout<<GridLogMessage << "filtered["<<b<<"] <f|MdagM|f> "<<norm2(Mn)<<std::endl; |  | ||||||
|       subspace[b]   = noise; |  | ||||||
|  |  | ||||||
|     } |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|   //////////////////////////////////////////////////////////////////////////////////////////////// |  | ||||||
|   // World of possibilities here. But have tried quite a lot of experiments (250+ jobs run on Summit) |  | ||||||
|   // and this is the best I found |  | ||||||
|   //////////////////////////////////////////////////////////////////////////////////////////////// |  | ||||||
|  |  | ||||||
|   virtual void CreateSubspaceChebyshev(GridParallelRNG  &RNG,LinearOperatorBase<FineField> &hermop, |  | ||||||
| 				       int nn, |  | ||||||
| 				       double hi, |  | ||||||
| 				       double lo, |  | ||||||
| 				       int orderfilter, |  | ||||||
| 				       int ordermin, |  | ||||||
| 				       int orderstep, |  | ||||||
| 				       double filterlo |  | ||||||
| 				       ) { |  | ||||||
|  |  | ||||||
|     RealD scale; |  | ||||||
|  |  | ||||||
|     FineField noise(FineGrid); |  | ||||||
|     FineField Mn(FineGrid); |  | ||||||
|     FineField tmp(FineGrid); |  | ||||||
|  |  | ||||||
|     // New normalised noise |  | ||||||
|     gaussian(RNG,noise); |  | ||||||
|     scale = std::pow(norm2(noise),-0.5);  |  | ||||||
|     noise=noise*scale; |  | ||||||
|  |  | ||||||
|     std::cout << GridLogMessage<<" Chebyshev subspace pass-1 : ord "<<orderfilter<<" ["<<lo<<","<<hi<<"]"<<std::endl; |  | ||||||
|     std::cout << GridLogMessage<<" Chebyshev subspace pass-2 : nbasis"<<nn<<" min " |  | ||||||
| 	      <<ordermin<<" step "<<orderstep |  | ||||||
| 	      <<" lo"<<filterlo<<std::endl; |  | ||||||
|  |  | ||||||
|     // Initial matrix element |  | ||||||
|     hermop.Op(noise,Mn); std::cout<<GridLogMessage << "noise <n|MdagM|n> "<<norm2(Mn)<<std::endl; |  | ||||||
|  |  | ||||||
|     int b =0; |  | ||||||
|     { |  | ||||||
|       // Filter |  | ||||||
|       Chebyshev<FineField> Cheb(lo,hi,orderfilter); |  | ||||||
|       Cheb(hermop,noise,Mn); |  | ||||||
|       // normalise |  | ||||||
|       scale = std::pow(norm2(Mn),-0.5); 	Mn=Mn*scale; |  | ||||||
|       subspace[b]   = Mn; |  | ||||||
|       hermop.Op(Mn,tmp);  |  | ||||||
|       std::cout<<GridLogMessage << "filt ["<<b<<"] <n|MdagM|n> "<<norm2(tmp)<<std::endl; |  | ||||||
|       b++; |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     // Generate a full sequence of Chebyshevs |  | ||||||
|     { |  | ||||||
|       lo=filterlo; |  | ||||||
|       noise=Mn; |  | ||||||
|  |  | ||||||
|       FineField T0(FineGrid); T0 = noise;   |  | ||||||
|       FineField T1(FineGrid);  |  | ||||||
|       FineField T2(FineGrid); |  | ||||||
|       FineField y(FineGrid); |  | ||||||
|        |  | ||||||
|       FineField *Tnm = &T0; |  | ||||||
|       FineField *Tn  = &T1; |  | ||||||
|       FineField *Tnp = &T2; |  | ||||||
|  |  | ||||||
|       // Tn=T1 = (xscale M + mscale)in |  | ||||||
|       RealD xscale = 2.0/(hi-lo); |  | ||||||
|       RealD mscale = -(hi+lo)/(hi-lo); |  | ||||||
|       hermop.HermOp(T0,y); |  | ||||||
|       T1=y*xscale+noise*mscale; |  | ||||||
|  |  | ||||||
|       for(int n=2;n<=ordermin+orderstep*(nn-2);n++){ |  | ||||||
| 	 |  | ||||||
| 	hermop.HermOp(*Tn,y); |  | ||||||
|  |  | ||||||
| 	autoView( y_v , y, AcceleratorWrite); |  | ||||||
| 	autoView( Tn_v , (*Tn), AcceleratorWrite); |  | ||||||
| 	autoView( Tnp_v , (*Tnp), AcceleratorWrite); |  | ||||||
| 	autoView( Tnm_v , (*Tnm), AcceleratorWrite); |  | ||||||
| 	const int Nsimd = CComplex::Nsimd(); |  | ||||||
| 	accelerator_for(ss, FineGrid->oSites(), Nsimd, { |  | ||||||
| 	  coalescedWrite(y_v[ss],xscale*y_v(ss)+mscale*Tn_v(ss)); |  | ||||||
| 	  coalescedWrite(Tnp_v[ss],2.0*y_v(ss)-Tnm_v(ss)); |  | ||||||
|         }); |  | ||||||
|  |  | ||||||
| 	// Possible more fine grained control is needed than a linear sweep, |  | ||||||
| 	// but huge productivity gain if this is simple algorithm and not a tunable |  | ||||||
| 	int m =1; |  | ||||||
| 	if ( n>=ordermin ) m=n-ordermin; |  | ||||||
| 	if ( (m%orderstep)==0 ) {  |  | ||||||
| 	  Mn=*Tnp; |  | ||||||
| 	  scale = std::pow(norm2(Mn),-0.5);         Mn=Mn*scale; |  | ||||||
| 	  subspace[b] = Mn; |  | ||||||
| 	  hermop.Op(Mn,tmp);  |  | ||||||
| 	  std::cout<<GridLogMessage << n<<" filt ["<<b<<"] <n|MdagM|n> "<<norm2(tmp)<<std::endl; |  | ||||||
| 	  b++; |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	// Cycle pointers to avoid copies |  | ||||||
| 	FineField *swizzle = Tnm; |  | ||||||
| 	Tnm    =Tn; |  | ||||||
| 	Tn     =Tnp; |  | ||||||
| 	Tnp    =swizzle; |  | ||||||
| 	   |  | ||||||
|       } |  | ||||||
|     } |  | ||||||
|     assert(b==nn); |  | ||||||
|   } |  | ||||||
|   virtual void CreateSubspaceChebyshev(GridParallelRNG  &RNG,LinearOperatorBase<FineField> &hermop, |  | ||||||
| 				       int nn, |  | ||||||
| 				       double hi, |  | ||||||
| 				       double lo, |  | ||||||
| 				       int orderfilter |  | ||||||
| 				       ) { |  | ||||||
|  |  | ||||||
|     RealD scale; |  | ||||||
|  |  | ||||||
|     FineField noise(FineGrid); |  | ||||||
|     FineField Mn(FineGrid); |  | ||||||
|     FineField tmp(FineGrid); |  | ||||||
|  |  | ||||||
|     // New normalised noise |  | ||||||
|     std::cout << GridLogMessage<<" Chebyshev subspace pure noise : ord "<<orderfilter<<" ["<<lo<<","<<hi<<"]"<<std::endl; |  | ||||||
|     std::cout << GridLogMessage<<" Chebyshev subspace pure noise  : nbasis "<<nn<<std::endl; |  | ||||||
|  |  | ||||||
|  |  | ||||||
|     for(int b =0;b<nbasis;b++) |  | ||||||
|     { |  | ||||||
|       gaussian(RNG,noise); |  | ||||||
|       scale = std::pow(norm2(noise),-0.5);  |  | ||||||
|       noise=noise*scale; |  | ||||||
|  |  | ||||||
|       // Initial matrix element |  | ||||||
|       hermop.Op(noise,Mn); |  | ||||||
|       if(b==0) std::cout<<GridLogMessage << "noise <n|MdagM|n> "<<norm2(Mn)<<std::endl; |  | ||||||
|  |  | ||||||
|       // Filter |  | ||||||
|       Chebyshev<FineField> Cheb(lo,hi,orderfilter); |  | ||||||
|       Cheb(hermop,noise,Mn); |  | ||||||
|       scale = std::pow(norm2(Mn),-0.5); 	Mn=Mn*scale; |  | ||||||
|  |  | ||||||
|       // Refine |  | ||||||
|       Chebyshev<FineField> PowerLaw(lo,hi,1000,AggregatePowerLaw); |  | ||||||
|       noise = Mn; |  | ||||||
|       PowerLaw(hermop,noise,Mn); |  | ||||||
|       scale = std::pow(norm2(Mn),-0.5); 	Mn=Mn*scale; |  | ||||||
|  |  | ||||||
|       // normalise |  | ||||||
|       subspace[b]   = Mn; |  | ||||||
|       hermop.Op(Mn,tmp);  |  | ||||||
|       std::cout<<GridLogMessage << "filt ["<<b<<"] <n|MdagM|n> "<<norm2(tmp)<<std::endl; |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|   virtual void CreateSubspaceChebyshevPowerLaw(GridParallelRNG  &RNG,LinearOperatorBase<FineField> &hermop, |  | ||||||
| 					       int nn, |  | ||||||
| 					       double hi, |  | ||||||
| 					       int orderfilter |  | ||||||
| 					       ) { |  | ||||||
|  |  | ||||||
|     RealD scale; |  | ||||||
|  |  | ||||||
|     FineField noise(FineGrid); |  | ||||||
|     FineField Mn(FineGrid); |  | ||||||
|     FineField tmp(FineGrid); |  | ||||||
|  |  | ||||||
|     // New normalised noise |  | ||||||
|     std::cout << GridLogMessage<<" Chebyshev subspace pure noise : ord "<<orderfilter<<" [0,"<<hi<<"]"<<std::endl; |  | ||||||
|     std::cout << GridLogMessage<<" Chebyshev subspace pure noise  : nbasis "<<nn<<std::endl; |  | ||||||
|  |  | ||||||
|     for(int b =0;b<nbasis;b++) |  | ||||||
|     { |  | ||||||
|       gaussian(RNG,noise); |  | ||||||
|       scale = std::pow(norm2(noise),-0.5);  |  | ||||||
|       noise=noise*scale; |  | ||||||
|  |  | ||||||
|       // Initial matrix element |  | ||||||
|       hermop.Op(noise,Mn); |  | ||||||
|       if(b==0) std::cout<<GridLogMessage << "noise <n|MdagM|n> "<<norm2(Mn)<<std::endl; |  | ||||||
|       // Filter |  | ||||||
|       Chebyshev<FineField> Cheb(0.0,hi,orderfilter,AggregatePowerLaw); |  | ||||||
|       Cheb(hermop,noise,Mn); |  | ||||||
|       // normalise |  | ||||||
|       scale = std::pow(norm2(Mn),-0.5); 	Mn=Mn*scale; |  | ||||||
|       subspace[b]   = Mn; |  | ||||||
|       hermop.Op(Mn,tmp);  |  | ||||||
|       std::cout<<GridLogMessage << "filt ["<<b<<"] <n|MdagM|n> "<<norm2(tmp)<<std::endl; |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|   } |  | ||||||
|   virtual void CreateSubspaceChebyshevNew(GridParallelRNG  &RNG,LinearOperatorBase<FineField> &hermop, |  | ||||||
| 					  double hi |  | ||||||
| 					  ) { |  | ||||||
|  |  | ||||||
|     RealD scale; |  | ||||||
|  |  | ||||||
|     FineField noise(FineGrid); |  | ||||||
|     FineField Mn(FineGrid); |  | ||||||
|     FineField tmp(FineGrid); |  | ||||||
|  |  | ||||||
|     // New normalised noise |  | ||||||
|     for(int b =0;b<nbasis;b++) |  | ||||||
|     { |  | ||||||
|       gaussian(RNG,noise); |  | ||||||
|       scale = std::pow(norm2(noise),-0.5);  |  | ||||||
|       noise=noise*scale; |  | ||||||
|  |  | ||||||
|       // Initial matrix element |  | ||||||
|       hermop.Op(noise,Mn); |  | ||||||
|       if(b==0) std::cout<<GridLogMessage << "noise <n|MdagM|n> "<<norm2(Mn)<<std::endl; |  | ||||||
|       // Filter |  | ||||||
|       //#opt2(x) =  acheb(x,3,90,300)* acheb(x,1,90,50) * acheb(x,0.5,90,200) * acheb(x,0.05,90,400) * acheb(x,0.01,90,1500) |  | ||||||
|       /*266 |  | ||||||
|       Chebyshev<FineField> Cheb1(3.0,hi,300); |  | ||||||
|       Chebyshev<FineField> Cheb2(1.0,hi,50); |  | ||||||
|       Chebyshev<FineField> Cheb3(0.5,hi,300); |  | ||||||
|       Chebyshev<FineField> Cheb4(0.05,hi,500); |  | ||||||
|       Chebyshev<FineField> Cheb5(0.01,hi,2000); |  | ||||||
|       */ |  | ||||||
|       /* 242 */ |  | ||||||
|       /* |  | ||||||
|       Chebyshev<FineField> Cheb3(0.1,hi,300); |  | ||||||
|       Chebyshev<FineField> Cheb2(0.02,hi,1000); |  | ||||||
|       Chebyshev<FineField> Cheb1(0.003,hi,2000); |  | ||||||
|       8? |  | ||||||
|       */ |  | ||||||
|       /* How many?? |  | ||||||
|       */ |  | ||||||
|       Chebyshev<FineField> Cheb2(0.001,hi,2500); // 169 iters on HDCG after refine |  | ||||||
|       Chebyshev<FineField> Cheb1(0.02,hi,600); |  | ||||||
|  |  | ||||||
|       //      Chebyshev<FineField> Cheb2(0.001,hi,1500); |  | ||||||
|       //      Chebyshev<FineField> Cheb1(0.02,hi,600); |  | ||||||
|       Cheb1(hermop,noise,Mn); scale = std::pow(norm2(Mn),-0.5); 	noise=Mn*scale; |  | ||||||
|       hermop.Op(noise,tmp); std::cout<<GridLogMessage << "Cheb1 <n|MdagM|n> "<<norm2(tmp)<<std::endl; |  | ||||||
|       Cheb2(hermop,noise,Mn); scale = std::pow(norm2(Mn),-0.5); 	noise=Mn*scale; |  | ||||||
|       hermop.Op(noise,tmp); std::cout<<GridLogMessage << "Cheb2 <n|MdagM|n> "<<norm2(tmp)<<std::endl; |  | ||||||
|       //      Cheb3(hermop,noise,Mn); scale = std::pow(norm2(Mn),-0.5); 	noise=Mn*scale; |  | ||||||
|       //      hermop.Op(noise,tmp); std::cout<<GridLogMessage << "Cheb3 <n|MdagM|n> "<<norm2(tmp)<<std::endl; |  | ||||||
|       //      Cheb4(hermop,noise,Mn); scale = std::pow(norm2(Mn),-0.5); 	noise=Mn*scale; |  | ||||||
|       //      hermop.Op(noise,tmp); std::cout<<GridLogMessage << "Cheb4 <n|MdagM|n> "<<norm2(tmp)<<std::endl; |  | ||||||
|       //      Cheb5(hermop,noise,Mn); scale = std::pow(norm2(Mn),-0.5); 	noise=Mn*scale; |  | ||||||
|       //      hermop.Op(noise,tmp); std::cout<<GridLogMessage << "Cheb5 <n|MdagM|n> "<<norm2(tmp)<<std::endl; |  | ||||||
|       subspace[b]   = noise; |  | ||||||
|       hermop.Op(subspace[b],tmp);  |  | ||||||
|       std::cout<<GridLogMessage << "filt ["<<b<<"] <n|MdagM|n> "<<norm2(tmp)<< " norm " << norm2(noise)<<std::endl; |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|   virtual void CreateSubspaceMultishift(GridParallelRNG  &RNG,LinearOperatorBase<FineField> &hermop, |  | ||||||
| 					double Lo,double tol,int maxit) |  | ||||||
|   { |  | ||||||
|  |  | ||||||
|     RealD scale; |  | ||||||
|  |  | ||||||
|     FineField noise(FineGrid); |  | ||||||
|     FineField Mn(FineGrid); |  | ||||||
|     FineField tmp(FineGrid); |  | ||||||
|  |  | ||||||
|     // New normalised noise |  | ||||||
|     std::cout << GridLogMessage<<" Multishift subspace : Lo "<<Lo<<std::endl; |  | ||||||
|  |  | ||||||
|     // Filter |  | ||||||
|     // [ 1/6(x+Lo)  - 1/2(x+2Lo) + 1/2(x+3Lo)  -1/6(x+4Lo) = Lo^3 /[ (x+1Lo)(x+2Lo)(x+3Lo)(x+4Lo) ] |  | ||||||
|     // |  | ||||||
|     // 1/(x+Lo)  - 1/(x+2 Lo) |  | ||||||
|     double epsilon      = Lo/3; |  | ||||||
|     std::vector<RealD> alpha({1.0/6.0,-1.0/2.0,1.0/2.0,-1.0/6.0}); |  | ||||||
|     std::vector<RealD> shifts({Lo,Lo+epsilon,Lo+2*epsilon,Lo+3*epsilon}); |  | ||||||
|     std::vector<RealD> tols({tol,tol,tol,tol}); |  | ||||||
|     std::cout << "sizes "<<alpha.size()<<" "<<shifts.size()<<" "<<tols.size()<<std::endl; |  | ||||||
|  |  | ||||||
|     MultiShiftFunction msf(4,0.0,95.0); |  | ||||||
|     std::cout << "msf constructed "<<std::endl; |  | ||||||
|     msf.poles=shifts; |  | ||||||
|     msf.residues=alpha; |  | ||||||
|     msf.tolerances=tols; |  | ||||||
|     msf.norm=0.0; |  | ||||||
|     msf.order=alpha.size(); |  | ||||||
|     ConjugateGradientMultiShift<FineField> MSCG(maxit,msf); |  | ||||||
|      |  | ||||||
|     for(int b =0;b<nbasis;b++) |  | ||||||
|     { |  | ||||||
|       gaussian(RNG,noise); |  | ||||||
|       scale = std::pow(norm2(noise),-0.5);  |  | ||||||
|       noise=noise*scale; |  | ||||||
|  |  | ||||||
|       // Initial matrix element |  | ||||||
|       hermop.Op(noise,Mn); |  | ||||||
|       if(b==0) std::cout<<GridLogMessage << "noise <n|MdagM|n> "<<norm2(Mn)<<std::endl; |  | ||||||
|  |  | ||||||
|       MSCG(hermop,noise,Mn); |  | ||||||
|       scale = std::pow(norm2(Mn),-0.5); 	Mn=Mn*scale; |  | ||||||
|       subspace[b]   = Mn; |  | ||||||
|       hermop.Op(Mn,tmp);  |  | ||||||
|       std::cout<<GridLogMessage << "filt ["<<b<<"] <n|MdagM|n> "<<norm2(tmp)<<std::endl; |  | ||||||
|  |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|   } |  | ||||||
|   virtual void RefineSubspace(LinearOperatorBase<FineField> &hermop, |  | ||||||
| 			      double Lo,double tol,int maxit) |  | ||||||
|   { |  | ||||||
|     FineField tmp(FineGrid); |  | ||||||
|     for(int b =0;b<nbasis;b++) |  | ||||||
|     { |  | ||||||
|       ConjugateGradient<FineField>  CGsloppy(tol,maxit,false); |  | ||||||
|       ShiftedHermOpLinearOperator<FineField> ShiftedFineHermOp(hermop,Lo); |  | ||||||
|       tmp=Zero(); |  | ||||||
|       CGsloppy(hermop,subspace[b],tmp); |  | ||||||
|       RealD scale = std::pow(norm2(tmp),-0.5); 	tmp=tmp*scale; |  | ||||||
|       subspace[b]=tmp; |  | ||||||
|       hermop.Op(subspace[b],tmp); |  | ||||||
|       std::cout<<GridLogMessage << "filt ["<<b<<"] <n|MdagM|n> "<<norm2(tmp)<<std::endl; |  | ||||||
|     } |  | ||||||
|   } |  | ||||||
|   virtual void RefineSubspaceHDCG(LinearOperatorBase<FineField> &hermop, |  | ||||||
| 				  TwoLevelADEF2mrhs<FineField,CoarseVector> & theHDCG, |  | ||||||
| 				  int nrhs) |  | ||||||
|   { |  | ||||||
|     std::vector<FineField> src_mrhs(nrhs,FineGrid); |  | ||||||
|     std::vector<FineField> res_mrhs(nrhs,FineGrid); |  | ||||||
|     FineField tmp(FineGrid); |  | ||||||
|     for(int b =0;b<nbasis;b+=nrhs) |  | ||||||
|     { |  | ||||||
|       tmp = subspace[b]; |  | ||||||
|       RealD scale = std::pow(norm2(tmp),-0.5); 	tmp=tmp*scale; |  | ||||||
|       subspace[b] =tmp; |  | ||||||
|       hermop.Op(subspace[b],tmp); |  | ||||||
|       std::cout<<GridLogMessage << "before filt ["<<b<<"] <n|MdagM|n> "<<norm2(tmp)<<std::endl; |  | ||||||
|  |  | ||||||
|       for(int r=0;r<MIN(nbasis-b,nrhs);r++){ |  | ||||||
| 	src_mrhs[r] = subspace[b+r]; |  | ||||||
|       } |  | ||||||
|       for(int r=0;r<nrhs;r++){ |  | ||||||
| 	res_mrhs[r] = Zero(); |  | ||||||
|       } |  | ||||||
|       theHDCG(src_mrhs,res_mrhs); |  | ||||||
|  |  | ||||||
|       for(int r=0;r<MIN(nbasis-b,nrhs);r++){ |  | ||||||
| 	tmp = res_mrhs[r]; |  | ||||||
| 	RealD scale = std::pow(norm2(tmp),-0.5); tmp=tmp*scale; |  | ||||||
| 	subspace[b+r]=tmp; |  | ||||||
|       } |  | ||||||
|       hermop.Op(subspace[b],tmp); |  | ||||||
|       std::cout<<GridLogMessage << "after filt ["<<b<<"] <n|MdagM|n> "<<norm2(tmp)<<std::endl; |  | ||||||
|     } |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|    |  | ||||||
|    |  | ||||||
| }; |  | ||||||
| NAMESPACE_END(Grid); |  | ||||||
|  |  | ||||||
| @@ -1,619 +0,0 @@ | |||||||
| /************************************************************************************* |  | ||||||
|  |  | ||||||
|     Grid physics library, www.github.com/paboyle/Grid  |  | ||||||
|  |  | ||||||
|     Source file: ./lib/algorithms/GeneralCoarsenedMatrix.h |  | ||||||
|  |  | ||||||
|     Copyright (C) 2015 |  | ||||||
|  |  | ||||||
| Author: Peter Boyle <pboyle@bnl.gov> |  | ||||||
|  |  | ||||||
|     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 */ |  | ||||||
| #pragma once |  | ||||||
|  |  | ||||||
| #include <Grid/qcd/QCD.h> // needed for Dagger(Yes|No), Inverse(Yes|No) |  | ||||||
|  |  | ||||||
| #include <Grid/lattice/PaddedCell.h> |  | ||||||
| #include <Grid/stencil/GeneralLocalStencil.h> |  | ||||||
|  |  | ||||||
| NAMESPACE_BEGIN(Grid); |  | ||||||
|  |  | ||||||
| // Fine Object == (per site) type of fine field |  | ||||||
| // nbasis      == number of deflation vectors |  | ||||||
| template<class Fobj,class CComplex,int nbasis> |  | ||||||
| class GeneralCoarsenedMatrix : public SparseMatrixBase<Lattice<iVector<CComplex,nbasis > > >  { |  | ||||||
| public: |  | ||||||
|  |  | ||||||
|   typedef GeneralCoarsenedMatrix<Fobj,CComplex,nbasis> GeneralCoarseOp; |  | ||||||
|   typedef iVector<CComplex,nbasis >           siteVector; |  | ||||||
|   typedef iMatrix<CComplex,nbasis >           siteMatrix; |  | ||||||
|   typedef Lattice<iScalar<CComplex> >         CoarseComplexField; |  | ||||||
|   typedef Lattice<siteVector>                 CoarseVector; |  | ||||||
|   typedef Lattice<iMatrix<CComplex,nbasis > > CoarseMatrix; |  | ||||||
|   typedef iMatrix<CComplex,nbasis >  Cobj; |  | ||||||
|   typedef iVector<CComplex,nbasis >  Cvec; |  | ||||||
|   typedef Lattice< CComplex >   CoarseScalar; // used for inner products on fine field |  | ||||||
|   typedef Lattice<Fobj >        FineField; |  | ||||||
|   typedef Lattice<CComplex >    FineComplexField; |  | ||||||
|   typedef CoarseVector Field; |  | ||||||
|   //////////////////// |  | ||||||
|   // Data members |  | ||||||
|   //////////////////// |  | ||||||
|   int hermitian; |  | ||||||
|   GridBase      *       _FineGrid;  |  | ||||||
|   GridCartesian *       _CoarseGrid;  |  | ||||||
|   NonLocalStencilGeometry &geom; |  | ||||||
|   PaddedCell Cell; |  | ||||||
|   GeneralLocalStencil Stencil; |  | ||||||
|    |  | ||||||
|   std::vector<CoarseMatrix> _A; |  | ||||||
|   std::vector<CoarseMatrix> _Adag; |  | ||||||
|   std::vector<CoarseVector> MultTemporaries; |  | ||||||
|  |  | ||||||
|   /////////////////////// |  | ||||||
|   // Interface |  | ||||||
|   /////////////////////// |  | ||||||
|   GridBase      * Grid(void)           { return _CoarseGrid; };   // this is all the linalg routines need to know |  | ||||||
|   GridBase      * FineGrid(void)       { return _FineGrid; };   // this is all the linalg routines need to know |  | ||||||
|   GridCartesian * CoarseGrid(void)     { return _CoarseGrid; };   // this is all the linalg routines need to know |  | ||||||
|  |  | ||||||
|   /*  void ShiftMatrix(RealD shift) |  | ||||||
|   { |  | ||||||
|     int Nd=_FineGrid->Nd();  |  | ||||||
|     Coordinate zero_shift(Nd,0); |  | ||||||
|     for(int p=0;p<geom.npoint;p++){ |  | ||||||
|       if ( zero_shift==geom.shifts[p] ) { |  | ||||||
| 	_A[p] = _A[p]+shift; |  | ||||||
| 	//	_Adag[p] = _Adag[p]+shift; |  | ||||||
|       } |  | ||||||
|     }     |  | ||||||
|   } |  | ||||||
|   void ProjectNearestNeighbour(RealD shift, GeneralCoarseOp &CopyMe) |  | ||||||
|   { |  | ||||||
|     int nfound=0; |  | ||||||
|     std::cout << GridLogMessage <<"GeneralCoarsenedMatrix::ProjectNearestNeighbour "<< CopyMe._A[0].Grid()<<std::endl; |  | ||||||
|     for(int p=0;p<geom.npoint;p++){ |  | ||||||
|       for(int pp=0;pp<CopyMe.geom.npoint;pp++){ |  | ||||||
|  	// Search for the same relative shift |  | ||||||
| 	// Avoids brutal handling of Grid pointers |  | ||||||
| 	if ( CopyMe.geom.shifts[pp]==geom.shifts[p] ) { |  | ||||||
| 	  _A[p] = CopyMe.Cell.Extract(CopyMe._A[pp]); |  | ||||||
| 	  //	  _Adag[p] = CopyMe.Cell.Extract(CopyMe._Adag[pp]); |  | ||||||
| 	  nfound++; |  | ||||||
| 	} |  | ||||||
|       } |  | ||||||
|     } |  | ||||||
|     assert(nfound==geom.npoint); |  | ||||||
|     ExchangeCoarseLinks(); |  | ||||||
|   } |  | ||||||
|   */ |  | ||||||
|    |  | ||||||
|   GeneralCoarsenedMatrix(NonLocalStencilGeometry &_geom,GridBase *FineGrid, GridCartesian * CoarseGrid) |  | ||||||
|     : geom(_geom), |  | ||||||
|       _FineGrid(FineGrid), |  | ||||||
|       _CoarseGrid(CoarseGrid), |  | ||||||
|       hermitian(1), |  | ||||||
|       Cell(_geom.Depth(),_CoarseGrid), |  | ||||||
|       Stencil(Cell.grids.back(),geom.shifts) |  | ||||||
|   { |  | ||||||
|     { |  | ||||||
|       int npoint = _geom.npoint; |  | ||||||
|     } |  | ||||||
|     _A.resize(geom.npoint,CoarseGrid); |  | ||||||
|     //    _Adag.resize(geom.npoint,CoarseGrid); |  | ||||||
|   } |  | ||||||
|   void M (const CoarseVector &in, CoarseVector &out) |  | ||||||
|   { |  | ||||||
|     Mult(_A,in,out); |  | ||||||
|   } |  | ||||||
|   void Mdag (const CoarseVector &in, CoarseVector &out) |  | ||||||
|   { |  | ||||||
|     assert(hermitian); |  | ||||||
|     Mult(_A,in,out); |  | ||||||
|     //    if ( hermitian ) M(in,out); |  | ||||||
|     //    else Mult(_Adag,in,out); |  | ||||||
|   } |  | ||||||
|   void Mult (std::vector<CoarseMatrix> &A,const CoarseVector &in, CoarseVector &out) |  | ||||||
|   { |  | ||||||
|     RealD tviews=0;    RealD ttot=0;    RealD tmult=0;   RealD texch=0;    RealD text=0; RealD ttemps=0; RealD tcopy=0; |  | ||||||
|     RealD tmult2=0; |  | ||||||
|  |  | ||||||
|     ttot=-usecond(); |  | ||||||
|     conformable(CoarseGrid(),in.Grid()); |  | ||||||
|     conformable(in.Grid(),out.Grid()); |  | ||||||
|     out.Checkerboard() = in.Checkerboard(); |  | ||||||
|     CoarseVector tin=in; |  | ||||||
|  |  | ||||||
|     texch-=usecond(); |  | ||||||
|     CoarseVector pin = Cell.ExchangePeriodic(tin); |  | ||||||
|     texch+=usecond(); |  | ||||||
|  |  | ||||||
|     CoarseVector pout(pin.Grid()); |  | ||||||
|  |  | ||||||
|     int npoint = geom.npoint; |  | ||||||
|     typedef LatticeView<Cobj> Aview; |  | ||||||
|     typedef LatticeView<Cvec> Vview; |  | ||||||
|        |  | ||||||
|     const int Nsimd = CComplex::Nsimd(); |  | ||||||
|      |  | ||||||
|     int64_t osites=pin.Grid()->oSites(); |  | ||||||
|  |  | ||||||
|     RealD flops = 1.0* npoint * nbasis * nbasis * 8.0 * osites * CComplex::Nsimd(); |  | ||||||
|     RealD bytes = 1.0*osites*sizeof(siteMatrix)*npoint |  | ||||||
|                 + 2.0*osites*sizeof(siteVector)*npoint; |  | ||||||
|        |  | ||||||
|     { |  | ||||||
|       tviews-=usecond(); |  | ||||||
|       autoView( in_v , pin, AcceleratorRead); |  | ||||||
|       autoView( out_v , pout, AcceleratorWriteDiscard); |  | ||||||
|       autoView( Stencil_v  , Stencil, AcceleratorRead); |  | ||||||
|       tviews+=usecond(); |  | ||||||
|  |  | ||||||
|       // Static and prereserve to keep UVM region live and not resized across multiple calls |  | ||||||
|       ttemps-=usecond(); |  | ||||||
|       MultTemporaries.resize(npoint,pin.Grid());        |  | ||||||
|       ttemps+=usecond(); |  | ||||||
|       std::vector<Aview> AcceleratorViewContainer_h; |  | ||||||
|       std::vector<Vview> AcceleratorVecViewContainer_h;  |  | ||||||
|  |  | ||||||
|       tviews-=usecond(); |  | ||||||
|       for(int p=0;p<npoint;p++) { |  | ||||||
| 	AcceleratorViewContainer_h.push_back(      A[p].View(AcceleratorRead)); |  | ||||||
| 	AcceleratorVecViewContainer_h.push_back(MultTemporaries[p].View(AcceleratorWrite)); |  | ||||||
|       } |  | ||||||
|       tviews+=usecond(); |  | ||||||
|  |  | ||||||
|       static deviceVector<Aview> AcceleratorViewContainer; AcceleratorViewContainer.resize(npoint); |  | ||||||
|       static deviceVector<Vview> AcceleratorVecViewContainer; AcceleratorVecViewContainer.resize(npoint);  |  | ||||||
|        |  | ||||||
|       auto Aview_p = &AcceleratorViewContainer[0]; |  | ||||||
|       auto Vview_p = &AcceleratorVecViewContainer[0]; |  | ||||||
|       tcopy-=usecond(); |  | ||||||
|       acceleratorCopyToDevice(&AcceleratorViewContainer_h[0],&AcceleratorViewContainer[0],npoint *sizeof(Aview)); |  | ||||||
|       acceleratorCopyToDevice(&AcceleratorVecViewContainer_h[0],&AcceleratorVecViewContainer[0],npoint *sizeof(Vview)); |  | ||||||
|       tcopy+=usecond(); |  | ||||||
|  |  | ||||||
|       tmult-=usecond(); |  | ||||||
|       accelerator_for(spb, osites*nbasis*npoint, Nsimd, { |  | ||||||
| 	  typedef decltype(coalescedRead(in_v[0](0))) calcComplex; |  | ||||||
| 	  int32_t ss   = spb/(nbasis*npoint); |  | ||||||
| 	  int32_t bp   = spb%(nbasis*npoint); |  | ||||||
| 	  int32_t point= bp/nbasis; |  | ||||||
| 	  int32_t b    = bp%nbasis; |  | ||||||
| 	  auto SE  = Stencil_v.GetEntry(point,ss); |  | ||||||
| 	  auto nbr = coalescedReadGeneralPermute(in_v[SE->_offset],SE->_permute,Nd); |  | ||||||
| 	  auto res = coalescedRead(Aview_p[point][ss](0,b))*nbr(0); |  | ||||||
| 	  for(int bb=1;bb<nbasis;bb++) { |  | ||||||
| 	    res = res + coalescedRead(Aview_p[point][ss](bb,b))*nbr(bb); |  | ||||||
| 	  } |  | ||||||
| 	  coalescedWrite(Vview_p[point][ss](b),res); |  | ||||||
|       }); |  | ||||||
|       tmult2-=usecond(); |  | ||||||
|       accelerator_for(sb, osites*nbasis, Nsimd, { |  | ||||||
| 	  int ss = sb/nbasis; |  | ||||||
| 	  int b  = sb%nbasis; |  | ||||||
| 	  auto res = coalescedRead(Vview_p[0][ss](b)); |  | ||||||
| 	  for(int point=1;point<npoint;point++){ |  | ||||||
| 	    res = res + coalescedRead(Vview_p[point][ss](b)); |  | ||||||
| 	  } |  | ||||||
| 	  coalescedWrite(out_v[ss](b),res); |  | ||||||
|       }); |  | ||||||
|       tmult2+=usecond(); |  | ||||||
|       tmult+=usecond(); |  | ||||||
|       for(int p=0;p<npoint;p++) { |  | ||||||
| 	AcceleratorViewContainer_h[p].ViewClose(); |  | ||||||
| 	AcceleratorVecViewContainer_h[p].ViewClose(); |  | ||||||
|       } |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     text-=usecond(); |  | ||||||
|     out = Cell.Extract(pout); |  | ||||||
|     text+=usecond(); |  | ||||||
|     ttot+=usecond(); |  | ||||||
|      |  | ||||||
|     std::cout << GridLogPerformance<<"Coarse 1rhs Mult Aviews "<<tviews<<" us"<<std::endl; |  | ||||||
|     std::cout << GridLogPerformance<<"Coarse Mult exch "<<texch<<" us"<<std::endl; |  | ||||||
|     std::cout << GridLogPerformance<<"Coarse Mult mult "<<tmult<<" us"<<std::endl; |  | ||||||
|     std::cout << GridLogPerformance<<" of which mult2  "<<tmult2<<" us"<<std::endl; |  | ||||||
|     std::cout << GridLogPerformance<<"Coarse Mult ext  "<<text<<" us"<<std::endl; |  | ||||||
|     std::cout << GridLogPerformance<<"Coarse Mult temps "<<ttemps<<" us"<<std::endl; |  | ||||||
|     std::cout << GridLogPerformance<<"Coarse Mult copy  "<<tcopy<<" us"<<std::endl; |  | ||||||
|     std::cout << GridLogPerformance<<"Coarse Mult tot  "<<ttot<<" us"<<std::endl; |  | ||||||
|     //    std::cout << GridLogPerformance<<std::endl; |  | ||||||
|     std::cout << GridLogPerformance<<"Coarse Kernel flops "<< flops<<std::endl; |  | ||||||
|     std::cout << GridLogPerformance<<"Coarse Kernel flop/s "<< flops/tmult<<" mflop/s"<<std::endl; |  | ||||||
|     std::cout << GridLogPerformance<<"Coarse Kernel bytes/s "<< bytes/tmult<<" MB/s"<<std::endl; |  | ||||||
|     std::cout << GridLogPerformance<<"Coarse overall flops/s "<< flops/ttot<<" mflop/s"<<std::endl; |  | ||||||
|     std::cout << GridLogPerformance<<"Coarse total bytes   "<< bytes/1e6<<" MB"<<std::endl; |  | ||||||
|  |  | ||||||
|   }; |  | ||||||
|    |  | ||||||
|   void PopulateAdag(void) |  | ||||||
|   { |  | ||||||
|     for(int64_t bidx=0;bidx<CoarseGrid()->gSites() ;bidx++){ |  | ||||||
|       Coordinate bcoor; |  | ||||||
|       CoarseGrid()->GlobalIndexToGlobalCoor(bidx,bcoor); |  | ||||||
|        |  | ||||||
|       for(int p=0;p<geom.npoint;p++){ |  | ||||||
| 	Coordinate scoor = bcoor; |  | ||||||
| 	for(int mu=0;mu<bcoor.size();mu++){ |  | ||||||
| 	  int L = CoarseGrid()->GlobalDimensions()[mu]; |  | ||||||
| 	  scoor[mu] = (bcoor[mu] - geom.shifts[p][mu] + L) % L; // Modulo arithmetic |  | ||||||
| 	} |  | ||||||
| 	// Flip to poke/peekLocalSite and not too bad |  | ||||||
| 	auto link = peekSite(_A[p],scoor); |  | ||||||
| 	int pp = geom.Reverse(p); |  | ||||||
| 	pokeSite(adj(link),_Adag[pp],bcoor); |  | ||||||
|       } |  | ||||||
|     } |  | ||||||
|   } |  | ||||||
|   ///////////////////////////////////////////////////////////// |  | ||||||
|   //  |  | ||||||
|   // A) Only reduced flops option is to use a padded cell of depth 4 |  | ||||||
|   // and apply MpcDagMpc in the padded cell. |  | ||||||
|   // |  | ||||||
|   // Makes for ONE application of MpcDagMpc per vector instead of 30 or 80. |  | ||||||
|   // With the effective cell size around (B+8)^4 perhaps 12^4/4^4 ratio |  | ||||||
|   // Cost is 81x more, same as stencil size. |  | ||||||
|   // |  | ||||||
|   // But: can eliminate comms and do as local dirichlet. |  | ||||||
|   // |  | ||||||
|   // Local exchange gauge field once. |  | ||||||
|   // Apply to all vectors, local only computation. |  | ||||||
|   // Must exchange ghost subcells in reverse process of PaddedCell to take inner products |  | ||||||
|   // |  | ||||||
|   // B) Can reduce cost: pad by 1, apply Deo      (4^4+6^4+8^4+8^4 )/ (4x 4^4) |  | ||||||
|   //                     pad by 2, apply Doe |  | ||||||
|   //                     pad by 3, apply Deo |  | ||||||
|   //                     then break out 8x directions; cost is ~10x MpcDagMpc per vector |  | ||||||
|   // |  | ||||||
|   // => almost factor of 10 in setup cost, excluding data rearrangement |  | ||||||
|   // |  | ||||||
|   // Intermediates -- ignore the corner terms, leave approximate and force Hermitian |  | ||||||
|   // Intermediates -- pad by 2 and apply 1+8+24 = 33 times. |  | ||||||
|   ///////////////////////////////////////////////////////////// |  | ||||||
|  |  | ||||||
|     ////////////////////////////////////////////////////////// |  | ||||||
|     // BFM HDCG style approach: Solve a system of equations to get Aij |  | ||||||
|     ////////////////////////////////////////////////////////// |  | ||||||
|     /* |  | ||||||
|      *     Here, k,l index which possible shift within the 3^Nd "ball" connected by MdagM. |  | ||||||
|      * |  | ||||||
|      *     conj(phases[block]) proj[k][ block*Nvec+j ] =  \sum_ball  e^{i q_k . delta} < phi_{block,j} | MdagM | phi_{(block+delta),i} >  |  | ||||||
|      *                                                 =  \sum_ball e^{iqk.delta} A_ji |  | ||||||
|      * |  | ||||||
|      *     Must invert matrix M_k,l = e^[i q_k . delta_l] |  | ||||||
|      * |  | ||||||
|      *     Where q_k = delta_k . (2*M_PI/global_nb[mu]) |  | ||||||
|      */ |  | ||||||
| #if 0 |  | ||||||
|   void CoarsenOperator(LinearOperatorBase<Lattice<Fobj> > &linop, |  | ||||||
| 		       Aggregation<Fobj,CComplex,nbasis> & Subspace) |  | ||||||
|   { |  | ||||||
|     std::cout << GridLogMessage<< "GeneralCoarsenMatrix "<< std::endl; |  | ||||||
|     GridBase *grid = FineGrid(); |  | ||||||
|  |  | ||||||
|     RealD tproj=0.0; |  | ||||||
|     RealD teigen=0.0; |  | ||||||
|     RealD tmat=0.0; |  | ||||||
|     RealD tphase=0.0; |  | ||||||
|     RealD tinv=0.0; |  | ||||||
|  |  | ||||||
|     ///////////////////////////////////////////////////////////// |  | ||||||
|     // Orthogonalise the subblocks over the basis |  | ||||||
|     ///////////////////////////////////////////////////////////// |  | ||||||
|     CoarseScalar InnerProd(CoarseGrid());  |  | ||||||
|     blockOrthogonalise(InnerProd,Subspace.subspace); |  | ||||||
|  |  | ||||||
|     const int npoint = geom.npoint; |  | ||||||
|        |  | ||||||
|     Coordinate clatt = CoarseGrid()->GlobalDimensions(); |  | ||||||
|     int Nd = CoarseGrid()->Nd(); |  | ||||||
|  |  | ||||||
|       /* |  | ||||||
|        *     Here, k,l index which possible momentum/shift within the N-points connected by MdagM. |  | ||||||
|        *     Matrix index i is mapped to this shift via  |  | ||||||
|        *               geom.shifts[i] |  | ||||||
|        * |  | ||||||
|        *     conj(pha[block]) proj[k (which mom)][j (basis vec cpt)][block]  |  | ||||||
|        *       =  \sum_{l in ball}  e^{i q_k . delta_l} < phi_{block,j} | MdagM | phi_{(block+delta_l),i} >  |  | ||||||
|        *       =  \sum_{l in ball} e^{iqk.delta_l} A_ji^{b.b+l} |  | ||||||
|        *       = M_{kl} A_ji^{b.b+l} |  | ||||||
|        * |  | ||||||
|        *     Must assemble and invert matrix M_k,l = e^[i q_k . delta_l] |  | ||||||
|        *   |  | ||||||
|        *     Where q_k = delta_k . (2*M_PI/global_nb[mu]) |  | ||||||
|        * |  | ||||||
|        *     Then A{ji}^{b,b+l} = M^{-1}_{lm} ComputeProj_{m,b,i,j} |  | ||||||
|        */ |  | ||||||
|     teigen-=usecond(); |  | ||||||
|     Eigen::MatrixXcd Mkl    = Eigen::MatrixXcd::Zero(npoint,npoint); |  | ||||||
|     Eigen::MatrixXcd invMkl = Eigen::MatrixXcd::Zero(npoint,npoint); |  | ||||||
|     ComplexD ci(0.0,1.0); |  | ||||||
|     for(int k=0;k<npoint;k++){ // Loop over momenta |  | ||||||
|  |  | ||||||
|       for(int l=0;l<npoint;l++){ // Loop over nbr relative |  | ||||||
| 	ComplexD phase(0.0,0.0); |  | ||||||
| 	for(int mu=0;mu<Nd;mu++){ |  | ||||||
| 	  RealD TwoPiL =  M_PI * 2.0/ clatt[mu]; |  | ||||||
| 	  phase=phase+TwoPiL*geom.shifts[k][mu]*geom.shifts[l][mu]; |  | ||||||
| 	} |  | ||||||
| 	phase=exp(phase*ci); |  | ||||||
| 	Mkl(k,l) = phase; |  | ||||||
|       } |  | ||||||
|     } |  | ||||||
|     invMkl = Mkl.inverse(); |  | ||||||
|     teigen+=usecond(); |  | ||||||
|  |  | ||||||
|     /////////////////////////////////////////////////////////////////////// |  | ||||||
|     // Now compute the matrix elements of linop between the orthonormal |  | ||||||
|     // set of vectors. |  | ||||||
|     /////////////////////////////////////////////////////////////////////// |  | ||||||
|     FineField phaV(grid); // Phased block basis vector |  | ||||||
|     FineField MphaV(grid);// Matrix applied |  | ||||||
|     CoarseVector coarseInner(CoarseGrid()); |  | ||||||
|  |  | ||||||
|     std::vector<CoarseVector> ComputeProj(npoint,CoarseGrid()); |  | ||||||
|     std::vector<CoarseVector>          FT(npoint,CoarseGrid()); |  | ||||||
|     for(int i=0;i<nbasis;i++){// Loop over basis vectors |  | ||||||
|       std::cout << GridLogMessage<< "CoarsenMatrixColoured vec "<<i<<"/"<<nbasis<< std::endl; |  | ||||||
|       for(int p=0;p<npoint;p++){ // Loop over momenta in npoint |  | ||||||
| 	///////////////////////////////////////////////////// |  | ||||||
| 	// Stick a phase on every block |  | ||||||
| 	///////////////////////////////////////////////////// |  | ||||||
| 	tphase-=usecond(); |  | ||||||
| 	CoarseComplexField coor(CoarseGrid()); |  | ||||||
| 	CoarseComplexField pha(CoarseGrid());	pha=Zero(); |  | ||||||
| 	for(int mu=0;mu<Nd;mu++){ |  | ||||||
| 	  LatticeCoordinate(coor,mu); |  | ||||||
| 	  RealD TwoPiL =  M_PI * 2.0/ clatt[mu]; |  | ||||||
| 	  pha = pha + (TwoPiL * geom.shifts[p][mu]) * coor; |  | ||||||
| 	} |  | ||||||
| 	pha  =exp(pha*ci); |  | ||||||
| 	phaV=Zero(); |  | ||||||
| 	blockZAXPY(phaV,pha,Subspace.subspace[i],phaV); |  | ||||||
| 	tphase+=usecond(); |  | ||||||
|  |  | ||||||
| 	///////////////////////////////////////////////////////////////////// |  | ||||||
| 	// Multiple phased subspace vector by matrix and project to subspace |  | ||||||
| 	// Remove local bulk phase to leave relative phases |  | ||||||
| 	///////////////////////////////////////////////////////////////////// |  | ||||||
| 	tmat-=usecond(); |  | ||||||
| 	linop.Op(phaV,MphaV); |  | ||||||
| 	tmat+=usecond(); |  | ||||||
|  |  | ||||||
| 	tproj-=usecond(); |  | ||||||
| 	blockProject(coarseInner,MphaV,Subspace.subspace); |  | ||||||
| 	coarseInner = conjugate(pha) * coarseInner; |  | ||||||
|  |  | ||||||
| 	ComputeProj[p] = coarseInner; |  | ||||||
| 	tproj+=usecond(); |  | ||||||
|  |  | ||||||
|       } |  | ||||||
|  |  | ||||||
|       tinv-=usecond(); |  | ||||||
|       for(int k=0;k<npoint;k++){ |  | ||||||
| 	FT[k] = Zero(); |  | ||||||
| 	for(int l=0;l<npoint;l++){ |  | ||||||
| 	  FT[k]= FT[k]+ invMkl(l,k)*ComputeProj[l]; |  | ||||||
| 	} |  | ||||||
|        |  | ||||||
| 	int osites=CoarseGrid()->oSites(); |  | ||||||
| 	autoView( A_v  , _A[k], AcceleratorWrite); |  | ||||||
| 	autoView( FT_v  , FT[k], AcceleratorRead); |  | ||||||
| 	accelerator_for(sss, osites, 1, { |  | ||||||
| 	    for(int j=0;j<nbasis;j++){ |  | ||||||
| 	      A_v[sss](i,j) = FT_v[sss](j); |  | ||||||
| 	    } |  | ||||||
|         }); |  | ||||||
|       } |  | ||||||
|       tinv+=usecond(); |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     // Only needed if nonhermitian |  | ||||||
|     if ( ! hermitian ) { |  | ||||||
|       //      std::cout << GridLogMessage<<"PopulateAdag  "<<std::endl; |  | ||||||
|       //      PopulateAdag(); |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     // Need to write something to populate Adag from A |  | ||||||
|     ExchangeCoarseLinks(); |  | ||||||
|     std::cout << GridLogMessage<<"CoarsenOperator eigen  "<<teigen<<" us"<<std::endl; |  | ||||||
|     std::cout << GridLogMessage<<"CoarsenOperator phase  "<<tphase<<" us"<<std::endl; |  | ||||||
|     std::cout << GridLogMessage<<"CoarsenOperator mat    "<<tmat <<" us"<<std::endl; |  | ||||||
|     std::cout << GridLogMessage<<"CoarsenOperator proj   "<<tproj<<" us"<<std::endl; |  | ||||||
|     std::cout << GridLogMessage<<"CoarsenOperator inv    "<<tinv<<" us"<<std::endl; |  | ||||||
|   } |  | ||||||
| #else |  | ||||||
|   void CoarsenOperator(LinearOperatorBase<Lattice<Fobj> > &linop, |  | ||||||
| 		       Aggregation<Fobj,CComplex,nbasis> & Subspace) |  | ||||||
|   { |  | ||||||
|     std::cout << GridLogMessage<< "GeneralCoarsenMatrix "<< std::endl; |  | ||||||
|     GridBase *grid = FineGrid(); |  | ||||||
|  |  | ||||||
|     RealD tproj=0.0; |  | ||||||
|     RealD teigen=0.0; |  | ||||||
|     RealD tmat=0.0; |  | ||||||
|     RealD tphase=0.0; |  | ||||||
|     RealD tphaseBZ=0.0; |  | ||||||
|     RealD tinv=0.0; |  | ||||||
|  |  | ||||||
|     ///////////////////////////////////////////////////////////// |  | ||||||
|     // Orthogonalise the subblocks over the basis |  | ||||||
|     ///////////////////////////////////////////////////////////// |  | ||||||
|     CoarseScalar InnerProd(CoarseGrid());  |  | ||||||
|     blockOrthogonalise(InnerProd,Subspace.subspace); |  | ||||||
|  |  | ||||||
|     //    for(int s=0;s<Subspace.subspace.size();s++){ |  | ||||||
|       //      std::cout << " subspace norm "<<norm2(Subspace.subspace[s])<<std::endl; |  | ||||||
|     //    } |  | ||||||
|     const int npoint = geom.npoint; |  | ||||||
|        |  | ||||||
|     Coordinate clatt = CoarseGrid()->GlobalDimensions(); |  | ||||||
|     int Nd = CoarseGrid()->Nd(); |  | ||||||
|  |  | ||||||
|       /* |  | ||||||
|        *     Here, k,l index which possible momentum/shift within the N-points connected by MdagM. |  | ||||||
|        *     Matrix index i is mapped to this shift via  |  | ||||||
|        *               geom.shifts[i] |  | ||||||
|        * |  | ||||||
|        *     conj(pha[block]) proj[k (which mom)][j (basis vec cpt)][block]  |  | ||||||
|        *       =  \sum_{l in ball}  e^{i q_k . delta_l} < phi_{block,j} | MdagM | phi_{(block+delta_l),i} >  |  | ||||||
|        *       =  \sum_{l in ball} e^{iqk.delta_l} A_ji^{b.b+l} |  | ||||||
|        *       = M_{kl} A_ji^{b.b+l} |  | ||||||
|        * |  | ||||||
|        *     Must assemble and invert matrix M_k,l = e^[i q_k . delta_l] |  | ||||||
|        *   |  | ||||||
|        *     Where q_k = delta_k . (2*M_PI/global_nb[mu]) |  | ||||||
|        * |  | ||||||
|        *     Then A{ji}^{b,b+l} = M^{-1}_{lm} ComputeProj_{m,b,i,j} |  | ||||||
|        */ |  | ||||||
|     teigen-=usecond(); |  | ||||||
|     Eigen::MatrixXcd Mkl    = Eigen::MatrixXcd::Zero(npoint,npoint); |  | ||||||
|     Eigen::MatrixXcd invMkl = Eigen::MatrixXcd::Zero(npoint,npoint); |  | ||||||
|     ComplexD ci(0.0,1.0); |  | ||||||
|     for(int k=0;k<npoint;k++){ // Loop over momenta |  | ||||||
|  |  | ||||||
|       for(int l=0;l<npoint;l++){ // Loop over nbr relative |  | ||||||
| 	ComplexD phase(0.0,0.0); |  | ||||||
| 	for(int mu=0;mu<Nd;mu++){ |  | ||||||
| 	  RealD TwoPiL =  M_PI * 2.0/ clatt[mu]; |  | ||||||
| 	  phase=phase+TwoPiL*geom.shifts[k][mu]*geom.shifts[l][mu]; |  | ||||||
| 	} |  | ||||||
| 	phase=exp(phase*ci); |  | ||||||
| 	Mkl(k,l) = phase; |  | ||||||
|       } |  | ||||||
|     } |  | ||||||
|     invMkl = Mkl.inverse(); |  | ||||||
|     teigen+=usecond(); |  | ||||||
|  |  | ||||||
|     /////////////////////////////////////////////////////////////////////// |  | ||||||
|     // Now compute the matrix elements of linop between the orthonormal |  | ||||||
|     // set of vectors. |  | ||||||
|     /////////////////////////////////////////////////////////////////////// |  | ||||||
|     FineField phaV(grid); // Phased block basis vector |  | ||||||
|     FineField MphaV(grid);// Matrix applied |  | ||||||
|     std::vector<FineComplexField> phaF(npoint,grid); |  | ||||||
|     std::vector<CoarseComplexField> pha(npoint,CoarseGrid()); |  | ||||||
|      |  | ||||||
|     CoarseVector coarseInner(CoarseGrid()); |  | ||||||
|      |  | ||||||
|     typedef typename CComplex::scalar_type SComplex; |  | ||||||
|     FineComplexField one(grid); one=SComplex(1.0); |  | ||||||
|     FineComplexField zz(grid); zz = Zero(); |  | ||||||
|     tphase=-usecond(); |  | ||||||
|     for(int p=0;p<npoint;p++){ // Loop over momenta in npoint |  | ||||||
|       ///////////////////////////////////////////////////// |  | ||||||
|       // Stick a phase on every block |  | ||||||
|       ///////////////////////////////////////////////////// |  | ||||||
|       CoarseComplexField coor(CoarseGrid()); |  | ||||||
|       pha[p]=Zero(); |  | ||||||
|       for(int mu=0;mu<Nd;mu++){ |  | ||||||
| 	LatticeCoordinate(coor,mu); |  | ||||||
| 	RealD TwoPiL =  M_PI * 2.0/ clatt[mu]; |  | ||||||
| 	pha[p] = pha[p] + (TwoPiL * geom.shifts[p][mu]) * coor; |  | ||||||
|       } |  | ||||||
|       pha[p]  =exp(pha[p]*ci); |  | ||||||
|  |  | ||||||
|       blockZAXPY(phaF[p],pha[p],one,zz); |  | ||||||
|        |  | ||||||
|     } |  | ||||||
|     tphase+=usecond(); |  | ||||||
|      |  | ||||||
|     std::vector<CoarseVector> ComputeProj(npoint,CoarseGrid()); |  | ||||||
|     std::vector<CoarseVector>          FT(npoint,CoarseGrid()); |  | ||||||
|     for(int i=0;i<nbasis;i++){// Loop over basis vectors |  | ||||||
|       std::cout << GridLogMessage<< "CoarsenMatrixColoured vec "<<i<<"/"<<nbasis<< std::endl; |  | ||||||
|       for(int p=0;p<npoint;p++){ // Loop over momenta in npoint |  | ||||||
| 	tphaseBZ-=usecond(); |  | ||||||
| 	phaV = phaF[p]*Subspace.subspace[i]; |  | ||||||
| 	tphaseBZ+=usecond(); |  | ||||||
|  |  | ||||||
| 	///////////////////////////////////////////////////////////////////// |  | ||||||
| 	// Multiple phased subspace vector by matrix and project to subspace |  | ||||||
| 	// Remove local bulk phase to leave relative phases |  | ||||||
| 	///////////////////////////////////////////////////////////////////// |  | ||||||
| 	tmat-=usecond(); |  | ||||||
| 	linop.Op(phaV,MphaV); |  | ||||||
| 	tmat+=usecond(); |  | ||||||
| 	//	std::cout << i << " " <<p << " MphaV "<<norm2(MphaV)<<" "<<norm2(phaV)<<std::endl; |  | ||||||
|  |  | ||||||
| 	tproj-=usecond(); |  | ||||||
| 	blockProject(coarseInner,MphaV,Subspace.subspace); |  | ||||||
| 	coarseInner = conjugate(pha[p]) * coarseInner; |  | ||||||
|  |  | ||||||
| 	ComputeProj[p] = coarseInner; |  | ||||||
| 	tproj+=usecond(); |  | ||||||
| 	//	std::cout << i << " " <<p << " ComputeProj "<<norm2(ComputeProj[p])<<std::endl; |  | ||||||
|  |  | ||||||
|       } |  | ||||||
|  |  | ||||||
|       tinv-=usecond(); |  | ||||||
|       for(int k=0;k<npoint;k++){ |  | ||||||
| 	FT[k] = Zero(); |  | ||||||
| 	for(int l=0;l<npoint;l++){ |  | ||||||
| 	  FT[k]= FT[k]+ invMkl(l,k)*ComputeProj[l]; |  | ||||||
| 	} |  | ||||||
|        |  | ||||||
| 	int osites=CoarseGrid()->oSites(); |  | ||||||
| 	autoView( A_v  , _A[k], AcceleratorWrite); |  | ||||||
| 	autoView( FT_v  , FT[k], AcceleratorRead); |  | ||||||
| 	accelerator_for(sss, osites, 1, { |  | ||||||
| 	    for(int j=0;j<nbasis;j++){ |  | ||||||
| 	      A_v[sss](i,j) = FT_v[sss](j); |  | ||||||
| 	    } |  | ||||||
|         }); |  | ||||||
|       } |  | ||||||
|       tinv+=usecond(); |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     // Only needed if nonhermitian |  | ||||||
|     if ( ! hermitian ) { |  | ||||||
|       //      std::cout << GridLogMessage<<"PopulateAdag  "<<std::endl; |  | ||||||
|       //      PopulateAdag(); |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     for(int p=0;p<geom.npoint;p++){ |  | ||||||
|       std::cout << " _A["<<p<<"] "<<norm2(_A[p])<<std::endl; |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     // Need to write something to populate Adag from A |  | ||||||
|     ExchangeCoarseLinks(); |  | ||||||
|     std::cout << GridLogMessage<<"CoarsenOperator eigen  "<<teigen<<" us"<<std::endl; |  | ||||||
|     std::cout << GridLogMessage<<"CoarsenOperator phase  "<<tphase<<" us"<<std::endl; |  | ||||||
|     std::cout << GridLogMessage<<"CoarsenOperator phaseBZ "<<tphaseBZ<<" us"<<std::endl; |  | ||||||
|     std::cout << GridLogMessage<<"CoarsenOperator mat    "<<tmat <<" us"<<std::endl; |  | ||||||
|     std::cout << GridLogMessage<<"CoarsenOperator proj   "<<tproj<<" us"<<std::endl; |  | ||||||
|     std::cout << GridLogMessage<<"CoarsenOperator inv    "<<tinv<<" us"<<std::endl; |  | ||||||
|   } |  | ||||||
| #endif   |  | ||||||
|   void ExchangeCoarseLinks(void){ |  | ||||||
|     for(int p=0;p<geom.npoint;p++){ |  | ||||||
|       _A[p] = Cell.ExchangePeriodic(_A[p]); |  | ||||||
|       //      _Adag[p]= Cell.ExchangePeriodic(_Adag[p]); |  | ||||||
|     } |  | ||||||
|   } |  | ||||||
|   virtual  void Mdiag    (const Field &in, Field &out){ assert(0);}; |  | ||||||
|   virtual  void Mdir     (const Field &in, Field &out,int dir, int disp){assert(0);}; |  | ||||||
|   virtual  void MdirAll  (const Field &in, std::vector<Field> &out){assert(0);}; |  | ||||||
| }; |  | ||||||
|  |  | ||||||
|  |  | ||||||
|    |  | ||||||
| NAMESPACE_END(Grid); |  | ||||||
| @@ -1,729 +0,0 @@ | |||||||
| /************************************************************************************* |  | ||||||
|  |  | ||||||
|     Grid physics library, www.github.com/paboyle/Grid  |  | ||||||
|  |  | ||||||
|     Source file: ./lib/algorithms/GeneralCoarsenedMatrixMultiRHS.h |  | ||||||
|  |  | ||||||
|     Copyright (C) 2015 |  | ||||||
|  |  | ||||||
| Author: Peter Boyle <pboyle@bnl.gov> |  | ||||||
|  |  | ||||||
|     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 */ |  | ||||||
| #pragma once |  | ||||||
|  |  | ||||||
|  |  | ||||||
| NAMESPACE_BEGIN(Grid); |  | ||||||
|  |  | ||||||
|  |  | ||||||
| // Fine Object == (per site) type of fine field |  | ||||||
| // nbasis      == number of deflation vectors |  | ||||||
| template<class Fobj,class CComplex,int nbasis> |  | ||||||
| class MultiGeneralCoarsenedMatrix : public SparseMatrixBase<Lattice<iVector<CComplex,nbasis > > >  { |  | ||||||
| public: |  | ||||||
|   typedef typename CComplex::scalar_object SComplex; |  | ||||||
|   typedef GeneralCoarsenedMatrix<Fobj,CComplex,nbasis> GeneralCoarseOp; |  | ||||||
|   typedef MultiGeneralCoarsenedMatrix<Fobj,CComplex,nbasis> MultiGeneralCoarseOp; |  | ||||||
|  |  | ||||||
|   typedef iVector<CComplex,nbasis >           siteVector; |  | ||||||
|   typedef iMatrix<CComplex,nbasis >           siteMatrix; |  | ||||||
|   typedef iVector<SComplex,nbasis >           calcVector; |  | ||||||
|   typedef iMatrix<SComplex,nbasis >           calcMatrix; |  | ||||||
|   typedef Lattice<iScalar<CComplex> >         CoarseComplexField; |  | ||||||
|   typedef Lattice<siteVector>                 CoarseVector; |  | ||||||
|   typedef Lattice<iMatrix<CComplex,nbasis > > CoarseMatrix; |  | ||||||
|   typedef iMatrix<CComplex,nbasis >  Cobj; |  | ||||||
|   typedef iVector<CComplex,nbasis >  Cvec; |  | ||||||
|   typedef Lattice< CComplex >   CoarseScalar; // used for inner products on fine field |  | ||||||
|   typedef Lattice<Fobj >        FineField; |  | ||||||
|   typedef Lattice<CComplex >    FineComplexField; |  | ||||||
|   typedef CoarseVector Field; |  | ||||||
|  |  | ||||||
|   //////////////////// |  | ||||||
|   // Data members |  | ||||||
|   //////////////////// |  | ||||||
|   GridCartesian *       _CoarseGridMulti;  |  | ||||||
|   NonLocalStencilGeometry geom; |  | ||||||
|   NonLocalStencilGeometry geom_srhs; |  | ||||||
|   PaddedCell Cell; |  | ||||||
|   GeneralLocalStencil Stencil; |  | ||||||
|  |  | ||||||
|   deviceVector<calcVector> BLAS_B; |  | ||||||
|   deviceVector<calcVector> BLAS_C; |  | ||||||
|   std::vector<deviceVector<calcMatrix> > BLAS_A; |  | ||||||
|  |  | ||||||
|   std::vector<deviceVector<ComplexD *> > BLAS_AP; |  | ||||||
|   std::vector<deviceVector<ComplexD *> > BLAS_BP; |  | ||||||
|   deviceVector<ComplexD *>               BLAS_CP; |  | ||||||
|  |  | ||||||
|   /////////////////////// |  | ||||||
|   // Interface |  | ||||||
|   /////////////////////// |  | ||||||
|   GridBase      * Grid(void)           { return _CoarseGridMulti; };   // this is all the linalg routines need to know |  | ||||||
|   GridCartesian * CoarseGrid(void)     { return _CoarseGridMulti; };   // this is all the linalg routines need to know |  | ||||||
|  |  | ||||||
|   // Can be used to do I/O on the operator matrices externally |  | ||||||
|   void SetMatrix (int p,CoarseMatrix & A) |  | ||||||
|   { |  | ||||||
|     assert(A.size()==geom_srhs.npoint); |  | ||||||
|     GridtoBLAS(A[p],BLAS_A[p]); |  | ||||||
|   } |  | ||||||
|   void GetMatrix (int p,CoarseMatrix & A) |  | ||||||
|   { |  | ||||||
|     assert(A.size()==geom_srhs.npoint); |  | ||||||
|     BLAStoGrid(A[p],BLAS_A[p]); |  | ||||||
|   } |  | ||||||
|   void CopyMatrix (GeneralCoarseOp &_Op) |  | ||||||
|   { |  | ||||||
|     for(int p=0;p<geom.npoint;p++){ |  | ||||||
|       auto Aup = _Op.Cell.Extract(_Op._A[p]); |  | ||||||
|       //Unpadded |  | ||||||
|       GridtoBLAS(Aup,BLAS_A[p]); |  | ||||||
|     } |  | ||||||
|   } |  | ||||||
|   /* |  | ||||||
|   void CheckMatrix (GeneralCoarseOp &_Op) |  | ||||||
|   { |  | ||||||
|     std::cout <<"************* Checking the little direc operator mRHS"<<std::endl; |  | ||||||
|     for(int p=0;p<geom.npoint;p++){ |  | ||||||
|       //Unpadded |  | ||||||
|       auto Aup = _Op.Cell.Extract(_Op._A[p]); |  | ||||||
|       auto Ack = Aup; |  | ||||||
|       BLAStoGrid(Ack,BLAS_A[p]); |  | ||||||
|       std::cout << p<<" Ack "<<norm2(Ack)<<std::endl; |  | ||||||
|       std::cout << p<<" Aup "<<norm2(Aup)<<std::endl; |  | ||||||
|     } |  | ||||||
|     std::cout <<"************* "<<std::endl; |  | ||||||
|   } |  | ||||||
|   */ |  | ||||||
|    |  | ||||||
|   MultiGeneralCoarsenedMatrix(NonLocalStencilGeometry &_geom,GridCartesian *CoarseGridMulti) : |  | ||||||
|     _CoarseGridMulti(CoarseGridMulti), |  | ||||||
|     geom_srhs(_geom), |  | ||||||
|     geom(_CoarseGridMulti,_geom.hops,_geom.skip+1), |  | ||||||
|     Cell(geom.Depth(),_CoarseGridMulti), |  | ||||||
|     Stencil(Cell.grids.back(),geom.shifts) // padded cell stencil |  | ||||||
|   { |  | ||||||
|     int32_t padded_sites   = Cell.grids.back()->lSites(); |  | ||||||
|     int32_t unpadded_sites = CoarseGridMulti->lSites(); |  | ||||||
|      |  | ||||||
|     int32_t nrhs  = CoarseGridMulti->FullDimensions()[0];  // # RHS |  | ||||||
|     int32_t orhs  = nrhs/CComplex::Nsimd(); |  | ||||||
|  |  | ||||||
|     padded_sites   = padded_sites/nrhs; |  | ||||||
|     unpadded_sites = unpadded_sites/nrhs; |  | ||||||
|      |  | ||||||
|     ///////////////////////////////////////////////// |  | ||||||
|     // Device data vector storage |  | ||||||
|     ///////////////////////////////////////////////// |  | ||||||
|     BLAS_A.resize(geom.npoint); |  | ||||||
|     for(int p=0;p<geom.npoint;p++){ |  | ||||||
|       BLAS_A[p].resize (unpadded_sites); // no ghost zone, npoint elements |  | ||||||
|     } |  | ||||||
|      |  | ||||||
|     BLAS_B.resize(nrhs *padded_sites);   // includes ghost zone |  | ||||||
|     BLAS_C.resize(nrhs *unpadded_sites); // no ghost zone |  | ||||||
|     BLAS_AP.resize(geom.npoint); |  | ||||||
|     BLAS_BP.resize(geom.npoint); |  | ||||||
|     for(int p=0;p<geom.npoint;p++){ |  | ||||||
|       BLAS_AP[p].resize(unpadded_sites); |  | ||||||
|       BLAS_BP[p].resize(unpadded_sites); |  | ||||||
|     } |  | ||||||
|     BLAS_CP.resize(unpadded_sites); |  | ||||||
|  |  | ||||||
|     ///////////////////////////////////////////////// |  | ||||||
|     // Pointers to data |  | ||||||
|     ///////////////////////////////////////////////// |  | ||||||
|  |  | ||||||
|     // Site identity mapping for A |  | ||||||
|     for(int p=0;p<geom.npoint;p++){ |  | ||||||
|       for(int ss=0;ss<unpadded_sites;ss++){ |  | ||||||
| 	ComplexD *ptr = (ComplexD *)&BLAS_A[p][ss]; |  | ||||||
| 	acceleratorPut(BLAS_AP[p][ss],ptr); |  | ||||||
|       } |  | ||||||
|     } |  | ||||||
|     // Site identity mapping for C |  | ||||||
|     for(int ss=0;ss<unpadded_sites;ss++){ |  | ||||||
|       ComplexD *ptr = (ComplexD *)&BLAS_C[ss*nrhs]; |  | ||||||
|       acceleratorPut(BLAS_CP[ss],ptr); |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     // Neighbour table is more complicated |  | ||||||
|     int32_t j=0; // Interior point counter (unpadded) |  | ||||||
|     for(int32_t s=0;s<padded_sites;s++){ // 4 volume, padded |  | ||||||
|       int ghost_zone=0; |  | ||||||
|       for(int32_t point = 0 ; point < geom.npoint; point++){ |  | ||||||
| 	int i=s*orhs*geom.npoint+point; |  | ||||||
| 	if( Stencil._entries[i]._wrap ) { // stencil is indexed by the oSite of the CoarseGridMulti, hence orhs factor |  | ||||||
| 	  ghost_zone=1; // If general stencil wrapped in any direction, wrap=1 |  | ||||||
| 	} |  | ||||||
|       } |  | ||||||
|  |  | ||||||
|       if( ghost_zone==0) { |  | ||||||
| 	for(int32_t point = 0 ; point < geom.npoint; point++){ |  | ||||||
| 	  int i=s*orhs*geom.npoint+point; |  | ||||||
|  	  int32_t nbr = Stencil._entries[i]._offset*CComplex::Nsimd(); // oSite -> lSite |  | ||||||
| 	  assert(nbr<BLAS_B.size()); |  | ||||||
| 	  ComplexD * ptr = (ComplexD *)&BLAS_B[nbr]; |  | ||||||
| 	  acceleratorPut(BLAS_BP[point][j],ptr); // neighbour indexing in ghost zone volume |  | ||||||
| 	} |  | ||||||
| 	j++; |  | ||||||
|       } |  | ||||||
|     } |  | ||||||
|     assert(j==unpadded_sites); |  | ||||||
|   } |  | ||||||
|   template<class vobj> void GridtoBLAS(const Lattice<vobj> &from,deviceVector<typename vobj::scalar_object> &to) |  | ||||||
|   { |  | ||||||
|   typedef typename vobj::scalar_object sobj; |  | ||||||
|   typedef typename vobj::scalar_type scalar_type; |  | ||||||
|   typedef typename vobj::vector_type vector_type; |  | ||||||
|  |  | ||||||
|   GridBase *Fg = from.Grid(); |  | ||||||
|   assert(!Fg->_isCheckerBoarded); |  | ||||||
|   int nd = Fg->_ndimension; |  | ||||||
|  |  | ||||||
|   to.resize(Fg->lSites()); |  | ||||||
|  |  | ||||||
|   Coordinate LocalLatt = Fg->LocalDimensions(); |  | ||||||
|   size_t nsite = 1; |  | ||||||
|   for(int i=0;i<nd;i++) nsite *= LocalLatt[i]; |  | ||||||
|  |  | ||||||
|   //////////////////////////////////////////////////////////////////////////////////////////////// |  | ||||||
|   // do the index calc on the GPU |  | ||||||
|   //////////////////////////////////////////////////////////////////////////////////////////////// |  | ||||||
|   Coordinate f_ostride = Fg->_ostride; |  | ||||||
|   Coordinate f_istride = Fg->_istride; |  | ||||||
|   Coordinate f_rdimensions = Fg->_rdimensions; |  | ||||||
|  |  | ||||||
|   autoView(from_v,from,AcceleratorRead); |  | ||||||
|   auto to_v = &to[0]; |  | ||||||
|  |  | ||||||
|   const int words=sizeof(vobj)/sizeof(vector_type); |  | ||||||
|   accelerator_for(idx,nsite,1,{ |  | ||||||
|        |  | ||||||
|       Coordinate from_coor, base; |  | ||||||
|       Lexicographic::CoorFromIndex(base,idx,LocalLatt); |  | ||||||
|       for(int i=0;i<nd;i++){ |  | ||||||
| 	from_coor[i] = base[i]; |  | ||||||
|       } |  | ||||||
|       int from_oidx = 0; for(int d=0;d<nd;d++) from_oidx+=f_ostride[d]*(from_coor[d]%f_rdimensions[d]); |  | ||||||
|       int from_lane = 0; for(int d=0;d<nd;d++) from_lane+=f_istride[d]*(from_coor[d]/f_rdimensions[d]); |  | ||||||
|  |  | ||||||
|       const vector_type* from = (const vector_type *)&from_v[from_oidx]; |  | ||||||
|       scalar_type* to = (scalar_type *)&to_v[idx]; |  | ||||||
|        |  | ||||||
|       scalar_type stmp; |  | ||||||
|       for(int w=0;w<words;w++){ |  | ||||||
| 	stmp = getlane(from[w], from_lane); |  | ||||||
| 	to[w] = stmp; |  | ||||||
|       } |  | ||||||
|     }); |  | ||||||
|   }     |  | ||||||
|   template<class vobj> void BLAStoGrid(Lattice<vobj> &grid,deviceVector<typename vobj::scalar_object> &in) |  | ||||||
|   { |  | ||||||
|   typedef typename vobj::scalar_object sobj; |  | ||||||
|   typedef typename vobj::scalar_type scalar_type; |  | ||||||
|   typedef typename vobj::vector_type vector_type; |  | ||||||
|  |  | ||||||
|   GridBase *Tg = grid.Grid(); |  | ||||||
|   assert(!Tg->_isCheckerBoarded); |  | ||||||
|   int nd = Tg->_ndimension; |  | ||||||
|    |  | ||||||
|   assert(in.size()==Tg->lSites()); |  | ||||||
|  |  | ||||||
|   Coordinate LocalLatt = Tg->LocalDimensions(); |  | ||||||
|   size_t nsite = 1; |  | ||||||
|   for(int i=0;i<nd;i++) nsite *= LocalLatt[i]; |  | ||||||
|  |  | ||||||
|   //////////////////////////////////////////////////////////////////////////////////////////////// |  | ||||||
|   // do the index calc on the GPU |  | ||||||
|   //////////////////////////////////////////////////////////////////////////////////////////////// |  | ||||||
|   Coordinate t_ostride = Tg->_ostride; |  | ||||||
|   Coordinate t_istride = Tg->_istride; |  | ||||||
|   Coordinate t_rdimensions = Tg->_rdimensions; |  | ||||||
|  |  | ||||||
|   autoView(to_v,grid,AcceleratorWrite); |  | ||||||
|   auto from_v = &in[0]; |  | ||||||
|  |  | ||||||
|   const int words=sizeof(vobj)/sizeof(vector_type); |  | ||||||
|   accelerator_for(idx,nsite,1,{ |  | ||||||
|        |  | ||||||
|       Coordinate to_coor, base; |  | ||||||
|       Lexicographic::CoorFromIndex(base,idx,LocalLatt); |  | ||||||
|       for(int i=0;i<nd;i++){ |  | ||||||
| 	to_coor[i] = base[i]; |  | ||||||
|       } |  | ||||||
|       int to_oidx = 0; for(int d=0;d<nd;d++) to_oidx+=t_ostride[d]*(to_coor[d]%t_rdimensions[d]); |  | ||||||
|       int to_lane = 0; for(int d=0;d<nd;d++) to_lane+=t_istride[d]*(to_coor[d]/t_rdimensions[d]); |  | ||||||
|  |  | ||||||
|       vector_type* to = (vector_type *)&to_v[to_oidx]; |  | ||||||
|       scalar_type* from = (scalar_type *)&from_v[idx]; |  | ||||||
|        |  | ||||||
|       scalar_type stmp; |  | ||||||
|       for(int w=0;w<words;w++){ |  | ||||||
| 	stmp=from[w]; |  | ||||||
| 	putlane(to[w], stmp, to_lane); |  | ||||||
|       } |  | ||||||
|     }); |  | ||||||
|   } |  | ||||||
|   void CoarsenOperator(LinearOperatorBase<Lattice<Fobj> > &linop, |  | ||||||
| 		       Aggregation<Fobj,CComplex,nbasis> & Subspace, |  | ||||||
| 		       GridBase *CoarseGrid) |  | ||||||
|   { |  | ||||||
| #if 0 |  | ||||||
|     std::cout << GridLogMessage<< "GeneralCoarsenMatrixMrhs "<< std::endl; |  | ||||||
|  |  | ||||||
|     GridBase *grid = Subspace.FineGrid; |  | ||||||
|  |  | ||||||
|     ///////////////////////////////////////////////////////////// |  | ||||||
|     // Orthogonalise the subblocks over the basis |  | ||||||
|     ///////////////////////////////////////////////////////////// |  | ||||||
|     CoarseScalar InnerProd(CoarseGrid);  |  | ||||||
|     blockOrthogonalise(InnerProd,Subspace.subspace); |  | ||||||
|  |  | ||||||
|     const int npoint = geom_srhs.npoint; |  | ||||||
|  |  | ||||||
|     Coordinate clatt = CoarseGrid->GlobalDimensions(); |  | ||||||
|     int Nd = CoarseGrid->Nd(); |  | ||||||
|       /* |  | ||||||
|        *     Here, k,l index which possible momentum/shift within the N-points connected by MdagM. |  | ||||||
|        *     Matrix index i is mapped to this shift via  |  | ||||||
|        *               geom.shifts[i] |  | ||||||
|        * |  | ||||||
|        *     conj(pha[block]) proj[k (which mom)][j (basis vec cpt)][block]  |  | ||||||
|        *       =  \sum_{l in ball}  e^{i q_k . delta_l} < phi_{block,j} | MdagM | phi_{(block+delta_l),i} >  |  | ||||||
|        *       =  \sum_{l in ball} e^{iqk.delta_l} A_ji^{b.b+l} |  | ||||||
|        *       = M_{kl} A_ji^{b.b+l} |  | ||||||
|        * |  | ||||||
|        *     Must assemble and invert matrix M_k,l = e^[i q_k . delta_l] |  | ||||||
|        *   |  | ||||||
|        *     Where q_k = delta_k . (2*M_PI/global_nb[mu]) |  | ||||||
|        * |  | ||||||
|        *     Then A{ji}^{b,b+l} = M^{-1}_{lm} ComputeProj_{m,b,i,j} |  | ||||||
|        */ |  | ||||||
|     Eigen::MatrixXcd Mkl    = Eigen::MatrixXcd::Zero(npoint,npoint); |  | ||||||
|     Eigen::MatrixXcd invMkl = Eigen::MatrixXcd::Zero(npoint,npoint); |  | ||||||
|     ComplexD ci(0.0,1.0); |  | ||||||
|     for(int k=0;k<npoint;k++){ // Loop over momenta |  | ||||||
|  |  | ||||||
|       for(int l=0;l<npoint;l++){ // Loop over nbr relative |  | ||||||
| 	ComplexD phase(0.0,0.0); |  | ||||||
| 	for(int mu=0;mu<Nd;mu++){ |  | ||||||
| 	  RealD TwoPiL =  M_PI * 2.0/ clatt[mu]; |  | ||||||
| 	  phase=phase+TwoPiL*geom_srhs.shifts[k][mu]*geom_srhs.shifts[l][mu]; |  | ||||||
| 	} |  | ||||||
| 	phase=exp(phase*ci); |  | ||||||
| 	Mkl(k,l) = phase; |  | ||||||
|       } |  | ||||||
|     } |  | ||||||
|     invMkl = Mkl.inverse(); |  | ||||||
|  |  | ||||||
|     /////////////////////////////////////////////////////////////////////// |  | ||||||
|     // Now compute the matrix elements of linop between the orthonormal |  | ||||||
|     // set of vectors. |  | ||||||
|     /////////////////////////////////////////////////////////////////////// |  | ||||||
|     FineField phaV(grid); // Phased block basis vector |  | ||||||
|     FineField MphaV(grid);// Matrix applied |  | ||||||
|     std::vector<FineComplexField> phaF(npoint,grid); |  | ||||||
|     std::vector<CoarseComplexField> pha(npoint,CoarseGrid); |  | ||||||
|      |  | ||||||
|     CoarseVector coarseInner(CoarseGrid); |  | ||||||
|      |  | ||||||
|     typedef typename CComplex::scalar_type SComplex; |  | ||||||
|     FineComplexField one(grid); one=SComplex(1.0); |  | ||||||
|     FineComplexField zz(grid); zz = Zero(); |  | ||||||
|     for(int p=0;p<npoint;p++){ // Loop over momenta in npoint |  | ||||||
|       ///////////////////////////////////////////////////// |  | ||||||
|       // Stick a phase on every block |  | ||||||
|       ///////////////////////////////////////////////////// |  | ||||||
|       CoarseComplexField coor(CoarseGrid); |  | ||||||
|       pha[p]=Zero(); |  | ||||||
|       for(int mu=0;mu<Nd;mu++){ |  | ||||||
| 	LatticeCoordinate(coor,mu); |  | ||||||
| 	RealD TwoPiL =  M_PI * 2.0/ clatt[mu]; |  | ||||||
| 	pha[p] = pha[p] + (TwoPiL * geom_srhs.shifts[p][mu]) * coor; |  | ||||||
|       } |  | ||||||
|       pha[p]  =exp(pha[p]*ci);	 |  | ||||||
|  |  | ||||||
|       blockZAXPY(phaF[p],pha[p],one,zz); |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     // Could save on temporary storage here |  | ||||||
|     std::vector<CoarseMatrix> _A; |  | ||||||
|     _A.resize(geom_srhs.npoint,CoarseGrid); |  | ||||||
|  |  | ||||||
|     std::vector<CoarseVector> ComputeProj(npoint,CoarseGrid); |  | ||||||
|     CoarseVector          FT(CoarseGrid); |  | ||||||
|     for(int i=0;i<nbasis;i++){// Loop over basis vectors |  | ||||||
|       std::cout << GridLogMessage<< "CoarsenMatrixColoured vec "<<i<<"/"<<nbasis<< std::endl; |  | ||||||
|       for(int p=0;p<npoint;p++){ // Loop over momenta in npoint |  | ||||||
|  |  | ||||||
| 	phaV = phaF[p]*Subspace.subspace[i]; |  | ||||||
|  |  | ||||||
| 	///////////////////////////////////////////////////////////////////// |  | ||||||
| 	// Multiple phased subspace vector by matrix and project to subspace |  | ||||||
| 	// Remove local bulk phase to leave relative phases |  | ||||||
| 	///////////////////////////////////////////////////////////////////// |  | ||||||
| 	linop.Op(phaV,MphaV); |  | ||||||
|  |  | ||||||
| 	// Fixme, could use batched block projector here |  | ||||||
| 	blockProject(coarseInner,MphaV,Subspace.subspace); |  | ||||||
|  |  | ||||||
| 	coarseInner = conjugate(pha[p]) * coarseInner; |  | ||||||
|  |  | ||||||
| 	ComputeProj[p] = coarseInner; |  | ||||||
|       } |  | ||||||
|  |  | ||||||
|       // Could do this with a block promote or similar BLAS call via the MultiRHSBlockProjector with a const matrix. |  | ||||||
|       for(int k=0;k<npoint;k++){ |  | ||||||
|  |  | ||||||
| 	FT = Zero(); |  | ||||||
| 	for(int l=0;l<npoint;l++){ |  | ||||||
| 	  FT= FT+ invMkl(l,k)*ComputeProj[l]; |  | ||||||
| 	} |  | ||||||
|        |  | ||||||
| 	int osites=CoarseGrid->oSites(); |  | ||||||
| 	autoView( A_v  , _A[k], AcceleratorWrite); |  | ||||||
| 	autoView( FT_v  , FT, AcceleratorRead); |  | ||||||
| 	accelerator_for(sss, osites, 1, { |  | ||||||
| 	    for(int j=0;j<nbasis;j++){ |  | ||||||
| 	      A_v[sss](i,j) = FT_v[sss](j); |  | ||||||
| 	    } |  | ||||||
|         }); |  | ||||||
|       } |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     // Only needed if nonhermitian |  | ||||||
|     //    if ( ! hermitian ) { |  | ||||||
|     //      std::cout << GridLogMessage<<"PopulateAdag  "<<std::endl; |  | ||||||
|     //      PopulateAdag(); |  | ||||||
|     //    } |  | ||||||
|     // Need to write something to populate Adag from A |  | ||||||
|  |  | ||||||
|     for(int p=0;p<geom_srhs.npoint;p++){ |  | ||||||
|       GridtoBLAS(_A[p],BLAS_A[p]); |  | ||||||
|     } |  | ||||||
|     /* |  | ||||||
| Grid : Message : 11698.730546 s : CoarsenOperator eigen  1334 us |  | ||||||
| Grid : Message : 11698.730563 s : CoarsenOperator phase  34729 us |  | ||||||
| Grid : Message : 11698.730565 s : CoarsenOperator phaseBZ 2423814 us |  | ||||||
| Grid : Message : 11698.730566 s : CoarsenOperator mat    127890998 us |  | ||||||
| Grid : Message : 11698.730567 s : CoarsenOperator proj   515840840 us |  | ||||||
| Grid : Message : 11698.730568 s : CoarsenOperator inv    103948313 us |  | ||||||
| Takes 600s to compute matrix elements, DOMINATED by the block project. |  | ||||||
| Easy to speed up with the batched block project. |  | ||||||
| Store npoint vectors, get npoint x Nbasis block projection, and 81 fold faster. |  | ||||||
|  |  | ||||||
| // Block project below taks to 240s |  | ||||||
| Grid : Message : 328.193418 s : CoarsenOperator phase      38338 us |  | ||||||
| Grid : Message : 328.193434 s : CoarsenOperator phaseBZ  1711226 us |  | ||||||
| Grid : Message : 328.193436 s : CoarsenOperator mat    122213270 us |  | ||||||
| //Grid : Message : 328.193438 s : CoarsenOperator proj   1181154 us <-- this is mistimed |  | ||||||
| //Grid : Message : 11698.730568 s : CoarsenOperator inv  103948313 us <-- Cut this ~10x if lucky by loop fusion |  | ||||||
|      */ |  | ||||||
| #else |  | ||||||
|     RealD tproj=0.0; |  | ||||||
|     RealD tmat=0.0; |  | ||||||
|     RealD tphase=0.0; |  | ||||||
|     RealD tphaseBZ=0.0; |  | ||||||
|     RealD tinv=0.0; |  | ||||||
|  |  | ||||||
|     std::cout << GridLogMessage<< "GeneralCoarsenMatrixMrhs "<< std::endl; |  | ||||||
|  |  | ||||||
|     GridBase *grid = Subspace.FineGrid; |  | ||||||
|  |  | ||||||
|     ///////////////////////////////////////////////////////////// |  | ||||||
|     // Orthogonalise the subblocks over the basis |  | ||||||
|     ///////////////////////////////////////////////////////////// |  | ||||||
|     CoarseScalar InnerProd(CoarseGrid);  |  | ||||||
|     blockOrthogonalise(InnerProd,Subspace.subspace); |  | ||||||
|  |  | ||||||
|  |  | ||||||
|     MultiRHSBlockProject<Lattice<Fobj> >    Projector; |  | ||||||
|     Projector.Allocate(nbasis,grid,CoarseGrid); |  | ||||||
|     Projector.ImportBasis(Subspace.subspace); |  | ||||||
|      |  | ||||||
|     const int npoint = geom_srhs.npoint; |  | ||||||
|  |  | ||||||
|     Coordinate clatt = CoarseGrid->GlobalDimensions(); |  | ||||||
|     int Nd = CoarseGrid->Nd(); |  | ||||||
|       /* |  | ||||||
|        *     Here, k,l index which possible momentum/shift within the N-points connected by MdagM. |  | ||||||
|        *     Matrix index i is mapped to this shift via  |  | ||||||
|        *               geom.shifts[i] |  | ||||||
|        * |  | ||||||
|        *     conj(pha[block]) proj[k (which mom)][j (basis vec cpt)][block]  |  | ||||||
|        *       =  \sum_{l in ball}  e^{i q_k . delta_l} < phi_{block,j} | MdagM | phi_{(block+delta_l),i} >  |  | ||||||
|        *       =  \sum_{l in ball} e^{iqk.delta_l} A_ji^{b.b+l} |  | ||||||
|        *       = M_{kl} A_ji^{b.b+l} |  | ||||||
|        * |  | ||||||
|        *     Must assemble and invert matrix M_k,l = e^[i q_k . delta_l] |  | ||||||
|        *   |  | ||||||
|        *     Where q_k = delta_k . (2*M_PI/global_nb[mu]) |  | ||||||
|        * |  | ||||||
|        *     Then A{ji}^{b,b+l} = M^{-1}_{lm} ComputeProj_{m,b,i,j} |  | ||||||
|        */ |  | ||||||
|     Eigen::MatrixXcd Mkl    = Eigen::MatrixXcd::Zero(npoint,npoint); |  | ||||||
|     Eigen::MatrixXcd invMkl = Eigen::MatrixXcd::Zero(npoint,npoint); |  | ||||||
|     ComplexD ci(0.0,1.0); |  | ||||||
|     for(int k=0;k<npoint;k++){ // Loop over momenta |  | ||||||
|  |  | ||||||
|       for(int l=0;l<npoint;l++){ // Loop over nbr relative |  | ||||||
| 	ComplexD phase(0.0,0.0); |  | ||||||
| 	for(int mu=0;mu<Nd;mu++){ |  | ||||||
| 	  RealD TwoPiL =  M_PI * 2.0/ clatt[mu]; |  | ||||||
| 	  phase=phase+TwoPiL*geom_srhs.shifts[k][mu]*geom_srhs.shifts[l][mu]; |  | ||||||
| 	} |  | ||||||
| 	phase=exp(phase*ci); |  | ||||||
| 	Mkl(k,l) = phase; |  | ||||||
|       } |  | ||||||
|     } |  | ||||||
|     invMkl = Mkl.inverse(); |  | ||||||
|  |  | ||||||
|     /////////////////////////////////////////////////////////////////////// |  | ||||||
|     // Now compute the matrix elements of linop between the orthonormal |  | ||||||
|     // set of vectors. |  | ||||||
|     /////////////////////////////////////////////////////////////////////// |  | ||||||
|     FineField phaV(grid); // Phased block basis vector |  | ||||||
|     FineField MphaV(grid);// Matrix applied |  | ||||||
|     std::vector<FineComplexField> phaF(npoint,grid); |  | ||||||
|     std::vector<CoarseComplexField> pha(npoint,CoarseGrid); |  | ||||||
|      |  | ||||||
|     CoarseVector coarseInner(CoarseGrid); |  | ||||||
|      |  | ||||||
|     tphase=-usecond(); |  | ||||||
|     typedef typename CComplex::scalar_type SComplex; |  | ||||||
|     FineComplexField one(grid); one=SComplex(1.0); |  | ||||||
|     FineComplexField zz(grid); zz = Zero(); |  | ||||||
|     for(int p=0;p<npoint;p++){ // Loop over momenta in npoint |  | ||||||
|       ///////////////////////////////////////////////////// |  | ||||||
|       // Stick a phase on every block |  | ||||||
|       ///////////////////////////////////////////////////// |  | ||||||
|       CoarseComplexField coor(CoarseGrid); |  | ||||||
|       pha[p]=Zero(); |  | ||||||
|       for(int mu=0;mu<Nd;mu++){ |  | ||||||
| 	LatticeCoordinate(coor,mu); |  | ||||||
| 	RealD TwoPiL =  M_PI * 2.0/ clatt[mu]; |  | ||||||
| 	pha[p] = pha[p] + (TwoPiL * geom_srhs.shifts[p][mu]) * coor; |  | ||||||
|       } |  | ||||||
|       pha[p]  =exp(pha[p]*ci);	 |  | ||||||
|  |  | ||||||
|       blockZAXPY(phaF[p],pha[p],one,zz); |  | ||||||
|     } |  | ||||||
|     tphase+=usecond(); |  | ||||||
|  |  | ||||||
|     // Could save on temporary storage here |  | ||||||
|     std::vector<CoarseMatrix> _A; |  | ||||||
|     _A.resize(geom_srhs.npoint,CoarseGrid); |  | ||||||
|  |  | ||||||
|     // Count use small chunks than npoint == 81 and save memory |  | ||||||
|     int batch = 9; |  | ||||||
|     std::vector<FineField>    _MphaV(batch,grid); |  | ||||||
|     std::vector<CoarseVector> TmpProj(batch,CoarseGrid); |  | ||||||
|  |  | ||||||
|     std::vector<CoarseVector> ComputeProj(npoint,CoarseGrid); |  | ||||||
|     CoarseVector          FT(CoarseGrid); |  | ||||||
|     for(int i=0;i<nbasis;i++){// Loop over basis vectors |  | ||||||
|       std::cout << GridLogMessage<< "CoarsenMatrixColoured vec "<<i<<"/"<<nbasis<< std::endl; |  | ||||||
|  |  | ||||||
|       //      std::cout << GridLogMessage << " phasing the fine vector "<<std::endl; |  | ||||||
|       // Fixme : do this in batches |  | ||||||
|       for(int p=0;p<npoint;p+=batch){ // Loop over momenta in npoint |  | ||||||
|  |  | ||||||
| 	for(int b=0;b<MIN(batch,npoint-p);b++){ |  | ||||||
| 	  tphaseBZ-=usecond(); |  | ||||||
| 	  phaV = phaF[p+b]*Subspace.subspace[i]; |  | ||||||
| 	  tphaseBZ+=usecond(); |  | ||||||
|  |  | ||||||
| 	  ///////////////////////////////////////////////////////////////////// |  | ||||||
| 	  // Multiple phased subspace vector by matrix and project to subspace |  | ||||||
| 	  // Remove local bulk phase to leave relative phases |  | ||||||
| 	  ///////////////////////////////////////////////////////////////////// |  | ||||||
| 	  // Memory footprint was an issue |  | ||||||
| 	  tmat-=usecond(); |  | ||||||
| 	  linop.Op(phaV,MphaV); |  | ||||||
| 	  _MphaV[b] = MphaV; |  | ||||||
| 	  tmat+=usecond(); |  | ||||||
| 	}       |  | ||||||
|  |  | ||||||
| 	//	std::cout << GridLogMessage << " Calling block project "<<std::endl; |  | ||||||
| 	tproj-=usecond(); |  | ||||||
| 	Projector.blockProject(_MphaV,TmpProj); |  | ||||||
| 	tproj+=usecond(); |  | ||||||
| 	 |  | ||||||
| 	//	std::cout << GridLogMessage << " conj phasing the coarse vectors "<<std::endl; |  | ||||||
| 	for(int b=0;b<MIN(batch,npoint-p);b++){ |  | ||||||
| 	  ComputeProj[p+b] = conjugate(pha[p+b])*TmpProj[b]; |  | ||||||
| 	} |  | ||||||
|       } |  | ||||||
|  |  | ||||||
|       // Could do this with a block promote or similar BLAS call via the MultiRHSBlockProjector with a const matrix. |  | ||||||
|        |  | ||||||
|       // std::cout << GridLogMessage << " Starting FT inv "<<std::endl; |  | ||||||
|       tinv-=usecond(); |  | ||||||
|       for(int k=0;k<npoint;k++){ |  | ||||||
| 	FT = Zero(); |  | ||||||
| 	// 81 kernel calls as many ComputeProj vectors |  | ||||||
| 	// Could fuse with a vector of views, but ugly |  | ||||||
| 	// Could unroll the expression and run fewer kernels -- much more attractive |  | ||||||
| 	// Could also do non blocking. |  | ||||||
| #if 0	 |  | ||||||
| 	for(int l=0;l<npoint;l++){ |  | ||||||
| 	  FT= FT+ invMkl(l,k)*ComputeProj[l]; |  | ||||||
| 	} |  | ||||||
| #else |  | ||||||
| 	const int radix = 9; |  | ||||||
| 	int ll; |  | ||||||
| 	for(ll=0;ll+radix-1<npoint;ll+=radix){ |  | ||||||
| 	  // When ll = npoint-radix, ll+radix-1 = npoint-1, and we do it all. |  | ||||||
| 	  FT = FT  |  | ||||||
| 	    + invMkl(ll+0,k)*ComputeProj[ll+0] |  | ||||||
| 	    + invMkl(ll+1,k)*ComputeProj[ll+1] |  | ||||||
| 	    + invMkl(ll+2,k)*ComputeProj[ll+2] |  | ||||||
| 	    + invMkl(ll+3,k)*ComputeProj[ll+3] |  | ||||||
| 	    + invMkl(ll+4,k)*ComputeProj[ll+4] |  | ||||||
| 	    + invMkl(ll+5,k)*ComputeProj[ll+5] |  | ||||||
| 	    + invMkl(ll+6,k)*ComputeProj[ll+6] |  | ||||||
| 	    + invMkl(ll+7,k)*ComputeProj[ll+7] |  | ||||||
| 	    + invMkl(ll+8,k)*ComputeProj[ll+8]; |  | ||||||
| 	} |  | ||||||
| 	for(int l=ll;l<npoint;l++){ |  | ||||||
| 	  FT= FT+ invMkl(l,k)*ComputeProj[l]; |  | ||||||
| 	} |  | ||||||
| #endif |  | ||||||
|        |  | ||||||
| 	// 1 kernel call -- must be cheaper |  | ||||||
| 	int osites=CoarseGrid->oSites(); |  | ||||||
| 	autoView( A_v  , _A[k], AcceleratorWrite); |  | ||||||
| 	autoView( FT_v  , FT, AcceleratorRead); |  | ||||||
| 	accelerator_for(sss, osites, 1, { |  | ||||||
| 	    for(int j=0;j<nbasis;j++){ |  | ||||||
| 	      A_v[sss](i,j) = FT_v[sss](j); |  | ||||||
| 	    } |  | ||||||
|         }); |  | ||||||
|       } |  | ||||||
|       tinv+=usecond(); |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     // Only needed if nonhermitian |  | ||||||
|     //    if ( ! hermitian ) { |  | ||||||
|     //      std::cout << GridLogMessage<<"PopulateAdag  "<<std::endl; |  | ||||||
|     //      PopulateAdag(); |  | ||||||
|     //    } |  | ||||||
|     // Need to write something to populate Adag from A |  | ||||||
|     //    std::cout << GridLogMessage << " Calling GridtoBLAS "<<std::endl; |  | ||||||
|     for(int p=0;p<geom_srhs.npoint;p++){ |  | ||||||
|       GridtoBLAS(_A[p],BLAS_A[p]); |  | ||||||
|     } |  | ||||||
|     std::cout << GridLogMessage<<"CoarsenOperator phase  "<<tphase<<" us"<<std::endl; |  | ||||||
|     std::cout << GridLogMessage<<"CoarsenOperator phaseBZ "<<tphaseBZ<<" us"<<std::endl; |  | ||||||
|     std::cout << GridLogMessage<<"CoarsenOperator mat    "<<tmat <<" us"<<std::endl; |  | ||||||
|     std::cout << GridLogMessage<<"CoarsenOperator proj   "<<tproj<<" us"<<std::endl; |  | ||||||
|     std::cout << GridLogMessage<<"CoarsenOperator inv    "<<tinv<<" us"<<std::endl; |  | ||||||
| #endif |  | ||||||
|   } |  | ||||||
|   void Mdag(const CoarseVector &in, CoarseVector &out) |  | ||||||
|   { |  | ||||||
|     this->M(in,out); |  | ||||||
|   } |  | ||||||
|   void M (const CoarseVector &in, CoarseVector &out) |  | ||||||
|   { |  | ||||||
|     //    std::cout << GridLogMessage << "New Mrhs coarse"<<std::endl; |  | ||||||
|     conformable(CoarseGrid(),in.Grid()); |  | ||||||
|     conformable(in.Grid(),out.Grid()); |  | ||||||
|     out.Checkerboard() = in.Checkerboard(); |  | ||||||
|  |  | ||||||
|     RealD t_tot; |  | ||||||
|     RealD t_exch; |  | ||||||
|     RealD t_GtoB; |  | ||||||
|     RealD t_BtoG; |  | ||||||
|     RealD t_mult; |  | ||||||
|  |  | ||||||
|     t_tot=-usecond(); |  | ||||||
|     CoarseVector tin=in; |  | ||||||
|     t_exch=-usecond(); |  | ||||||
|     CoarseVector pin = Cell.ExchangePeriodic(tin); //padded input |  | ||||||
|     t_exch+=usecond(); |  | ||||||
|  |  | ||||||
|     CoarseVector pout(pin.Grid()); |  | ||||||
|  |  | ||||||
|     int npoint = geom.npoint; |  | ||||||
|     typedef calcMatrix* Aview; |  | ||||||
|     typedef LatticeView<Cvec> Vview; |  | ||||||
|        |  | ||||||
|     const int Nsimd = CComplex::Nsimd(); |  | ||||||
|  |  | ||||||
|     int64_t nrhs  =pin.Grid()->GlobalDimensions()[0]; |  | ||||||
|     assert(nrhs>=1); |  | ||||||
|  |  | ||||||
|     RealD flops,bytes; |  | ||||||
|     int64_t osites=in.Grid()->oSites(); // unpadded |  | ||||||
|     int64_t unpadded_vol = CoarseGrid()->lSites()/nrhs; |  | ||||||
|      |  | ||||||
|     flops = 1.0* npoint * nbasis * nbasis * 8.0 * osites * CComplex::Nsimd(); |  | ||||||
|     bytes = 1.0*osites*sizeof(siteMatrix)*npoint/pin.Grid()->GlobalDimensions()[0] |  | ||||||
|           + 2.0*osites*sizeof(siteVector)*npoint; |  | ||||||
|      |  | ||||||
|  |  | ||||||
|     t_GtoB=-usecond(); |  | ||||||
|     GridtoBLAS(pin,BLAS_B); |  | ||||||
|     t_GtoB+=usecond(); |  | ||||||
|  |  | ||||||
|     GridBLAS BLAS; |  | ||||||
|  |  | ||||||
|     t_mult=-usecond(); |  | ||||||
|     for(int p=0;p<geom.npoint;p++){ |  | ||||||
|       RealD c = 1.0; |  | ||||||
|       if (p==0) c = 0.0; |  | ||||||
|       ComplexD beta(c); |  | ||||||
|  |  | ||||||
|       BLAS.gemmBatched(nbasis,nrhs,nbasis, |  | ||||||
| 		       ComplexD(1.0), |  | ||||||
| 		       BLAS_AP[p],  |  | ||||||
| 		       BLAS_BP[p],  |  | ||||||
| 		       ComplexD(c),  |  | ||||||
| 		       BLAS_CP); |  | ||||||
|     } |  | ||||||
|     BLAS.synchronise(); |  | ||||||
|     t_mult+=usecond(); |  | ||||||
|  |  | ||||||
|     t_BtoG=-usecond(); |  | ||||||
|     BLAStoGrid(out,BLAS_C); |  | ||||||
|     t_BtoG+=usecond(); |  | ||||||
|     t_tot+=usecond(); |  | ||||||
|     /* |  | ||||||
|     std::cout << GridLogMessage << "New Mrhs coarse DONE "<<std::endl; |  | ||||||
|     std::cout << GridLogMessage<<"Coarse Mult exch "<<t_exch<<" us"<<std::endl; |  | ||||||
|     std::cout << GridLogMessage<<"Coarse Mult mult "<<t_mult<<" us"<<std::endl; |  | ||||||
|     std::cout << GridLogMessage<<"Coarse Mult GtoB  "<<t_GtoB<<" us"<<std::endl; |  | ||||||
|     std::cout << GridLogMessage<<"Coarse Mult BtoG  "<<t_BtoG<<" us"<<std::endl; |  | ||||||
|     std::cout << GridLogMessage<<"Coarse Mult tot  "<<t_tot<<" us"<<std::endl; |  | ||||||
|     */ |  | ||||||
|     //    std::cout << GridLogMessage<<std::endl; |  | ||||||
|     //    std::cout << GridLogMessage<<"Coarse Kernel flops "<< flops<<std::endl; |  | ||||||
|     //    std::cout << GridLogMessage<<"Coarse Kernel flop/s "<< flops/t_mult<<" mflop/s"<<std::endl; |  | ||||||
|     //    std::cout << GridLogMessage<<"Coarse Kernel bytes/s "<< bytes/t_mult/1000<<" GB/s"<<std::endl; |  | ||||||
|     //    std::cout << GridLogMessage<<"Coarse overall flops/s "<< flops/t_tot<<" mflop/s"<<std::endl; |  | ||||||
|     //    std::cout << GridLogMessage<<"Coarse total bytes   "<< bytes/1e6<<" MB"<<std::endl; |  | ||||||
|   }; |  | ||||||
|   virtual  void Mdiag    (const Field &in, Field &out){ assert(0);}; |  | ||||||
|   virtual  void Mdir     (const Field &in, Field &out,int dir, int disp){assert(0);}; |  | ||||||
|   virtual  void MdirAll  (const Field &in, std::vector<Field> &out){assert(0);}; |  | ||||||
| }; |  | ||||||
|    |  | ||||||
| NAMESPACE_END(Grid); |  | ||||||
| @@ -1,238 +0,0 @@ | |||||||
| /************************************************************************************* |  | ||||||
|  |  | ||||||
|     Grid physics library, www.github.com/paboyle/Grid  |  | ||||||
|  |  | ||||||
|     Source file: ./lib/algorithms/GeneralCoarsenedMatrix.h |  | ||||||
|  |  | ||||||
|     Copyright (C) 2015 |  | ||||||
|  |  | ||||||
| Author: Peter Boyle <pboyle@bnl.gov> |  | ||||||
|  |  | ||||||
|     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 */ |  | ||||||
| #pragma once |  | ||||||
|  |  | ||||||
| NAMESPACE_BEGIN(Grid); |  | ||||||
|  |  | ||||||
|  |  | ||||||
| ///////////////////////////////////////////////////////////////// |  | ||||||
| // Geometry class in cartesian case |  | ||||||
| ///////////////////////////////////////////////////////////////// |  | ||||||
|  |  | ||||||
| class Geometry { |  | ||||||
| public: |  | ||||||
|   int npoint; |  | ||||||
|   int base; |  | ||||||
|   std::vector<int> directions   ; |  | ||||||
|   std::vector<int> displacements; |  | ||||||
|   std::vector<int> points_dagger; |  | ||||||
|  |  | ||||||
|   Geometry(int _d)  { |  | ||||||
|      |  | ||||||
|     base = (_d==5) ? 1:0; |  | ||||||
|  |  | ||||||
|     // make coarse grid stencil for 4d , not 5d |  | ||||||
|     if ( _d==5 ) _d=4; |  | ||||||
|  |  | ||||||
|     npoint = 2*_d+1; |  | ||||||
|     directions.resize(npoint); |  | ||||||
|     displacements.resize(npoint); |  | ||||||
|     points_dagger.resize(npoint); |  | ||||||
|     for(int d=0;d<_d;d++){ |  | ||||||
|       directions[d   ] = d+base; |  | ||||||
|       directions[d+_d] = d+base; |  | ||||||
|       displacements[d  ] = +1; |  | ||||||
|       displacements[d+_d]= -1; |  | ||||||
|       points_dagger[d   ] = d+_d; |  | ||||||
|       points_dagger[d+_d] = d; |  | ||||||
|     } |  | ||||||
|     directions   [2*_d]=0; |  | ||||||
|     displacements[2*_d]=0; |  | ||||||
|     points_dagger[2*_d]=2*_d; |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|   int point(int dir, int disp) { |  | ||||||
|     assert(disp == -1 || disp == 0 || disp == 1); |  | ||||||
|     assert(base+0 <= dir && dir < base+4); |  | ||||||
|  |  | ||||||
|     // directions faster index = new indexing |  | ||||||
|     // 4d (base = 0): |  | ||||||
|     // point 0  1  2  3  4  5  6  7  8 |  | ||||||
|     // dir   0  1  2  3  0  1  2  3  0 |  | ||||||
|     // disp +1 +1 +1 +1 -1 -1 -1 -1  0 |  | ||||||
|     // 5d (base = 1): |  | ||||||
|     // point 0  1  2  3  4  5  6  7  8 |  | ||||||
|     // dir   1  2  3  4  1  2  3  4  0 |  | ||||||
|     // disp +1 +1 +1 +1 -1 -1 -1 -1  0 |  | ||||||
|  |  | ||||||
|     // displacements faster index = old indexing |  | ||||||
|     // 4d (base = 0): |  | ||||||
|     // point 0  1  2  3  4  5  6  7  8 |  | ||||||
|     // dir   0  0  1  1  2  2  3  3  0 |  | ||||||
|     // disp +1 -1 +1 -1 +1 -1 +1 -1  0 |  | ||||||
|     // 5d (base = 1): |  | ||||||
|     // point 0  1  2  3  4  5  6  7  8 |  | ||||||
|     // dir   1  1  2  2  3  3  4  4  0 |  | ||||||
|     // disp +1 -1 +1 -1 +1 -1 +1 -1  0 |  | ||||||
|  |  | ||||||
|     if(dir == 0 and disp == 0) |  | ||||||
|       return 8; |  | ||||||
|     else // New indexing |  | ||||||
|       return (1 - disp) / 2 * 4 + dir - base; |  | ||||||
|     // else // Old indexing |  | ||||||
|     //   return (4 * (dir - base) + 1 - disp) / 2; |  | ||||||
|   } |  | ||||||
| }; |  | ||||||
|  |  | ||||||
| ///////////////////////////////////////////////////////////////// |  | ||||||
| // Less local equivalent of Geometry class in cartesian case |  | ||||||
| ///////////////////////////////////////////////////////////////// |  | ||||||
| class NonLocalStencilGeometry { |  | ||||||
| public: |  | ||||||
|   //  int depth; |  | ||||||
|   int skip; |  | ||||||
|   int hops; |  | ||||||
|   int npoint; |  | ||||||
|   std::vector<Coordinate> shifts; |  | ||||||
|   Coordinate stencil_size; |  | ||||||
|   Coordinate stencil_lo; |  | ||||||
|   Coordinate stencil_hi; |  | ||||||
|   GridCartesian *grid; |  | ||||||
|   GridCartesian *Grid() {return grid;}; |  | ||||||
|   int Depth(void){return 1;};   // Ghost zone depth |  | ||||||
|   int Hops(void){return hops;}; // # of hops=> level of corner fill in in stencil |  | ||||||
|   int DimSkip(void){return skip;}; |  | ||||||
|  |  | ||||||
|   virtual ~NonLocalStencilGeometry() {}; |  | ||||||
|  |  | ||||||
|   int  Reverse(int point) |  | ||||||
|   { |  | ||||||
|     int Nd = Grid()->Nd(); |  | ||||||
|     Coordinate shft = shifts[point]; |  | ||||||
|     Coordinate rev(Nd); |  | ||||||
|     for(int mu=0;mu<Nd;mu++) rev[mu]= -shft[mu]; |  | ||||||
|     for(int p=0;p<npoint;p++){ |  | ||||||
|       if(rev==shifts[p]){ |  | ||||||
| 	return p; |  | ||||||
|       } |  | ||||||
|     } |  | ||||||
|     assert(0); |  | ||||||
|     return -1; |  | ||||||
|   } |  | ||||||
|   void BuildShifts(void) |  | ||||||
|   { |  | ||||||
|     this->shifts.resize(0); |  | ||||||
|     int Nd = this->grid->Nd(); |  | ||||||
|  |  | ||||||
|     int dd = this->DimSkip(); |  | ||||||
|     for(int s0=this->stencil_lo[dd+0];s0<=this->stencil_hi[dd+0];s0++){ |  | ||||||
|     for(int s1=this->stencil_lo[dd+1];s1<=this->stencil_hi[dd+1];s1++){ |  | ||||||
|     for(int s2=this->stencil_lo[dd+2];s2<=this->stencil_hi[dd+2];s2++){ |  | ||||||
|     for(int s3=this->stencil_lo[dd+3];s3<=this->stencil_hi[dd+3];s3++){ |  | ||||||
|       Coordinate sft(Nd,0); |  | ||||||
|       sft[dd+0] = s0; |  | ||||||
|       sft[dd+1] = s1; |  | ||||||
|       sft[dd+2] = s2; |  | ||||||
|       sft[dd+3] = s3; |  | ||||||
|       int nhops = abs(s0)+abs(s1)+abs(s2)+abs(s3); |  | ||||||
|       if(nhops<=this->hops) this->shifts.push_back(sft); |  | ||||||
|     }}}} |  | ||||||
|     this->npoint = this->shifts.size(); |  | ||||||
|     std::cout << GridLogMessage << "NonLocalStencilGeometry has "<< this->npoint << " terms in stencil "<<std::endl; |  | ||||||
|   } |  | ||||||
|    |  | ||||||
|   NonLocalStencilGeometry(GridCartesian *_coarse_grid,int _hops,int _skip) : grid(_coarse_grid), hops(_hops), skip(_skip) |  | ||||||
|   { |  | ||||||
|     Coordinate latt = grid->GlobalDimensions(); |  | ||||||
|     stencil_size.resize(grid->Nd()); |  | ||||||
|     stencil_lo.resize(grid->Nd()); |  | ||||||
|     stencil_hi.resize(grid->Nd()); |  | ||||||
|     for(int d=0;d<grid->Nd();d++){ |  | ||||||
|      if ( latt[d] == 1 ) { |  | ||||||
|       stencil_lo[d] = 0; |  | ||||||
|       stencil_hi[d] = 0; |  | ||||||
|       stencil_size[d]= 1; |  | ||||||
|      } else if ( latt[d] == 2 ) { |  | ||||||
|       stencil_lo[d] = -1; |  | ||||||
|       stencil_hi[d] = 0; |  | ||||||
|       stencil_size[d]= 2; |  | ||||||
|      } else if ( latt[d] > 2 ) { |  | ||||||
|        stencil_lo[d] = -1; |  | ||||||
|        stencil_hi[d] =  1; |  | ||||||
|        stencil_size[d]= 3; |  | ||||||
|      } |  | ||||||
|     } |  | ||||||
|     this->BuildShifts(); |  | ||||||
|   }; |  | ||||||
|  |  | ||||||
| }; |  | ||||||
|  |  | ||||||
| // Need to worry about red-black now |  | ||||||
| class NonLocalStencilGeometry4D : public NonLocalStencilGeometry { |  | ||||||
| public: |  | ||||||
|   virtual int DerivedDimSkip(void) { return 0;}; |  | ||||||
|   NonLocalStencilGeometry4D(GridCartesian *Coarse,int _hops) : NonLocalStencilGeometry(Coarse,_hops,0) { }; |  | ||||||
|   virtual ~NonLocalStencilGeometry4D() {}; |  | ||||||
| }; |  | ||||||
| class NonLocalStencilGeometry5D : public NonLocalStencilGeometry { |  | ||||||
| public: |  | ||||||
|   virtual int DerivedDimSkip(void) { return 1; };  |  | ||||||
|   NonLocalStencilGeometry5D(GridCartesian *Coarse,int _hops) : NonLocalStencilGeometry(Coarse,_hops,1)  { }; |  | ||||||
|   virtual ~NonLocalStencilGeometry5D() {}; |  | ||||||
| }; |  | ||||||
| /* |  | ||||||
|  * Bunch of different options classes |  | ||||||
|  */ |  | ||||||
| class NextToNextToNextToNearestStencilGeometry4D : public NonLocalStencilGeometry4D { |  | ||||||
| public: |  | ||||||
|   NextToNextToNextToNearestStencilGeometry4D(GridCartesian *Coarse) :  NonLocalStencilGeometry4D(Coarse,4) |  | ||||||
|   { |  | ||||||
|   }; |  | ||||||
| }; |  | ||||||
| class NextToNextToNextToNearestStencilGeometry5D : public  NonLocalStencilGeometry5D { |  | ||||||
| public: |  | ||||||
|   NextToNextToNextToNearestStencilGeometry5D(GridCartesian *Coarse) :  NonLocalStencilGeometry5D(Coarse,4) |  | ||||||
|   { |  | ||||||
|   }; |  | ||||||
| }; |  | ||||||
| class NextToNearestStencilGeometry4D : public  NonLocalStencilGeometry4D { |  | ||||||
| public: |  | ||||||
|   NextToNearestStencilGeometry4D(GridCartesian *Coarse) :  NonLocalStencilGeometry4D(Coarse,2) |  | ||||||
|   { |  | ||||||
|   }; |  | ||||||
| }; |  | ||||||
| class NextToNearestStencilGeometry5D : public  NonLocalStencilGeometry5D { |  | ||||||
| public: |  | ||||||
|   NextToNearestStencilGeometry5D(GridCartesian *Coarse) :  NonLocalStencilGeometry5D(Coarse,2) |  | ||||||
|   { |  | ||||||
|   }; |  | ||||||
| }; |  | ||||||
| class NearestStencilGeometry4D : public  NonLocalStencilGeometry4D { |  | ||||||
| public: |  | ||||||
|   NearestStencilGeometry4D(GridCartesian *Coarse) :  NonLocalStencilGeometry4D(Coarse,1) |  | ||||||
|   { |  | ||||||
|   }; |  | ||||||
| }; |  | ||||||
| class NearestStencilGeometry5D : public  NonLocalStencilGeometry5D { |  | ||||||
| public: |  | ||||||
|   NearestStencilGeometry5D(GridCartesian *Coarse) :  NonLocalStencilGeometry5D(Coarse,1) |  | ||||||
|   { |  | ||||||
|   }; |  | ||||||
| }; |  | ||||||
|  |  | ||||||
| NAMESPACE_END(Grid); |  | ||||||
| @@ -1,34 +0,0 @@ | |||||||
|     /************************************************************************************* |  | ||||||
|  |  | ||||||
|     Grid physics library, www.github.com/paboyle/Grid |  | ||||||
|  |  | ||||||
|     Source file: Grid/algorithms/multigrid/MultiGrid.h |  | ||||||
|  |  | ||||||
|     Copyright (C) 2023 |  | ||||||
|  |  | ||||||
| Author: Peter Boyle <pboyle@bnl.gov> |  | ||||||
|  |  | ||||||
|     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 */ |  | ||||||
| #pragma once |  | ||||||
|  |  | ||||||
| #include <Grid/algorithms/multigrid/Aggregates.h> |  | ||||||
| #include <Grid/algorithms/multigrid/Geometry.h> |  | ||||||
| #include <Grid/algorithms/multigrid/CoarsenedMatrix.h> |  | ||||||
| #include <Grid/algorithms/multigrid/GeneralCoarsenedMatrix.h> |  | ||||||
| #include <Grid/algorithms/multigrid/GeneralCoarsenedMatrixMultiRHS.h> |  | ||||||
| @@ -54,9 +54,6 @@ public: | |||||||
|     size_type bytes = __n*sizeof(_Tp); |     size_type bytes = __n*sizeof(_Tp); | ||||||
|     profilerAllocate(bytes); |     profilerAllocate(bytes); | ||||||
|     _Tp *ptr = (_Tp*) MemoryManager::CpuAllocate(bytes); |     _Tp *ptr = (_Tp*) MemoryManager::CpuAllocate(bytes); | ||||||
|     if ( (_Tp*)ptr == (_Tp *) NULL ) { |  | ||||||
|       printf("Grid CPU Allocator got NULL for %lu bytes\n",(unsigned long) bytes ); |  | ||||||
|     } |  | ||||||
|     assert( ( (_Tp*)ptr != (_Tp *)NULL ) ); |     assert( ( (_Tp*)ptr != (_Tp *)NULL ) ); | ||||||
|     return ptr; |     return ptr; | ||||||
|   } |   } | ||||||
| @@ -103,9 +100,6 @@ public: | |||||||
|     size_type bytes = __n*sizeof(_Tp); |     size_type bytes = __n*sizeof(_Tp); | ||||||
|     profilerAllocate(bytes); |     profilerAllocate(bytes); | ||||||
|     _Tp *ptr = (_Tp*) MemoryManager::SharedAllocate(bytes); |     _Tp *ptr = (_Tp*) MemoryManager::SharedAllocate(bytes); | ||||||
|     if ( (_Tp*)ptr == (_Tp *) NULL ) { |  | ||||||
|       printf("Grid Shared Allocator got NULL for %lu bytes\n",(unsigned long) bytes ); |  | ||||||
|     } |  | ||||||
|     assert( ( (_Tp*)ptr != (_Tp *)NULL ) ); |     assert( ( (_Tp*)ptr != (_Tp *)NULL ) ); | ||||||
|     return ptr; |     return ptr; | ||||||
|   } |   } | ||||||
| @@ -151,9 +145,6 @@ public: | |||||||
|     size_type bytes = __n*sizeof(_Tp); |     size_type bytes = __n*sizeof(_Tp); | ||||||
|     profilerAllocate(bytes); |     profilerAllocate(bytes); | ||||||
|     _Tp *ptr = (_Tp*) MemoryManager::AcceleratorAllocate(bytes); |     _Tp *ptr = (_Tp*) MemoryManager::AcceleratorAllocate(bytes); | ||||||
|     if ( (_Tp*)ptr == (_Tp *) NULL ) { |  | ||||||
|       printf("Grid Device Allocator got NULL for %lu bytes\n",(unsigned long) bytes ); |  | ||||||
|     } |  | ||||||
|     assert( ( (_Tp*)ptr != (_Tp *)NULL ) ); |     assert( ( (_Tp*)ptr != (_Tp *)NULL ) ); | ||||||
|     return ptr; |     return ptr; | ||||||
|   } |   } | ||||||
| @@ -184,56 +175,8 @@ template<class T> using cshiftAllocator = std::allocator<T>; | |||||||
|  |  | ||||||
| template<class T> using Vector        = std::vector<T,uvmAllocator<T> >;            | template<class T> using Vector        = std::vector<T,uvmAllocator<T> >;            | ||||||
| template<class T> using stencilVector = std::vector<T,alignedAllocator<T> >;            | template<class T> using stencilVector = std::vector<T,alignedAllocator<T> >;            | ||||||
| template<class T> using commVector    = std::vector<T,devAllocator<T> >; | template<class T> using commVector = std::vector<T,devAllocator<T> >; | ||||||
| template<class T> using deviceVector  = std::vector<T,devAllocator<T> >; | template<class T> using cshiftVector = std::vector<T,cshiftAllocator<T> >; | ||||||
| template<class T> using cshiftVector  = std::vector<T,cshiftAllocator<T> >; |  | ||||||
|  |  | ||||||
| /* |  | ||||||
| template<class T> class vecView |  | ||||||
| { |  | ||||||
|  protected: |  | ||||||
|   T * data; |  | ||||||
|   uint64_t size; |  | ||||||
|   ViewMode mode; |  | ||||||
|   void * cpu_ptr; |  | ||||||
|  public: |  | ||||||
|   accelerator_inline T & operator[](size_t i) const { return this->data[i]; }; |  | ||||||
|   vecView(std::vector<T> &refer_to_me,ViewMode _mode) |  | ||||||
|   { |  | ||||||
|     cpu_ptr = &refer_to_me[0]; |  | ||||||
|     size = refer_to_me.size(); |  | ||||||
|     mode = _mode; |  | ||||||
|     data =(T *) MemoryManager::ViewOpen(cpu_ptr, |  | ||||||
| 					size*sizeof(T), |  | ||||||
| 					mode, |  | ||||||
| 					AdviseDefault); |  | ||||||
|   } |  | ||||||
|   void ViewClose(void) |  | ||||||
|   { // Inform the manager |  | ||||||
|     MemoryManager::ViewClose(this->cpu_ptr,this->mode);     |  | ||||||
|   } |  | ||||||
| }; |  | ||||||
|  |  | ||||||
| template<class T> vecView<T> VectorView(std::vector<T> &vec,ViewMode _mode) |  | ||||||
| { |  | ||||||
|   vecView<T> ret(vec,_mode); // does the open |  | ||||||
|   return ret;                // must be closed |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Little autoscope assister |  | ||||||
| template<class View>  |  | ||||||
| class VectorViewCloser |  | ||||||
| { |  | ||||||
|   View v;  // Take a copy of view and call view close when I go out of scope automatically |  | ||||||
|  public: |  | ||||||
|   VectorViewCloser(View &_v) : v(_v) {}; |  | ||||||
|   ~VectorViewCloser() { auto ptr = v.cpu_ptr; v.ViewClose();  MemoryManager::NotifyDeletion(ptr);} |  | ||||||
| }; |  | ||||||
|  |  | ||||||
| #define autoVecView(v_v,v,mode)					\ |  | ||||||
|   auto v_v = VectorView(v,mode);				\ |  | ||||||
|   ViewCloser<decltype(v_v)> _autoView##v_v(v_v); |  | ||||||
| */ |  | ||||||
|  |  | ||||||
| NAMESPACE_END(Grid); | NAMESPACE_END(Grid); | ||||||
|  |  | ||||||
|   | |||||||
| @@ -16,44 +16,6 @@ NAMESPACE_BEGIN(Grid); | |||||||
| uint64_t total_shared; | uint64_t total_shared; | ||||||
| uint64_t total_device; | uint64_t total_device; | ||||||
| uint64_t total_host;; | uint64_t total_host;; | ||||||
|  |  | ||||||
| #if defined(__has_feature) |  | ||||||
| #if __has_feature(leak_sanitizer) |  | ||||||
| #define ASAN_LEAK_CHECK |  | ||||||
| #endif |  | ||||||
| #endif |  | ||||||
|  |  | ||||||
| #ifdef ASAN_LEAK_CHECK |  | ||||||
| #include <sanitizer/asan_interface.h> |  | ||||||
| #include <sanitizer/common_interface_defs.h> |  | ||||||
| #include <sanitizer/lsan_interface.h> |  | ||||||
| #define LEAK_CHECK(A) { __lsan_do_recoverable_leak_check(); } |  | ||||||
| #else |  | ||||||
| #define LEAK_CHECK(A) { } |  | ||||||
| #endif |  | ||||||
|  |  | ||||||
| void MemoryManager::DisplayMallinfo(void) |  | ||||||
| { |  | ||||||
| #ifdef __linux__ |  | ||||||
|   struct mallinfo mi; // really want mallinfo2, but glibc version isn't uniform |  | ||||||
|    |  | ||||||
|   mi = mallinfo(); |  | ||||||
|  |  | ||||||
|   std::cout << "MemoryManager: Total non-mmapped bytes (arena):       "<< (size_t)mi.arena<<std::endl; |  | ||||||
|   std::cout << "MemoryManager: # of free chunks (ordblks):            "<< (size_t)mi.ordblks<<std::endl; |  | ||||||
|   std::cout << "MemoryManager: # of free fastbin blocks (smblks):     "<< (size_t)mi.smblks<<std::endl; |  | ||||||
|   std::cout << "MemoryManager: # of mapped regions (hblks):           "<< (size_t)mi.hblks<<std::endl; |  | ||||||
|   std::cout << "MemoryManager: Bytes in mapped regions (hblkhd):      "<< (size_t)mi.hblkhd<<std::endl; |  | ||||||
|   std::cout << "MemoryManager: Max. total allocated space (usmblks):  "<< (size_t)mi.usmblks<<std::endl; |  | ||||||
|   std::cout << "MemoryManager: Free bytes held in fastbins (fsmblks): "<< (size_t)mi.fsmblks<<std::endl; |  | ||||||
|   std::cout << "MemoryManager: Total allocated space (uordblks):      "<< (size_t)mi.uordblks<<std::endl; |  | ||||||
|   std::cout << "MemoryManager: Total free space (fordblks):           "<< (size_t)mi.fordblks<<std::endl; |  | ||||||
|   std::cout << "MemoryManager: Topmost releasable block (keepcost):   "<< (size_t)mi.keepcost<<std::endl; |  | ||||||
| #endif |  | ||||||
|   LEAK_CHECK(); |  | ||||||
|   |  | ||||||
| } |  | ||||||
|  |  | ||||||
| void MemoryManager::PrintBytes(void) | void MemoryManager::PrintBytes(void) | ||||||
| { | { | ||||||
|   std::cout << " MemoryManager : ------------------------------------ "<<std::endl; |   std::cout << " MemoryManager : ------------------------------------ "<<std::endl; | ||||||
| @@ -73,7 +35,7 @@ void MemoryManager::PrintBytes(void) | |||||||
| #ifdef GRID_CUDA | #ifdef GRID_CUDA | ||||||
|   cuda_mem(); |   cuda_mem(); | ||||||
| #endif | #endif | ||||||
|   DisplayMallinfo(); |    | ||||||
| } | } | ||||||
|  |  | ||||||
| uint64_t MemoryManager::DeviceCacheBytes() { return CacheBytes[Acc] + CacheBytes[AccHuge] + CacheBytes[AccSmall]; } | uint64_t MemoryManager::DeviceCacheBytes() { return CacheBytes[Acc] + CacheBytes[AccHuge] + CacheBytes[AccSmall]; } | ||||||
|   | |||||||
| @@ -209,10 +209,9 @@ private: | |||||||
|   static void     CpuViewClose(uint64_t Ptr); |   static void     CpuViewClose(uint64_t Ptr); | ||||||
|   static uint64_t CpuViewOpen(uint64_t  CpuPtr,size_t bytes,ViewMode mode,ViewAdvise hint); |   static uint64_t CpuViewOpen(uint64_t  CpuPtr,size_t bytes,ViewMode mode,ViewAdvise hint); | ||||||
| #endif | #endif | ||||||
|  |   static void NotifyDeletion(void * CpuPtr); | ||||||
|  |  | ||||||
|  public: |  public: | ||||||
|   static void DisplayMallinfo(void); |  | ||||||
|   static void NotifyDeletion(void * CpuPtr); |  | ||||||
|   static void Print(void); |   static void Print(void); | ||||||
|   static void PrintAll(void); |   static void PrintAll(void); | ||||||
|   static void PrintState( void* CpuPtr); |   static void PrintState( void* CpuPtr); | ||||||
|   | |||||||
| @@ -8,7 +8,7 @@ NAMESPACE_BEGIN(Grid); | |||||||
| static char print_buffer [ MAXLINE ]; | static char print_buffer [ MAXLINE ]; | ||||||
|  |  | ||||||
| #define mprintf(...) snprintf (print_buffer,MAXLINE, __VA_ARGS__ ); std::cout << GridLogMemory << print_buffer; | #define mprintf(...) snprintf (print_buffer,MAXLINE, __VA_ARGS__ ); std::cout << GridLogMemory << print_buffer; | ||||||
| #define dprintf(...) snprintf (print_buffer,MAXLINE, __VA_ARGS__ ); std::cout << GridLogDebug << print_buffer; | #define dprintf(...) snprintf (print_buffer,MAXLINE, __VA_ARGS__ ); std::cout << GridLogMemory << print_buffer; | ||||||
| //#define dprintf(...)  | //#define dprintf(...)  | ||||||
|  |  | ||||||
|  |  | ||||||
| @@ -111,7 +111,7 @@ void MemoryManager::AccDiscard(AcceleratorViewEntry &AccCache) | |||||||
|   /////////////////////////////////////////////////////////// |   /////////////////////////////////////////////////////////// | ||||||
|   assert(AccCache.state!=Empty); |   assert(AccCache.state!=Empty); | ||||||
|    |    | ||||||
|   dprintf("MemoryManager: Discard(%lx) %lx\n",(uint64_t)AccCache.CpuPtr,(uint64_t)AccCache.AccPtr);  |   mprintf("MemoryManager: Discard(%lx) %lx\n",(uint64_t)AccCache.CpuPtr,(uint64_t)AccCache.AccPtr);  | ||||||
|   assert(AccCache.accLock==0); |   assert(AccCache.accLock==0); | ||||||
|   assert(AccCache.cpuLock==0); |   assert(AccCache.cpuLock==0); | ||||||
|   assert(AccCache.CpuPtr!=(uint64_t)NULL); |   assert(AccCache.CpuPtr!=(uint64_t)NULL); | ||||||
| @@ -141,7 +141,7 @@ void MemoryManager::Evict(AcceleratorViewEntry &AccCache) | |||||||
|   /////////////////////////////////////////////////////////////////////////// |   /////////////////////////////////////////////////////////////////////////// | ||||||
|   assert(AccCache.state!=Empty); |   assert(AccCache.state!=Empty); | ||||||
|    |    | ||||||
|   mprintf("MemoryManager: Evict CpuPtr %lx AccPtr %lx cpuLock %ld accLock %ld\n", |   mprintf("MemoryManager: Evict cpu %lx acc %lx cpuLock %ld accLock %ld\n", | ||||||
| 	  (uint64_t)AccCache.CpuPtr,(uint64_t)AccCache.AccPtr, | 	  (uint64_t)AccCache.CpuPtr,(uint64_t)AccCache.AccPtr, | ||||||
| 	  (uint64_t)AccCache.cpuLock,(uint64_t)AccCache.accLock);  | 	  (uint64_t)AccCache.cpuLock,(uint64_t)AccCache.accLock);  | ||||||
|   if (AccCache.accLock!=0) return; |   if (AccCache.accLock!=0) return; | ||||||
| @@ -155,7 +155,7 @@ void MemoryManager::Evict(AcceleratorViewEntry &AccCache) | |||||||
|     AccCache.AccPtr=(uint64_t)NULL; |     AccCache.AccPtr=(uint64_t)NULL; | ||||||
|     AccCache.state=CpuDirty; // CPU primary now |     AccCache.state=CpuDirty; // CPU primary now | ||||||
|     DeviceBytes   -=AccCache.bytes; |     DeviceBytes   -=AccCache.bytes; | ||||||
|     dprintf("MemoryManager: Free(AccPtr %lx) footprint now %ld \n",(uint64_t)AccCache.AccPtr,DeviceBytes);   |     dprintf("MemoryManager: Free(%lx) footprint now %ld \n",(uint64_t)AccCache.AccPtr,DeviceBytes);   | ||||||
|   } |   } | ||||||
|   //  uint64_t CpuPtr = AccCache.CpuPtr; |   //  uint64_t CpuPtr = AccCache.CpuPtr; | ||||||
|   DeviceEvictions++; |   DeviceEvictions++; | ||||||
| @@ -169,7 +169,7 @@ void MemoryManager::Flush(AcceleratorViewEntry &AccCache) | |||||||
|   assert(AccCache.AccPtr!=(uint64_t)NULL); |   assert(AccCache.AccPtr!=(uint64_t)NULL); | ||||||
|   assert(AccCache.CpuPtr!=(uint64_t)NULL); |   assert(AccCache.CpuPtr!=(uint64_t)NULL); | ||||||
|   acceleratorCopyFromDevice((void *)AccCache.AccPtr,(void *)AccCache.CpuPtr,AccCache.bytes); |   acceleratorCopyFromDevice((void *)AccCache.AccPtr,(void *)AccCache.CpuPtr,AccCache.bytes); | ||||||
|   mprintf("MemoryManager: acceleratorCopyFromDevice Flush AccPtr %lx -> CpuPtr %lx\n",(uint64_t)AccCache.AccPtr,(uint64_t)AccCache.CpuPtr); fflush(stdout); |   mprintf("MemoryManager: Flush  %lx -> %lx\n",(uint64_t)AccCache.AccPtr,(uint64_t)AccCache.CpuPtr); fflush(stdout); | ||||||
|   DeviceToHostBytes+=AccCache.bytes; |   DeviceToHostBytes+=AccCache.bytes; | ||||||
|   DeviceToHostXfer++; |   DeviceToHostXfer++; | ||||||
|   AccCache.state=Consistent; |   AccCache.state=Consistent; | ||||||
| @@ -184,7 +184,7 @@ void MemoryManager::Clone(AcceleratorViewEntry &AccCache) | |||||||
|     AccCache.AccPtr=(uint64_t)AcceleratorAllocate(AccCache.bytes); |     AccCache.AccPtr=(uint64_t)AcceleratorAllocate(AccCache.bytes); | ||||||
|     DeviceBytes+=AccCache.bytes; |     DeviceBytes+=AccCache.bytes; | ||||||
|   } |   } | ||||||
|   mprintf("MemoryManager: acceleratorCopyToDevice   Clone AccPtr %lx <- CpuPtr %lx\n",(uint64_t)AccCache.AccPtr,(uint64_t)AccCache.CpuPtr); fflush(stdout); |   mprintf("MemoryManager: Clone %lx <- %lx\n",(uint64_t)AccCache.AccPtr,(uint64_t)AccCache.CpuPtr); fflush(stdout); | ||||||
|   acceleratorCopyToDevice((void *)AccCache.CpuPtr,(void *)AccCache.AccPtr,AccCache.bytes); |   acceleratorCopyToDevice((void *)AccCache.CpuPtr,(void *)AccCache.AccPtr,AccCache.bytes); | ||||||
|   HostToDeviceBytes+=AccCache.bytes; |   HostToDeviceBytes+=AccCache.bytes; | ||||||
|   HostToDeviceXfer++; |   HostToDeviceXfer++; | ||||||
| @@ -474,7 +474,6 @@ void  MemoryManager::Print(void) | |||||||
|   std::cout << GridLogMessage << DeviceEvictions  << " Evictions from device " << std::endl; |   std::cout << GridLogMessage << DeviceEvictions  << " Evictions from device " << std::endl; | ||||||
|   std::cout << GridLogMessage << DeviceDestroy    << " Destroyed vectors on device " << std::endl; |   std::cout << GridLogMessage << DeviceDestroy    << " Destroyed vectors on device " << std::endl; | ||||||
|   std::cout << GridLogMessage << AccViewTable.size()<< " vectors " << LRU.size()<<" evictable"<< std::endl; |   std::cout << GridLogMessage << AccViewTable.size()<< " vectors " << LRU.size()<<" evictable"<< std::endl; | ||||||
|   acceleratorMem(); |  | ||||||
|   std::cout << GridLogMessage << "--------------------------------------------" << std::endl; |   std::cout << GridLogMessage << "--------------------------------------------" << std::endl; | ||||||
| } | } | ||||||
| void  MemoryManager::PrintAll(void) | void  MemoryManager::PrintAll(void) | ||||||
|   | |||||||
| @@ -70,8 +70,8 @@ public: | |||||||
|   Coordinate _istride;    // Inner stride i.e. within simd lane |   Coordinate _istride;    // Inner stride i.e. within simd lane | ||||||
|   int _osites;                  // _isites*_osites = product(dimensions). |   int _osites;                  // _isites*_osites = product(dimensions). | ||||||
|   int _isites; |   int _isites; | ||||||
|   int64_t _fsites;                  // _isites*_osites = product(dimensions). |   int _fsites;                  // _isites*_osites = product(dimensions). | ||||||
|   int64_t _gsites; |   int _gsites; | ||||||
|   Coordinate _slice_block;// subslice information |   Coordinate _slice_block;// subslice information | ||||||
|   Coordinate _slice_stride; |   Coordinate _slice_stride; | ||||||
|   Coordinate _slice_nblock; |   Coordinate _slice_nblock; | ||||||
| @@ -91,7 +91,6 @@ public: | |||||||
|   //////////////////////////////////////////////////////////////// |   //////////////////////////////////////////////////////////////// | ||||||
|   virtual int CheckerBoarded(int dim)=0; |   virtual int CheckerBoarded(int dim)=0; | ||||||
|   virtual int CheckerBoard(const Coordinate &site)=0; |   virtual int CheckerBoard(const Coordinate &site)=0; | ||||||
|   virtual int CheckerDim(void){ return 0; }; |  | ||||||
|   virtual int CheckerBoardDestination(int source_cb,int shift,int dim)=0; |   virtual int CheckerBoardDestination(int source_cb,int shift,int dim)=0; | ||||||
|   virtual int CheckerBoardShift(int source_cb,int dim,int shift,int osite)=0; |   virtual int CheckerBoardShift(int source_cb,int dim,int shift,int osite)=0; | ||||||
|   virtual int CheckerBoardShiftForCB(int source_cb,int dim,int shift,int cb)=0; |   virtual int CheckerBoardShiftForCB(int source_cb,int dim,int shift,int cb)=0; | ||||||
| @@ -184,7 +183,7 @@ public: | |||||||
|   inline int Nsimd(void)  const { return _isites; };// Synonymous with iSites |   inline int Nsimd(void)  const { return _isites; };// Synonymous with iSites | ||||||
|   inline int oSites(void) const { return _osites; }; |   inline int oSites(void) const { return _osites; }; | ||||||
|   inline int lSites(void) const { return _isites*_osites; };  |   inline int lSites(void) const { return _isites*_osites; };  | ||||||
|   inline int64_t gSites(void) const { return (int64_t)_isites*(int64_t)_osites*(int64_t)_Nprocessors; };  |   inline int gSites(void) const { return _isites*_osites*_Nprocessors; };  | ||||||
|   inline int Nd    (void) const { return _ndimension;}; |   inline int Nd    (void) const { return _ndimension;}; | ||||||
|  |  | ||||||
|   inline const Coordinate LocalStarts(void)             { return _lstart;    }; |   inline const Coordinate LocalStarts(void)             { return _lstart;    }; | ||||||
| @@ -215,7 +214,7 @@ public: | |||||||
|   //////////////////////////////////////////////////////////////// |   //////////////////////////////////////////////////////////////// | ||||||
|   // Global addressing |   // Global addressing | ||||||
|   //////////////////////////////////////////////////////////////// |   //////////////////////////////////////////////////////////////// | ||||||
|   void GlobalIndexToGlobalCoor(int64_t gidx,Coordinate &gcoor){ |   void GlobalIndexToGlobalCoor(int gidx,Coordinate &gcoor){ | ||||||
|     assert(gidx< gSites()); |     assert(gidx< gSites()); | ||||||
|     Lexicographic::CoorFromIndex(gcoor,gidx,_gdimensions); |     Lexicographic::CoorFromIndex(gcoor,gidx,_gdimensions); | ||||||
|   } |   } | ||||||
| @@ -223,7 +222,7 @@ public: | |||||||
|     assert(lidx<lSites()); |     assert(lidx<lSites()); | ||||||
|     Lexicographic::CoorFromIndex(lcoor,lidx,_ldimensions); |     Lexicographic::CoorFromIndex(lcoor,lidx,_ldimensions); | ||||||
|   } |   } | ||||||
|   void GlobalCoorToGlobalIndex(const Coordinate & gcoor,int64_t & gidx){ |   void GlobalCoorToGlobalIndex(const Coordinate & gcoor,int & gidx){ | ||||||
|     gidx=0; |     gidx=0; | ||||||
|     int mult=1; |     int mult=1; | ||||||
|     for(int mu=0;mu<_ndimension;mu++) { |     for(int mu=0;mu<_ndimension;mu++) { | ||||||
|   | |||||||
| @@ -60,7 +60,6 @@ public: | |||||||
|   int              _checker_dim; |   int              _checker_dim; | ||||||
|   std::vector<int> _checker_board; |   std::vector<int> _checker_board; | ||||||
|  |  | ||||||
|   virtual int CheckerDim(void){ return _checker_dim; }; |  | ||||||
|   virtual int CheckerBoarded(int dim){ |   virtual int CheckerBoarded(int dim){ | ||||||
|     if( dim==_checker_dim) return 1; |     if( dim==_checker_dim) return 1; | ||||||
|     else return 0; |     else return 0; | ||||||
|   | |||||||
| @@ -138,14 +138,6 @@ public: | |||||||
|   //////////////////////////////////////////////////////////// |   //////////////////////////////////////////////////////////// | ||||||
|   // Face exchange, buffer swap in translational invariant way |   // Face exchange, buffer swap in translational invariant way | ||||||
|   //////////////////////////////////////////////////////////// |   //////////////////////////////////////////////////////////// | ||||||
|   void CommsComplete(std::vector<CommsRequest_t> &list); |  | ||||||
|   void SendToRecvFromBegin(std::vector<CommsRequest_t> &list, |  | ||||||
| 			   void *xmit, |  | ||||||
| 			   int dest, |  | ||||||
| 			   void *recv, |  | ||||||
| 			   int from, |  | ||||||
| 			   int bytes,int dir); |  | ||||||
|    |  | ||||||
|   void SendToRecvFrom(void *xmit, |   void SendToRecvFrom(void *xmit, | ||||||
| 		      int xmit_to_rank, | 		      int xmit_to_rank, | ||||||
| 		      void *recv, | 		      void *recv, | ||||||
|   | |||||||
| @@ -306,44 +306,6 @@ void CartesianCommunicator::GlobalSumVector(double *d,int N) | |||||||
|   int ierr = MPI_Allreduce(MPI_IN_PLACE,d,N,MPI_DOUBLE,MPI_SUM,communicator); |   int ierr = MPI_Allreduce(MPI_IN_PLACE,d,N,MPI_DOUBLE,MPI_SUM,communicator); | ||||||
|   assert(ierr==0); |   assert(ierr==0); | ||||||
| } | } | ||||||
|  |  | ||||||
| void CartesianCommunicator::SendToRecvFromBegin(std::vector<CommsRequest_t> &list, |  | ||||||
| 						void *xmit, |  | ||||||
| 						int dest, |  | ||||||
| 						void *recv, |  | ||||||
| 						int from, |  | ||||||
| 						int bytes,int dir) |  | ||||||
| { |  | ||||||
|   MPI_Request xrq; |  | ||||||
|   MPI_Request rrq; |  | ||||||
|  |  | ||||||
|   assert(dest != _processor); |  | ||||||
|   assert(from != _processor); |  | ||||||
|  |  | ||||||
|   int tag; |  | ||||||
|  |  | ||||||
|   tag= dir+from*32; |  | ||||||
|   int ierr=MPI_Irecv(recv, bytes, MPI_CHAR,from,tag,communicator,&rrq); |  | ||||||
|   assert(ierr==0); |  | ||||||
|   list.push_back(rrq); |  | ||||||
|    |  | ||||||
|   tag= dir+_processor*32; |  | ||||||
|   ierr =MPI_Isend(xmit, bytes, MPI_CHAR,dest,tag,communicator,&xrq); |  | ||||||
|   assert(ierr==0); |  | ||||||
|   list.push_back(xrq); |  | ||||||
| } |  | ||||||
| void CartesianCommunicator::CommsComplete(std::vector<CommsRequest_t> &list) |  | ||||||
| { |  | ||||||
|   int nreq=list.size(); |  | ||||||
|  |  | ||||||
|   if (nreq==0) return; |  | ||||||
|  |  | ||||||
|   std::vector<MPI_Status> status(nreq); |  | ||||||
|   int ierr = MPI_Waitall(nreq,&list[0],&status[0]); |  | ||||||
|   assert(ierr==0); |  | ||||||
|   list.resize(0); |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // Basic Halo comms primitive | // Basic Halo comms primitive | ||||||
| void CartesianCommunicator::SendToRecvFrom(void *xmit, | void CartesianCommunicator::SendToRecvFrom(void *xmit, | ||||||
| 					   int dest, | 					   int dest, | ||||||
| @@ -386,7 +348,6 @@ double CartesianCommunicator::StencilSendToRecvFrom( void *xmit, | |||||||
|   return offbytes; |   return offbytes; | ||||||
| } | } | ||||||
|  |  | ||||||
| #undef NVLINK_GET // Define to use get instead of put DMA |  | ||||||
| double CartesianCommunicator::StencilSendToRecvFromBegin(std::vector<CommsRequest_t> &list, | double CartesianCommunicator::StencilSendToRecvFromBegin(std::vector<CommsRequest_t> &list, | ||||||
| 							 void *xmit, | 							 void *xmit, | ||||||
| 							 int dest,int dox, | 							 int dest,int dox, | ||||||
| @@ -419,15 +380,9 @@ double CartesianCommunicator::StencilSendToRecvFromBegin(std::vector<CommsReques | |||||||
|       list.push_back(rrq); |       list.push_back(rrq); | ||||||
|       off_node_bytes+=rbytes; |       off_node_bytes+=rbytes; | ||||||
|     } |     } | ||||||
| #ifdef NVLINK_GET |  | ||||||
|       void *shm = (void *) this->ShmBufferTranslate(from,xmit); |  | ||||||
|       assert(shm!=NULL); |  | ||||||
|       acceleratorCopyDeviceToDeviceAsynch(shm,recv,rbytes); |  | ||||||
| #endif |  | ||||||
|   } |   } | ||||||
|    |    | ||||||
|   if (dox) { |   if (dox) { | ||||||
|     //  rcrc = crc32(rcrc,(unsigned char *)recv,bytes); |  | ||||||
|     if ( (gdest == MPI_UNDEFINED) || Stencil_force_mpi ) { |     if ( (gdest == MPI_UNDEFINED) || Stencil_force_mpi ) { | ||||||
|       tag= dir+_processor*32; |       tag= dir+_processor*32; | ||||||
|       ierr =MPI_Isend(xmit, xbytes, MPI_CHAR,dest,tag,communicator_halo[commdir],&xrq); |       ierr =MPI_Isend(xmit, xbytes, MPI_CHAR,dest,tag,communicator_halo[commdir],&xrq); | ||||||
| @@ -435,12 +390,9 @@ double CartesianCommunicator::StencilSendToRecvFromBegin(std::vector<CommsReques | |||||||
|       list.push_back(xrq); |       list.push_back(xrq); | ||||||
|       off_node_bytes+=xbytes; |       off_node_bytes+=xbytes; | ||||||
|     } else { |     } else { | ||||||
| #ifndef NVLINK_GET |  | ||||||
|       void *shm = (void *) this->ShmBufferTranslate(dest,recv); |       void *shm = (void *) this->ShmBufferTranslate(dest,recv); | ||||||
|       assert(shm!=NULL); |       assert(shm!=NULL); | ||||||
|       acceleratorCopyDeviceToDeviceAsynch(xmit,shm,xbytes); |       acceleratorCopyDeviceToDeviceAsynch(xmit,shm,xbytes); | ||||||
| #endif |  | ||||||
|        |  | ||||||
|     } |     } | ||||||
|   } |   } | ||||||
|  |  | ||||||
| @@ -450,8 +402,6 @@ void CartesianCommunicator::StencilSendToRecvFromComplete(std::vector<CommsReque | |||||||
| { | { | ||||||
|   int nreq=list.size(); |   int nreq=list.size(); | ||||||
|  |  | ||||||
|   acceleratorCopySynchronise(); |  | ||||||
|  |  | ||||||
|   if (nreq==0) return; |   if (nreq==0) return; | ||||||
|  |  | ||||||
|   std::vector<MPI_Status> status(nreq); |   std::vector<MPI_Status> status(nreq); | ||||||
|   | |||||||
| @@ -91,17 +91,6 @@ void CartesianCommunicator::SendToRecvFrom(void *xmit, | |||||||
| { | { | ||||||
|   assert(0); |   assert(0); | ||||||
| } | } | ||||||
| void CartesianCommunicator::CommsComplete(std::vector<CommsRequest_t> &list){ assert(0);} |  | ||||||
| void CartesianCommunicator::SendToRecvFromBegin(std::vector<CommsRequest_t> &list, |  | ||||||
| 						void *xmit, |  | ||||||
| 						int dest, |  | ||||||
| 						void *recv, |  | ||||||
| 						int from, |  | ||||||
| 						int bytes,int dir) |  | ||||||
| { |  | ||||||
|   assert(0); |  | ||||||
| } |  | ||||||
|  |  | ||||||
| void CartesianCommunicator::AllToAll(int dim,void  *in,void *out,uint64_t words,uint64_t bytes) | void CartesianCommunicator::AllToAll(int dim,void  *in,void *out,uint64_t words,uint64_t bytes) | ||||||
| { | { | ||||||
|   bcopy(in,out,bytes*words); |   bcopy(in,out,bytes*words); | ||||||
|   | |||||||
| @@ -40,9 +40,6 @@ int                 GlobalSharedMemory::_ShmAlloc; | |||||||
| uint64_t            GlobalSharedMemory::_ShmAllocBytes; | uint64_t            GlobalSharedMemory::_ShmAllocBytes; | ||||||
|  |  | ||||||
| std::vector<void *> GlobalSharedMemory::WorldShmCommBufs; | std::vector<void *> GlobalSharedMemory::WorldShmCommBufs; | ||||||
| #ifndef ACCELERATOR_AWARE_MPI |  | ||||||
| void * GlobalSharedMemory::HostCommBuf; |  | ||||||
| #endif |  | ||||||
|  |  | ||||||
| Grid_MPI_Comm       GlobalSharedMemory::WorldShmComm; | Grid_MPI_Comm       GlobalSharedMemory::WorldShmComm; | ||||||
| int                 GlobalSharedMemory::WorldShmRank; | int                 GlobalSharedMemory::WorldShmRank; | ||||||
| @@ -69,26 +66,6 @@ void GlobalSharedMemory::SharedMemoryFree(void) | |||||||
| ///////////////////////////////// | ///////////////////////////////// | ||||||
| // Alloc, free shmem region | // Alloc, free shmem region | ||||||
| ///////////////////////////////// | ///////////////////////////////// | ||||||
| #ifndef ACCELERATOR_AWARE_MPI |  | ||||||
| void *SharedMemory::HostBufferMalloc(size_t bytes){ |  | ||||||
|   void *ptr = (void *)host_heap_top; |  | ||||||
|   host_heap_top  += bytes; |  | ||||||
|   host_heap_bytes+= bytes; |  | ||||||
|   if (host_heap_bytes >= host_heap_size) { |  | ||||||
|     std::cout<< " HostBufferMalloc exceeded heap size -- try increasing with --shm <MB> flag" <<std::endl; |  | ||||||
|     std::cout<< " Parameter specified in units of MB (megabytes) " <<std::endl; |  | ||||||
|     std::cout<< " Current alloc is " << (bytes/(1024*1024)) <<"MB"<<std::endl; |  | ||||||
|     std::cout<< " Current bytes is " << (host_heap_bytes/(1024*1024)) <<"MB"<<std::endl; |  | ||||||
|     std::cout<< " Current heap  is " << (host_heap_size/(1024*1024)) <<"MB"<<std::endl; |  | ||||||
|     assert(host_heap_bytes<host_heap_size); |  | ||||||
|   } |  | ||||||
|   return ptr; |  | ||||||
| } |  | ||||||
| void SharedMemory::HostBufferFreeAll(void) {  |  | ||||||
|   host_heap_top  =(size_t)HostCommBuf; |  | ||||||
|   host_heap_bytes=0; |  | ||||||
| } |  | ||||||
| #endif |  | ||||||
| void *SharedMemory::ShmBufferMalloc(size_t bytes){ | void *SharedMemory::ShmBufferMalloc(size_t bytes){ | ||||||
|   //  bytes = (bytes+sizeof(vRealD))&(~(sizeof(vRealD)-1));// align up bytes |   //  bytes = (bytes+sizeof(vRealD))&(~(sizeof(vRealD)-1));// align up bytes | ||||||
|   void *ptr = (void *)heap_top; |   void *ptr = (void *)heap_top; | ||||||
|   | |||||||
| @@ -75,9 +75,7 @@ public: | |||||||
|   static int           Hugepages; |   static int           Hugepages; | ||||||
|  |  | ||||||
|   static std::vector<void *> WorldShmCommBufs; |   static std::vector<void *> WorldShmCommBufs; | ||||||
| #ifndef ACCELERATOR_AWARE_MPI |  | ||||||
|   static void *HostCommBuf; |  | ||||||
| #endif |  | ||||||
|   static Grid_MPI_Comm WorldComm; |   static Grid_MPI_Comm WorldComm; | ||||||
|   static int           WorldRank; |   static int           WorldRank; | ||||||
|   static int           WorldSize; |   static int           WorldSize; | ||||||
| @@ -122,13 +120,6 @@ private: | |||||||
|   size_t heap_bytes; |   size_t heap_bytes; | ||||||
|   size_t heap_size; |   size_t heap_size; | ||||||
|  |  | ||||||
| #ifndef ACCELERATOR_AWARE_MPI |  | ||||||
|   size_t host_heap_top;  // set in free all |  | ||||||
|   size_t host_heap_bytes;// set in free all |  | ||||||
|   void *HostCommBuf;     // set in SetCommunicator |  | ||||||
|   size_t host_heap_size; // set in SetCommunicator |  | ||||||
| #endif |  | ||||||
|    |  | ||||||
| protected: | protected: | ||||||
|  |  | ||||||
|   Grid_MPI_Comm    ShmComm; // for barriers |   Grid_MPI_Comm    ShmComm; // for barriers | ||||||
| @@ -160,10 +151,7 @@ public: | |||||||
|   void *ShmBufferTranslate(int rank,void * local_p); |   void *ShmBufferTranslate(int rank,void * local_p); | ||||||
|   void *ShmBufferMalloc(size_t bytes); |   void *ShmBufferMalloc(size_t bytes); | ||||||
|   void  ShmBufferFreeAll(void) ; |   void  ShmBufferFreeAll(void) ; | ||||||
| #ifndef ACCELERATOR_AWARE_MPI |    | ||||||
|   void *HostBufferMalloc(size_t bytes); |  | ||||||
|   void HostBufferFreeAll(void); |  | ||||||
| #endif   |  | ||||||
|   ////////////////////////////////////////////////////////////////////////// |   ////////////////////////////////////////////////////////////////////////// | ||||||
|   // Make info on Nodes & ranks and Shared memory available |   // Make info on Nodes & ranks and Shared memory available | ||||||
|   ////////////////////////////////////////////////////////////////////////// |   ////////////////////////////////////////////////////////////////////////// | ||||||
|   | |||||||
| @@ -39,11 +39,9 @@ Author: Christoph Lehner <christoph@lhnr.de> | |||||||
| #include <hip/hip_runtime_api.h> | #include <hip/hip_runtime_api.h> | ||||||
| #endif | #endif | ||||||
| #ifdef GRID_SYCL | #ifdef GRID_SYCL | ||||||
| #ifdef ACCELERATOR_AWARE_MPI |  | ||||||
| #define GRID_SYCL_LEVEL_ZERO_IPC | #define GRID_SYCL_LEVEL_ZERO_IPC | ||||||
| #define SHM_SOCKETS |  | ||||||
| #endif  |  | ||||||
| #include <syscall.h> | #include <syscall.h> | ||||||
|  | #define SHM_SOCKETS  | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
| #include <sys/socket.h> | #include <sys/socket.h> | ||||||
| @@ -514,6 +512,46 @@ void GlobalSharedMemory::SharedMemoryAllocate(uint64_t bytes, int flags) | |||||||
| // Hugetlbfs mapping intended | // Hugetlbfs mapping intended | ||||||
| //////////////////////////////////////////////////////////////////////////////////////////// | //////////////////////////////////////////////////////////////////////////////////////////// | ||||||
| #if defined(GRID_CUDA) ||defined(GRID_HIP)  || defined(GRID_SYCL) | #if defined(GRID_CUDA) ||defined(GRID_HIP)  || defined(GRID_SYCL) | ||||||
|  |  | ||||||
|  | //if defined(GRID_SYCL) | ||||||
|  | #if 0 | ||||||
|  | void GlobalSharedMemory::SharedMemoryAllocate(uint64_t bytes, int flags) | ||||||
|  | { | ||||||
|  |   void * ShmCommBuf ;  | ||||||
|  |   assert(_ShmSetup==1); | ||||||
|  |   assert(_ShmAlloc==0); | ||||||
|  |  | ||||||
|  |   ////////////////////////////////////////////////////////////////////////////////////////////////////////// | ||||||
|  |   // allocate the pointer array for shared windows for our group | ||||||
|  |   ////////////////////////////////////////////////////////////////////////////////////////////////////////// | ||||||
|  |   MPI_Barrier(WorldShmComm); | ||||||
|  |   WorldShmCommBufs.resize(WorldShmSize); | ||||||
|  |  | ||||||
|  |   /////////////////////////////////////////////////////////////////////////////////////////////////////////// | ||||||
|  |   // Each MPI rank should allocate our own buffer | ||||||
|  |   /////////////////////////////////////////////////////////////////////////////////////////////////////////// | ||||||
|  |   ShmCommBuf = acceleratorAllocDevice(bytes); | ||||||
|  |  | ||||||
|  |   if (ShmCommBuf == (void *)NULL ) { | ||||||
|  |     std::cerr << " SharedMemoryMPI.cc acceleratorAllocDevice failed NULL pointer for " << bytes<<" bytes " << std::endl; | ||||||
|  |     exit(EXIT_FAILURE);   | ||||||
|  |   } | ||||||
|  |  | ||||||
|  |   std::cout << WorldRank << Mheader " SharedMemoryMPI.cc acceleratorAllocDevice "<< bytes  | ||||||
|  | 	    << "bytes at "<< std::hex<< ShmCommBuf <<std::dec<<" for comms buffers " <<std::endl; | ||||||
|  |  | ||||||
|  |   SharedMemoryZero(ShmCommBuf,bytes); | ||||||
|  |  | ||||||
|  |   assert(WorldShmSize == 1); | ||||||
|  |   for(int r=0;r<WorldShmSize;r++){ | ||||||
|  |     WorldShmCommBufs[r] = ShmCommBuf; | ||||||
|  |   } | ||||||
|  |   _ShmAllocBytes=bytes; | ||||||
|  |   _ShmAlloc=1; | ||||||
|  | } | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  | #if defined(GRID_CUDA) ||defined(GRID_HIP) ||defined(GRID_SYCL)   | ||||||
| void GlobalSharedMemory::SharedMemoryAllocate(uint64_t bytes, int flags) | void GlobalSharedMemory::SharedMemoryAllocate(uint64_t bytes, int flags) | ||||||
| { | { | ||||||
|   void * ShmCommBuf ;  |   void * ShmCommBuf ;  | ||||||
| @@ -536,9 +574,6 @@ void GlobalSharedMemory::SharedMemoryAllocate(uint64_t bytes, int flags) | |||||||
|   /////////////////////////////////////////////////////////////////////////////////////////////////////////// |   /////////////////////////////////////////////////////////////////////////////////////////////////////////// | ||||||
|   // Each MPI rank should allocate our own buffer |   // Each MPI rank should allocate our own buffer | ||||||
|   /////////////////////////////////////////////////////////////////////////////////////////////////////////// |   /////////////////////////////////////////////////////////////////////////////////////////////////////////// | ||||||
| #ifndef ACCELERATOR_AWARE_MPI |  | ||||||
|   HostCommBuf= malloc(bytes); |  | ||||||
| #endif   |  | ||||||
|   ShmCommBuf = acceleratorAllocDevice(bytes); |   ShmCommBuf = acceleratorAllocDevice(bytes); | ||||||
|   if (ShmCommBuf == (void *)NULL ) { |   if (ShmCommBuf == (void *)NULL ) { | ||||||
|     std::cerr << " SharedMemoryMPI.cc acceleratorAllocDevice failed NULL pointer for " << bytes<<" bytes " << std::endl; |     std::cerr << " SharedMemoryMPI.cc acceleratorAllocDevice failed NULL pointer for " << bytes<<" bytes " << std::endl; | ||||||
| @@ -703,6 +738,7 @@ void GlobalSharedMemory::SharedMemoryAllocate(uint64_t bytes, int flags) | |||||||
|   _ShmAllocBytes=bytes; |   _ShmAllocBytes=bytes; | ||||||
|   _ShmAlloc=1; |   _ShmAlloc=1; | ||||||
| } | } | ||||||
|  | #endif | ||||||
|  |  | ||||||
| #else  | #else  | ||||||
| #ifdef GRID_MPI3_SHMMMAP | #ifdef GRID_MPI3_SHMMMAP | ||||||
| @@ -926,12 +962,6 @@ void SharedMemory::SetCommunicator(Grid_MPI_Comm comm) | |||||||
|   } |   } | ||||||
|   ShmBufferFreeAll(); |   ShmBufferFreeAll(); | ||||||
|  |  | ||||||
| #ifndef ACCELERATOR_AWARE_MPI |  | ||||||
|   host_heap_size = heap_size; |  | ||||||
|   HostCommBuf= GlobalSharedMemory::HostCommBuf; |  | ||||||
|   HostBufferFreeAll(); |  | ||||||
| #endif   |  | ||||||
|  |  | ||||||
|   ///////////////////////////////////////////////////////////////////// |   ///////////////////////////////////////////////////////////////////// | ||||||
|   // find comm ranks in our SHM group (i.e. which ranks are on our node) |   // find comm ranks in our SHM group (i.e. which ranks are on our node) | ||||||
|   ///////////////////////////////////////////////////////////////////// |   ///////////////////////////////////////////////////////////////////// | ||||||
|   | |||||||
| @@ -35,7 +35,6 @@ Author: Peter Boyle <paboyle@ph.ed.ac.uk> | |||||||
| #include <Grid/lattice/Lattice_transpose.h> | #include <Grid/lattice/Lattice_transpose.h> | ||||||
| #include <Grid/lattice/Lattice_local.h> | #include <Grid/lattice/Lattice_local.h> | ||||||
| #include <Grid/lattice/Lattice_reduction.h> | #include <Grid/lattice/Lattice_reduction.h> | ||||||
| #include <Grid/lattice/Lattice_crc.h> |  | ||||||
| #include <Grid/lattice/Lattice_peekpoke.h> | #include <Grid/lattice/Lattice_peekpoke.h> | ||||||
| #include <Grid/lattice/Lattice_reality.h> | #include <Grid/lattice/Lattice_reality.h> | ||||||
| #include <Grid/lattice/Lattice_real_imag.h> | #include <Grid/lattice/Lattice_real_imag.h> | ||||||
| @@ -47,4 +46,5 @@ Author: Peter Boyle <paboyle@ph.ed.ac.uk> | |||||||
| #include <Grid/lattice/Lattice_unary.h> | #include <Grid/lattice/Lattice_unary.h> | ||||||
| #include <Grid/lattice/Lattice_transfer.h> | #include <Grid/lattice/Lattice_transfer.h> | ||||||
| #include <Grid/lattice/Lattice_basis.h> | #include <Grid/lattice/Lattice_basis.h> | ||||||
|  | #include <Grid/lattice/Lattice_crc.h> | ||||||
| #include <Grid/lattice/PaddedCell.h> | #include <Grid/lattice/PaddedCell.h> | ||||||
|   | |||||||
| @@ -234,20 +234,10 @@ public: | |||||||
|   } |   } | ||||||
|  |  | ||||||
|   template<class sobj> inline Lattice<vobj> & operator = (const sobj & r){ |   template<class sobj> inline Lattice<vobj> & operator = (const sobj & r){ | ||||||
|     vobj vtmp; |  | ||||||
|     vtmp = r; |  | ||||||
| #if 1 |  | ||||||
|     auto me  = View(CpuWrite); |     auto me  = View(CpuWrite); | ||||||
|     thread_for(ss,me.size(),{ |     thread_for(ss,me.size(),{ | ||||||
|        me[ss]= r; | 	me[ss]= r; | ||||||
|       }); |  | ||||||
| #else     |  | ||||||
|     auto me  = View(AcceleratorWrite); |  | ||||||
|     accelerator_for(ss,me.size(),vobj::Nsimd(),{ |  | ||||||
| 	auto stmp=coalescedRead(vtmp); |  | ||||||
| 	coalescedWrite(me[ss],stmp); |  | ||||||
|     }); |     }); | ||||||
| #endif     |  | ||||||
|     me.ViewClose(); |     me.ViewClose(); | ||||||
|     return *this; |     return *this; | ||||||
|   } |   } | ||||||
| @@ -370,7 +360,7 @@ public: | |||||||
|  |  | ||||||
| template<class vobj> std::ostream& operator<< (std::ostream& stream, const Lattice<vobj> &o){ | template<class vobj> std::ostream& operator<< (std::ostream& stream, const Lattice<vobj> &o){ | ||||||
|   typedef typename vobj::scalar_object sobj; |   typedef typename vobj::scalar_object sobj; | ||||||
|   for(int64_t g=0;g<o.Grid()->_gsites;g++){ |   for(int g=0;g<o.Grid()->_gsites;g++){ | ||||||
|  |  | ||||||
|     Coordinate gcoor; |     Coordinate gcoor; | ||||||
|     o.Grid()->GlobalIndexToGlobalCoor(g,gcoor); |     o.Grid()->GlobalIndexToGlobalCoor(g,gcoor); | ||||||
|   | |||||||
| @@ -62,7 +62,7 @@ void basisRotate(VField &basis,Matrix& Qt,int j0, int j1, int k0,int k1,int Nm) | |||||||
|     basis_v.push_back(basis[k].View(AcceleratorWrite)); |     basis_v.push_back(basis[k].View(AcceleratorWrite)); | ||||||
|   } |   } | ||||||
|  |  | ||||||
| #if ( !(defined(GRID_CUDA) || defined(GRID_HIP) || defined(GRID_SYCL)) ) | #if ( (!defined(GRID_CUDA)) ) | ||||||
|   int max_threads = thread_max(); |   int max_threads = thread_max(); | ||||||
|   Vector < vobj > Bt(Nm * max_threads); |   Vector < vobj > Bt(Nm * max_threads); | ||||||
|   thread_region |   thread_region | ||||||
|   | |||||||
| @@ -29,7 +29,7 @@ Author: Peter Boyle <paboyle@ph.ed.ac.uk> | |||||||
|  |  | ||||||
| NAMESPACE_BEGIN(Grid); | NAMESPACE_BEGIN(Grid); | ||||||
|  |  | ||||||
| template<class vobj> void DumpSliceNorm(std::string s,const Lattice<vobj> &f,int mu=-1) | template<class vobj> void DumpSliceNorm(std::string s,Lattice<vobj> &f,int mu=-1) | ||||||
| { | { | ||||||
|   auto ff = localNorm2(f); |   auto ff = localNorm2(f); | ||||||
|   if ( mu==-1 ) mu = f.Grid()->Nd()-1; |   if ( mu==-1 ) mu = f.Grid()->Nd()-1; | ||||||
| @@ -42,13 +42,13 @@ template<class vobj> void DumpSliceNorm(std::string s,const Lattice<vobj> &f,int | |||||||
|   } |   } | ||||||
| } | } | ||||||
|  |  | ||||||
| template<class vobj> uint32_t crc(const Lattice<vobj> & buf) | template<class vobj> uint32_t crc(Lattice<vobj> & buf) | ||||||
| { | { | ||||||
|   autoView( buf_v , buf, CpuRead); |   autoView( buf_v , buf, CpuRead); | ||||||
|   return ::crc32(0L,(unsigned char *)&buf_v[0],(size_t)sizeof(vobj)*buf.oSites()); |   return ::crc32(0L,(unsigned char *)&buf_v[0],(size_t)sizeof(vobj)*buf.oSites()); | ||||||
| } | } | ||||||
|  |  | ||||||
| #define CRC(U) std::cerr << "FingerPrint "<<__FILE__ <<" "<< __LINE__ <<" "<< #U <<" "<<crc(U)<<std::endl; | #define CRC(U) std::cout << "FingerPrint "<<__FILE__ <<" "<< __LINE__ <<" "<< #U <<" "<<crc(U)<<std::endl; | ||||||
|  |  | ||||||
| NAMESPACE_END(Grid); | NAMESPACE_END(Grid); | ||||||
|  |  | ||||||
|   | |||||||
| @@ -31,7 +31,6 @@ Author: Christoph Lehner <christoph@lhnr.de> | |||||||
| #if defined(GRID_SYCL) | #if defined(GRID_SYCL) | ||||||
| #include <Grid/lattice/Lattice_reduction_sycl.h> | #include <Grid/lattice/Lattice_reduction_sycl.h> | ||||||
| #endif | #endif | ||||||
| #include <Grid/lattice/Lattice_slicesum_core.h> |  | ||||||
|  |  | ||||||
| NAMESPACE_BEGIN(Grid); | NAMESPACE_BEGIN(Grid); | ||||||
|  |  | ||||||
| @@ -204,27 +203,6 @@ template<class vobj> inline RealD norm2(const Lattice<vobj> &arg){ | |||||||
|   return real(nrm);  |   return real(nrm);  | ||||||
| } | } | ||||||
|  |  | ||||||
|  |  | ||||||
| template<class Op,class T1> |  | ||||||
| inline auto norm2(const LatticeUnaryExpression<Op,T1> & expr)  ->RealD |  | ||||||
| { |  | ||||||
|   return norm2(closure(expr)); |  | ||||||
| } |  | ||||||
|  |  | ||||||
| template<class Op,class T1,class T2> |  | ||||||
| inline auto norm2(const LatticeBinaryExpression<Op,T1,T2> & expr)      ->RealD |  | ||||||
| { |  | ||||||
|   return norm2(closure(expr)); |  | ||||||
| } |  | ||||||
|  |  | ||||||
|  |  | ||||||
| template<class Op,class T1,class T2,class T3> |  | ||||||
| inline auto norm2(const LatticeTrinaryExpression<Op,T1,T2,T3> & expr)      ->RealD |  | ||||||
| { |  | ||||||
|   return norm2(closure(expr)); |  | ||||||
| } |  | ||||||
|  |  | ||||||
|  |  | ||||||
| //The global maximum of the site norm2 | //The global maximum of the site norm2 | ||||||
| template<class vobj> inline RealD maxLocalNorm2(const Lattice<vobj> &arg) | template<class vobj> inline RealD maxLocalNorm2(const Lattice<vobj> &arg) | ||||||
| { | { | ||||||
| @@ -264,8 +242,24 @@ inline ComplexD rankInnerProduct(const Lattice<vobj> &left,const Lattice<vobj> & | |||||||
|   const uint64_t sites = grid->oSites(); |   const uint64_t sites = grid->oSites(); | ||||||
|    |    | ||||||
|   // Might make all code paths go this way. |   // Might make all code paths go this way. | ||||||
|  | #if 0 | ||||||
|  |   typedef decltype(innerProductD(vobj(),vobj())) inner_t; | ||||||
|  |   Vector<inner_t> inner_tmp(sites); | ||||||
|  |   auto inner_tmp_v = &inner_tmp[0]; | ||||||
|  |   { | ||||||
|  |     autoView( left_v , left, AcceleratorRead); | ||||||
|  |     autoView( right_v,right, AcceleratorRead); | ||||||
|  |     // This code could read coalesce | ||||||
|  |     // GPU - SIMT lane compliance... | ||||||
|  |     accelerator_for( ss, sites, nsimd,{ | ||||||
|  | 	auto x_l = left_v(ss); | ||||||
|  | 	auto y_l = right_v(ss); | ||||||
|  | 	coalescedWrite(inner_tmp_v[ss],innerProductD(x_l,y_l)); | ||||||
|  |     }); | ||||||
|  |   } | ||||||
|  | #else | ||||||
|   typedef decltype(innerProduct(vobj(),vobj())) inner_t; |   typedef decltype(innerProduct(vobj(),vobj())) inner_t; | ||||||
|   deviceVector<inner_t> inner_tmp(sites); |   Vector<inner_t> inner_tmp(sites); | ||||||
|   auto inner_tmp_v = &inner_tmp[0]; |   auto inner_tmp_v = &inner_tmp[0]; | ||||||
|      |      | ||||||
|   { |   { | ||||||
| @@ -279,35 +273,18 @@ inline ComplexD rankInnerProduct(const Lattice<vobj> &left,const Lattice<vobj> & | |||||||
| 	coalescedWrite(inner_tmp_v[ss],innerProduct(x_l,y_l)); | 	coalescedWrite(inner_tmp_v[ss],innerProduct(x_l,y_l)); | ||||||
|     }); |     }); | ||||||
|   } |   } | ||||||
|  | #endif | ||||||
|   // This is in single precision and fails some tests |   // This is in single precision and fails some tests | ||||||
|   auto anrm = sumD(inner_tmp_v,sites);   |   auto anrm = sumD(inner_tmp_v,sites);   | ||||||
|   nrm = anrm; |   nrm = anrm; | ||||||
|   return nrm; |   return nrm; | ||||||
| } | } | ||||||
|  |  | ||||||
|  |  | ||||||
| template<class vobj> | template<class vobj> | ||||||
| inline ComplexD innerProduct(const Lattice<vobj> &left,const Lattice<vobj> &right) { | inline ComplexD innerProduct(const Lattice<vobj> &left,const Lattice<vobj> &right) { | ||||||
|   GridBase *grid = left.Grid(); |   GridBase *grid = left.Grid(); | ||||||
|  |  | ||||||
| #ifdef GRID_SYCL |  | ||||||
|   uint64_t csum=0; |  | ||||||
|   if ( FlightRecorder::LoggingMode != FlightRecorder::LoggingModeNone) |  | ||||||
|   { |  | ||||||
|     // Hack |  | ||||||
|     // Fast integer xor checksum. Can also be used in comms now. |  | ||||||
|     autoView(l_v,left,AcceleratorRead); |  | ||||||
|     Integer words = left.Grid()->oSites()*sizeof(vobj)/sizeof(uint64_t); |  | ||||||
|     uint64_t *base= (uint64_t *)&l_v[0]; |  | ||||||
|     csum=svm_xor(base,words); |  | ||||||
|   } |  | ||||||
|   FlightRecorder::CsumLog(csum); |  | ||||||
| #endif |  | ||||||
|   ComplexD nrm = rankInnerProduct(left,right); |   ComplexD nrm = rankInnerProduct(left,right); | ||||||
|   RealD local = real(nrm); |  | ||||||
|   FlightRecorder::NormLog(real(nrm));  |  | ||||||
|   grid->GlobalSum(nrm); |   grid->GlobalSum(nrm); | ||||||
|   FlightRecorder::ReductionLog(local,real(nrm));  |  | ||||||
|   return nrm; |   return nrm; | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -356,8 +333,7 @@ axpby_norm_fast(Lattice<vobj> &z,sobj a,sobj b,const Lattice<vobj> &x,const Latt | |||||||
|   nrm = real(TensorRemove(sum(inner_tmp_v,sites))); |   nrm = real(TensorRemove(sum(inner_tmp_v,sites))); | ||||||
| #else | #else | ||||||
|   typedef decltype(innerProduct(x_v[0],y_v[0])) inner_t; |   typedef decltype(innerProduct(x_v[0],y_v[0])) inner_t; | ||||||
|   deviceVector<inner_t> inner_tmp; |   Vector<inner_t> inner_tmp(sites); | ||||||
|   inner_tmp.resize(sites); |  | ||||||
|   auto inner_tmp_v = &inner_tmp[0]; |   auto inner_tmp_v = &inner_tmp[0]; | ||||||
|  |  | ||||||
|   accelerator_for( ss, sites, nsimd,{ |   accelerator_for( ss, sites, nsimd,{ | ||||||
| @@ -472,10 +448,19 @@ template<class vobj> inline void sliceSum(const Lattice<vobj> &Data,std::vector< | |||||||
|   int e1=    grid->_slice_nblock[orthogdim]; |   int e1=    grid->_slice_nblock[orthogdim]; | ||||||
|   int e2=    grid->_slice_block [orthogdim]; |   int e2=    grid->_slice_block [orthogdim]; | ||||||
|   int stride=grid->_slice_stride[orthogdim]; |   int stride=grid->_slice_stride[orthogdim]; | ||||||
|   int ostride=grid->_ostride[orthogdim]; |  | ||||||
|    |   // sum over reduced dimension planes, breaking out orthog dir | ||||||
|   //Reduce Data down to lvSum |   // Parallel over orthog direction | ||||||
|   sliceSumReduction(Data,lvSum,rd, e1,e2,stride,ostride,Nsimd); |   autoView( Data_v, Data, CpuRead); | ||||||
|  |   thread_for( r,rd, { | ||||||
|  |     int so=r*grid->_ostride[orthogdim]; // base offset for start of plane  | ||||||
|  |     for(int n=0;n<e1;n++){ | ||||||
|  |       for(int b=0;b<e2;b++){ | ||||||
|  | 	int ss= so+n*stride+b; | ||||||
|  | 	lvSum[r]=lvSum[r]+Data_v[ss]; | ||||||
|  |       } | ||||||
|  |     } | ||||||
|  |   }); | ||||||
|  |  | ||||||
|   // Sum across simd lanes in the plane, breaking out orthog dir. |   // Sum across simd lanes in the plane, breaking out orthog dir. | ||||||
|   Coordinate icoor(Nd); |   Coordinate icoor(Nd); | ||||||
| @@ -519,7 +504,6 @@ sliceSum(const Lattice<vobj> &Data,int orthogdim) | |||||||
|   return result; |   return result; | ||||||
| } | } | ||||||
|  |  | ||||||
|  |  | ||||||
| template<class vobj> | template<class vobj> | ||||||
| static void sliceInnerProductVector( std::vector<ComplexD> & result, const Lattice<vobj> &lhs,const Lattice<vobj> &rhs,int orthogdim)  | static void sliceInnerProductVector( std::vector<ComplexD> & result, const Lattice<vobj> &lhs,const Lattice<vobj> &rhs,int orthogdim)  | ||||||
| { | { | ||||||
|   | |||||||
| @@ -9,18 +9,14 @@ inline typename vobj::scalar_objectD sumD_gpu_tensor(const vobj *lat, Integer os | |||||||
| { | { | ||||||
|   typedef typename vobj::scalar_object sobj; |   typedef typename vobj::scalar_object sobj; | ||||||
|   typedef typename vobj::scalar_objectD sobjD; |   typedef typename vobj::scalar_objectD sobjD; | ||||||
|   static Vector<sobj> mysum; |   sobj *mysum =(sobj *) malloc_shared(sizeof(sobj),*theGridAccelerator); | ||||||
|   mysum.resize(1); |  | ||||||
|   sobj *mysum_p = & mysum[0]; |  | ||||||
|   sobj identity; zeroit(identity); |   sobj identity; zeroit(identity); | ||||||
|   mysum[0] = identity; |  | ||||||
|   sobj ret ;  |   sobj ret ;  | ||||||
|  |  | ||||||
|   Integer nsimd= vobj::Nsimd(); |   Integer nsimd= vobj::Nsimd(); | ||||||
|  |    | ||||||
|   const cl::sycl::property_list PropList ({ cl::sycl::property::reduction::initialize_to_identity() }); |  | ||||||
|   theGridAccelerator->submit([&](cl::sycl::handler &cgh) { |   theGridAccelerator->submit([&](cl::sycl::handler &cgh) { | ||||||
|     auto Reduction = cl::sycl::reduction(mysum_p,identity,std::plus<>(),PropList); |      auto Reduction = cl::sycl::reduction(mysum,identity,std::plus<>()); | ||||||
|      cgh.parallel_for(cl::sycl::range<1>{osites}, |      cgh.parallel_for(cl::sycl::range<1>{osites}, | ||||||
| 		      Reduction, | 		      Reduction, | ||||||
| 		      [=] (cl::sycl::id<1> item, auto &sum) { | 		      [=] (cl::sycl::id<1> item, auto &sum) { | ||||||
| @@ -30,7 +26,7 @@ inline typename vobj::scalar_objectD sumD_gpu_tensor(const vobj *lat, Integer os | |||||||
|    }); |    }); | ||||||
|   theGridAccelerator->wait(); |   theGridAccelerator->wait(); | ||||||
|   ret = mysum[0]; |   ret = mysum[0]; | ||||||
|   //  free(mysum,*theGridAccelerator); |   free(mysum,*theGridAccelerator); | ||||||
|   sobjD dret; convertType(dret,ret); |   sobjD dret; convertType(dret,ret); | ||||||
|   return dret; |   return dret; | ||||||
| } | } | ||||||
| @@ -73,33 +69,28 @@ inline typename vobj::scalar_object sum_gpu_large(const vobj *lat, Integer osite | |||||||
|   return result; |   return result; | ||||||
| } | } | ||||||
|  |  | ||||||
|  |  | ||||||
| template<class Word> Word svm_xor(Word *vec,uint64_t L) |  | ||||||
| { |  | ||||||
|   Word xorResult; xorResult = 0; |  | ||||||
|   static Vector<Word> d_sum; |  | ||||||
|   d_sum.resize(1); |  | ||||||
|   Word *d_sum_p=&d_sum[0]; |  | ||||||
|   Word identity;  identity=0; |  | ||||||
|   d_sum[0] = identity; |  | ||||||
|   const cl::sycl::property_list PropList ({ cl::sycl::property::reduction::initialize_to_identity() }); |  | ||||||
|   theGridAccelerator->submit([&](cl::sycl::handler &cgh) { |  | ||||||
|     auto Reduction = cl::sycl::reduction(d_sum_p,identity,std::bit_xor<>(),PropList); |  | ||||||
|      cgh.parallel_for(cl::sycl::range<1>{L}, |  | ||||||
| 		      Reduction, |  | ||||||
| 		      [=] (cl::sycl::id<1> index, auto &sum) { |  | ||||||
| 	 sum^=vec[index]; |  | ||||||
|      }); |  | ||||||
|    }); |  | ||||||
|   theGridAccelerator->wait(); |  | ||||||
|   Word ret = d_sum[0]; |  | ||||||
|   //  free(d_sum,*theGridAccelerator); |  | ||||||
|   return ret; |  | ||||||
| } |  | ||||||
|  |  | ||||||
| NAMESPACE_END(Grid); | NAMESPACE_END(Grid); | ||||||
|  |  | ||||||
| /* | /* | ||||||
|  | template<class Double> Double svm_reduce(Double *vec,uint64_t L) | ||||||
|  | { | ||||||
|  |   Double sumResult; zeroit(sumResult); | ||||||
|  |   Double *d_sum =(Double *)cl::sycl::malloc_shared(sizeof(Double),*theGridAccelerator); | ||||||
|  |   Double identity;  zeroit(identity); | ||||||
|  |   theGridAccelerator->submit([&](cl::sycl::handler &cgh) { | ||||||
|  |      auto Reduction = cl::sycl::reduction(d_sum,identity,std::plus<>()); | ||||||
|  |      cgh.parallel_for(cl::sycl::range<1>{L}, | ||||||
|  | 		      Reduction, | ||||||
|  | 		      [=] (cl::sycl::id<1> index, auto &sum) { | ||||||
|  | 	 sum +=vec[index]; | ||||||
|  |      }); | ||||||
|  |    }); | ||||||
|  |   theGridAccelerator->wait(); | ||||||
|  |   Double ret = d_sum[0]; | ||||||
|  |   free(d_sum,*theGridAccelerator); | ||||||
|  |   std::cout << " svm_reduce finished "<<L<<" sites sum = " << ret <<std::endl; | ||||||
|  |   return ret; | ||||||
|  | } | ||||||
|  |  | ||||||
| template <class vobj> | template <class vobj> | ||||||
| inline typename vobj::scalar_objectD sumD_gpu_repack(const vobj *lat, Integer osites) | inline typename vobj::scalar_objectD sumD_gpu_repack(const vobj *lat, Integer osites) | ||||||
|   | |||||||
| @@ -365,14 +365,9 @@ public: | |||||||
|     _bernoulli.resize(_vol,std::discrete_distribution<int32_t>{1,1}); |     _bernoulli.resize(_vol,std::discrete_distribution<int32_t>{1,1}); | ||||||
|     _uid.resize(_vol,std::uniform_int_distribution<uint32_t>() ); |     _uid.resize(_vol,std::uniform_int_distribution<uint32_t>() ); | ||||||
|   } |   } | ||||||
|   template <class vobj,class distribution> inline void fill(Lattice<vobj> &l,std::vector<distribution> &dist) |  | ||||||
|   { |   template <class vobj,class distribution> inline void fill(Lattice<vobj> &l,std::vector<distribution> &dist){ | ||||||
|     if ( l.Grid()->_isCheckerBoarded ) { |  | ||||||
|       Lattice<vobj> tmp(_grid); |  | ||||||
|       fill(tmp,dist); |  | ||||||
|       pickCheckerboard(l.Checkerboard(),l,tmp); |  | ||||||
|       return; |  | ||||||
|     } |  | ||||||
|     typedef typename vobj::scalar_object scalar_object; |     typedef typename vobj::scalar_object scalar_object; | ||||||
|     typedef typename vobj::scalar_type scalar_type; |     typedef typename vobj::scalar_type scalar_type; | ||||||
|     typedef typename vobj::vector_type vector_type; |     typedef typename vobj::vector_type vector_type; | ||||||
| @@ -416,7 +411,7 @@ public: | |||||||
|       std::cout << GridLogMessage << "Seed SHA256: " << GridChecksum::sha256_string(seeds) << std::endl; |       std::cout << GridLogMessage << "Seed SHA256: " << GridChecksum::sha256_string(seeds) << std::endl; | ||||||
|       SeedFixedIntegers(seeds); |       SeedFixedIntegers(seeds); | ||||||
|     } |     } | ||||||
|   void SeedFixedIntegers(const std::vector<int> &seeds, int britney=0){ |   void SeedFixedIntegers(const std::vector<int> &seeds){ | ||||||
|  |  | ||||||
|     // Everyone generates the same seed_seq based on input seeds |     // Everyone generates the same seed_seq based on input seeds | ||||||
|     CartesianCommunicator::BroadcastWorld(0,(void *)&seeds[0],sizeof(int)*seeds.size()); |     CartesianCommunicator::BroadcastWorld(0,(void *)&seeds[0],sizeof(int)*seeds.size()); | ||||||
| @@ -433,9 +428,10 @@ public: | |||||||
|     // MT implementation does not implement fast discard even though |     // MT implementation does not implement fast discard even though | ||||||
|     // in principle this is possible |     // in principle this is possible | ||||||
|     //////////////////////////////////////////////// |     //////////////////////////////////////////////// | ||||||
|  | #if 1 | ||||||
|     thread_for( lidx, _grid->lSites(), { |     thread_for( lidx, _grid->lSites(), { | ||||||
|  |  | ||||||
| 	int64_t gidx; | 	int gidx; | ||||||
| 	int o_idx; | 	int o_idx; | ||||||
| 	int i_idx; | 	int i_idx; | ||||||
| 	int rank; | 	int rank; | ||||||
| @@ -453,12 +449,29 @@ public: | |||||||
| 	 | 	 | ||||||
| 	int l_idx=generator_idx(o_idx,i_idx); | 	int l_idx=generator_idx(o_idx,i_idx); | ||||||
| 	_generators[l_idx] = master_engine; | 	_generators[l_idx] = master_engine; | ||||||
| 	if ( britney ) {  | 	Skip(_generators[l_idx],gidx); // Skip to next RNG sequence | ||||||
| 	  Skip(_generators[l_idx],l_idx); // Skip to next RNG sequence |     }); | ||||||
| 	} else { 	 | #else | ||||||
|  |     // Everybody loops over global volume. | ||||||
|  |     thread_for( gidx, _grid->_gsites, { | ||||||
|  |  | ||||||
|  | 	// Where is it? | ||||||
|  | 	int rank; | ||||||
|  | 	int o_idx; | ||||||
|  | 	int i_idx; | ||||||
|  |  | ||||||
|  | 	Coordinate gcoor; | ||||||
|  | 	_grid->GlobalIndexToGlobalCoor(gidx,gcoor); | ||||||
|  | 	_grid->GlobalCoorToRankIndex(rank,o_idx,i_idx,gcoor); | ||||||
|  | 	 | ||||||
|  | 	// If this is one of mine we take it | ||||||
|  | 	if( rank == _grid->ThisRank() ){ | ||||||
|  | 	  int l_idx=generator_idx(o_idx,i_idx); | ||||||
|  | 	  _generators[l_idx] = master_engine; | ||||||
| 	  Skip(_generators[l_idx],gidx); // Skip to next RNG sequence | 	  Skip(_generators[l_idx],gidx); // Skip to next RNG sequence | ||||||
| 	} | 	} | ||||||
|     }); |     }); | ||||||
|  | #endif | ||||||
| #else  | #else  | ||||||
|     //////////////////////////////////////////////////////////////// |     //////////////////////////////////////////////////////////////// | ||||||
|     // Machine and thread decomposition dependent seeding is efficient |     // Machine and thread decomposition dependent seeding is efficient | ||||||
|   | |||||||
| @@ -1,224 +0,0 @@ | |||||||
| #pragma once |  | ||||||
|  |  | ||||||
| #if defined(GRID_CUDA) |  | ||||||
|  |  | ||||||
| #include <cub/cub.cuh> |  | ||||||
| #define gpucub cub |  | ||||||
| #define gpuError_t cudaError_t |  | ||||||
| #define gpuSuccess cudaSuccess |  | ||||||
|  |  | ||||||
| #elif defined(GRID_HIP) |  | ||||||
|  |  | ||||||
| #include <hipcub/hipcub.hpp> |  | ||||||
| #define gpucub hipcub |  | ||||||
| #define gpuError_t hipError_t |  | ||||||
| #define gpuSuccess hipSuccess |  | ||||||
|  |  | ||||||
| #endif |  | ||||||
|  |  | ||||||
|  |  | ||||||
| NAMESPACE_BEGIN(Grid); |  | ||||||
|  |  | ||||||
|  |  | ||||||
| #if defined(GRID_CUDA) || defined(GRID_HIP) |  | ||||||
| template<class vobj> inline void sliceSumReduction_cub_small(const vobj *Data, Vector<vobj> &lvSum, const int rd, const int e1, const int e2, const int stride, const int ostride, const int Nsimd) { |  | ||||||
|   size_t subvol_size = e1*e2; |  | ||||||
|   commVector<vobj> reduction_buffer(rd*subvol_size); |  | ||||||
|   auto rb_p = &reduction_buffer[0]; |  | ||||||
|   vobj zero_init; |  | ||||||
|   zeroit(zero_init); |  | ||||||
|  |  | ||||||
|    |  | ||||||
|   void *temp_storage_array = NULL; |  | ||||||
|   size_t temp_storage_bytes = 0; |  | ||||||
|   vobj *d_out; |  | ||||||
|   int* d_offsets; |  | ||||||
|  |  | ||||||
|   std::vector<int> offsets(rd+1,0); |  | ||||||
|  |  | ||||||
|   for (int i = 0; i < offsets.size(); i++) { |  | ||||||
|     offsets[i] = i*subvol_size; |  | ||||||
|   } |  | ||||||
|    |  | ||||||
|   //Allocate memory for output and offset arrays on device |  | ||||||
|   d_out = static_cast<vobj*>(acceleratorAllocDevice(rd*sizeof(vobj))); |  | ||||||
|    |  | ||||||
|   d_offsets = static_cast<int*>(acceleratorAllocDevice((rd+1)*sizeof(int))); |  | ||||||
|    |  | ||||||
|   //copy offsets to device |  | ||||||
|   acceleratorCopyToDeviceAsync(&offsets[0],d_offsets,sizeof(int)*(rd+1),computeStream); |  | ||||||
|    |  | ||||||
|    |  | ||||||
|   gpuError_t gpuErr = gpucub::DeviceSegmentedReduce::Reduce(temp_storage_array, temp_storage_bytes, rb_p,d_out, rd, d_offsets, d_offsets+1, ::gpucub::Sum(), zero_init, computeStream); |  | ||||||
|   if (gpuErr!=gpuSuccess) { |  | ||||||
|     std::cout << GridLogError << "Lattice_slicesum_gpu.h: Encountered error during gpucub::DeviceSegmentedReduce::Reduce (setup)! Error: " << gpuErr <<std::endl; |  | ||||||
|     exit(EXIT_FAILURE); |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|   //allocate memory for temp_storage_array   |  | ||||||
|   temp_storage_array = acceleratorAllocDevice(temp_storage_bytes); |  | ||||||
|    |  | ||||||
|   //prepare buffer for reduction |  | ||||||
|   //use non-blocking accelerator_for to avoid syncs (ok because we submit to same computeStream) |  | ||||||
|   //use 2d accelerator_for to avoid launch latencies found when serially looping over rd  |  | ||||||
|   accelerator_for2dNB( s,subvol_size, r,rd, Nsimd,{  |  | ||||||
|    |  | ||||||
|     int n = s / e2; |  | ||||||
|     int b = s % e2; |  | ||||||
|     int so=r*ostride; // base offset for start of plane  |  | ||||||
|     int ss= so+n*stride+b; |  | ||||||
|  |  | ||||||
|     coalescedWrite(rb_p[r*subvol_size+s], coalescedRead(Data[ss])); |  | ||||||
|  |  | ||||||
|   }); |  | ||||||
|    |  | ||||||
|   //issue segmented reductions in computeStream |  | ||||||
|   gpuErr = gpucub::DeviceSegmentedReduce::Reduce(temp_storage_array, temp_storage_bytes, rb_p, d_out, rd, d_offsets, d_offsets+1,::gpucub::Sum(), zero_init, computeStream); |  | ||||||
|   if (gpuErr!=gpuSuccess) { |  | ||||||
|     std::cout << GridLogError << "Lattice_slicesum_gpu.h: Encountered error during gpucub::DeviceSegmentedReduce::Reduce! Error: " << gpuErr <<std::endl; |  | ||||||
|     exit(EXIT_FAILURE); |  | ||||||
|   } |  | ||||||
|    |  | ||||||
|   acceleratorCopyFromDeviceAsync(d_out,&lvSum[0],rd*sizeof(vobj),computeStream); |  | ||||||
|    |  | ||||||
|   //sync after copy |  | ||||||
|   accelerator_barrier(); |  | ||||||
|   |  | ||||||
|   acceleratorFreeDevice(temp_storage_array); |  | ||||||
|   acceleratorFreeDevice(d_out); |  | ||||||
|   acceleratorFreeDevice(d_offsets); |  | ||||||
|    |  | ||||||
|  |  | ||||||
| } |  | ||||||
| #endif  |  | ||||||
|  |  | ||||||
|  |  | ||||||
| #if defined(GRID_SYCL) |  | ||||||
| template<class vobj> inline void sliceSumReduction_sycl_small(const vobj *Data, Vector <vobj> &lvSum, const int  &rd, const int &e1, const int &e2, const int &stride, const int &ostride, const int &Nsimd) |  | ||||||
| { |  | ||||||
|   size_t subvol_size = e1*e2; |  | ||||||
|  |  | ||||||
|   vobj *mysum = (vobj *) malloc_shared(rd*sizeof(vobj),*theGridAccelerator); |  | ||||||
|   vobj vobj_zero; |  | ||||||
|   zeroit(vobj_zero); |  | ||||||
|   for (int r = 0; r<rd; r++) {  |  | ||||||
|     mysum[r] = vobj_zero;  |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|   commVector<vobj> reduction_buffer(rd*subvol_size);     |  | ||||||
|  |  | ||||||
|   auto rb_p = &reduction_buffer[0]; |  | ||||||
|  |  | ||||||
|   // autoView(Data_v, Data, AcceleratorRead); |  | ||||||
|  |  | ||||||
|   //prepare reduction buffer  |  | ||||||
|   accelerator_for2d( s,subvol_size, r,rd, (size_t)Nsimd,{  |  | ||||||
|    |  | ||||||
|       int n = s / e2; |  | ||||||
|       int b = s % e2; |  | ||||||
|       int so=r*ostride; // base offset for start of plane  |  | ||||||
|       int ss= so+n*stride+b; |  | ||||||
|  |  | ||||||
|       coalescedWrite(rb_p[r*subvol_size+s], coalescedRead(Data[ss])); |  | ||||||
|  |  | ||||||
|   }); |  | ||||||
|  |  | ||||||
|   for (int r = 0; r < rd; r++) { |  | ||||||
|       theGridAccelerator->submit([&](cl::sycl::handler &cgh) { |  | ||||||
|           auto Reduction = cl::sycl::reduction(&mysum[r],std::plus<>()); |  | ||||||
|           cgh.parallel_for(cl::sycl::range<1>{subvol_size}, |  | ||||||
|           Reduction, |  | ||||||
|           [=](cl::sycl::id<1> item, auto &sum) { |  | ||||||
|               auto s = item[0]; |  | ||||||
|               sum += rb_p[r*subvol_size+s]; |  | ||||||
|           }); |  | ||||||
|       }); |  | ||||||
|        |  | ||||||
|       |  | ||||||
|   } |  | ||||||
|   theGridAccelerator->wait(); |  | ||||||
|   for (int r = 0; r < rd; r++) { |  | ||||||
|     lvSum[r] = mysum[r]; |  | ||||||
|   } |  | ||||||
|   free(mysum,*theGridAccelerator); |  | ||||||
| } |  | ||||||
| #endif |  | ||||||
|  |  | ||||||
| template<class vobj> inline void sliceSumReduction_large(const vobj *Data, Vector<vobj> &lvSum, const int rd, const int e1, const int e2, const int stride, const int ostride, const int Nsimd) { |  | ||||||
|   typedef typename vobj::vector_type vector; |  | ||||||
|   const int words = sizeof(vobj)/sizeof(vector); |  | ||||||
|   const int osites = rd*e1*e2; |  | ||||||
|   commVector<vector>buffer(osites); |  | ||||||
|   vector *dat = (vector *)Data; |  | ||||||
|   vector *buf = &buffer[0]; |  | ||||||
|   Vector<vector> lvSum_small(rd); |  | ||||||
|   vector *lvSum_ptr = (vector *)&lvSum[0]; |  | ||||||
|  |  | ||||||
|   for (int w = 0; w < words; w++) { |  | ||||||
|     accelerator_for(ss,osites,1,{ |  | ||||||
| 	    buf[ss] = dat[ss*words+w]; |  | ||||||
|     }); |  | ||||||
|  |  | ||||||
|     #if defined(GRID_CUDA) || defined(GRID_HIP) |  | ||||||
|       sliceSumReduction_cub_small(buf,lvSum_small,rd,e1,e2,stride, ostride,Nsimd); |  | ||||||
|     #elif defined(GRID_SYCL) |  | ||||||
|       sliceSumReduction_sycl_small(buf,lvSum_small,rd,e1,e2,stride, ostride,Nsimd); |  | ||||||
|     #endif |  | ||||||
|  |  | ||||||
|     for (int r = 0; r < rd; r++) { |  | ||||||
|       lvSum_ptr[w+words*r]=lvSum_small[r]; |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|    |  | ||||||
| } |  | ||||||
|  |  | ||||||
| template<class vobj> inline void sliceSumReduction_gpu(const Lattice<vobj> &Data, Vector<vobj> &lvSum, const int rd, const int e1, const int e2, const int stride, const int ostride, const int Nsimd) |  | ||||||
| { |  | ||||||
|   autoView(Data_v, Data, AcceleratorRead); //reduction libraries cannot deal with large vobjs so we split into small/large case. |  | ||||||
|     if constexpr (sizeof(vobj) <= 256) {  |  | ||||||
|  |  | ||||||
|       #if defined(GRID_CUDA) || defined(GRID_HIP) |  | ||||||
|         sliceSumReduction_cub_small(&Data_v[0], lvSum, rd, e1, e2, stride, ostride, Nsimd); |  | ||||||
|       #elif defined (GRID_SYCL) |  | ||||||
|         sliceSumReduction_sycl_small(&Data_v[0], lvSum, rd, e1, e2, stride, ostride, Nsimd); |  | ||||||
|       #endif |  | ||||||
|  |  | ||||||
|     } |  | ||||||
|     else { |  | ||||||
|       sliceSumReduction_large(&Data_v[0], lvSum, rd, e1, e2, stride, ostride, Nsimd); |  | ||||||
|     } |  | ||||||
| } |  | ||||||
|  |  | ||||||
|  |  | ||||||
| template<class vobj> inline void sliceSumReduction_cpu(const Lattice<vobj> &Data, Vector<vobj> &lvSum, const int &rd, const int &e1, const int &e2, const int &stride, const int &ostride, const int &Nsimd) |  | ||||||
| { |  | ||||||
|   // sum over reduced dimension planes, breaking out orthog dir |  | ||||||
|   // Parallel over orthog direction |  | ||||||
|   autoView( Data_v, Data, CpuRead); |  | ||||||
|   thread_for( r,rd, { |  | ||||||
|     int so=r*ostride; // base offset for start of plane  |  | ||||||
|     for(int n=0;n<e1;n++){ |  | ||||||
|       for(int b=0;b<e2;b++){ |  | ||||||
|         int ss= so+n*stride+b; |  | ||||||
|         lvSum[r]=lvSum[r]+Data_v[ss]; |  | ||||||
|       } |  | ||||||
|     } |  | ||||||
|   }); |  | ||||||
| } |  | ||||||
|  |  | ||||||
| template<class vobj> inline void sliceSumReduction(const Lattice<vobj> &Data, Vector<vobj> &lvSum, const int &rd, const int &e1, const int &e2, const int &stride, const int &ostride, const int &Nsimd)  |  | ||||||
| { |  | ||||||
|   #if defined(GRID_CUDA) || defined(GRID_HIP) || defined(GRID_SYCL) |  | ||||||
|    |  | ||||||
|   sliceSumReduction_gpu(Data, lvSum, rd, e1, e2, stride, ostride, Nsimd); |  | ||||||
|    |  | ||||||
|   #else |  | ||||||
|   sliceSumReduction_cpu(Data, lvSum, rd, e1, e2, stride, ostride, Nsimd); |  | ||||||
|  |  | ||||||
|   #endif |  | ||||||
| } |  | ||||||
|  |  | ||||||
|  |  | ||||||
| NAMESPACE_END(Grid); |  | ||||||
| @@ -42,21 +42,50 @@ inline void subdivides(GridBase *coarse,GridBase *fine) | |||||||
|     assert((fine->_rdimensions[d] / coarse->_rdimensions[d])* coarse->_rdimensions[d]==fine->_rdimensions[d]);  |     assert((fine->_rdimensions[d] / coarse->_rdimensions[d])* coarse->_rdimensions[d]==fine->_rdimensions[d]);  | ||||||
|   } |   } | ||||||
| } | } | ||||||
|  |  | ||||||
|   |   | ||||||
| //////////////////////////////////////////////////////////////////////////////////////////// | //////////////////////////////////////////////////////////////////////////////////////////// | ||||||
| // remove and insert a half checkerboard | // remove and insert a half checkerboard | ||||||
| //////////////////////////////////////////////////////////////////////////////////////////// | //////////////////////////////////////////////////////////////////////////////////////////// | ||||||
|  |  | ||||||
| template<class vobj> inline void pickCheckerboard(int cb,Lattice<vobj> &half,const Lattice<vobj> &full) | template<class vobj> inline void pickCheckerboard(int cb,Lattice<vobj> &half,const Lattice<vobj> &full) | ||||||
| { | { | ||||||
|   acceleratorPickCheckerboard(cb,half,full); |   half.Checkerboard() = cb; | ||||||
|  |  | ||||||
|  |   autoView( half_v, half, CpuWrite); | ||||||
|  |   autoView( full_v, full, CpuRead); | ||||||
|  |   thread_for(ss, full.Grid()->oSites(),{ | ||||||
|  |     int cbos; | ||||||
|  |     Coordinate coor; | ||||||
|  |     full.Grid()->oCoorFromOindex(coor,ss); | ||||||
|  |     cbos=half.Grid()->CheckerBoard(coor); | ||||||
|  |  | ||||||
|  |     if (cbos==cb) { | ||||||
|  |       int ssh=half.Grid()->oIndex(coor); | ||||||
|  |       half_v[ssh] = full_v[ss]; | ||||||
|  |     } | ||||||
|  |   }); | ||||||
| } | } | ||||||
| template<class vobj> inline void setCheckerboard(Lattice<vobj> &full,const Lattice<vobj> &half) | template<class vobj> inline void setCheckerboard(Lattice<vobj> &full,const Lattice<vobj> &half) | ||||||
| { | { | ||||||
|   acceleratorSetCheckerboard(full,half); |   int cb = half.Checkerboard(); | ||||||
|  |   autoView( half_v , half, CpuRead); | ||||||
|  |   autoView( full_v , full, CpuWrite); | ||||||
|  |   thread_for(ss,full.Grid()->oSites(),{ | ||||||
|  |  | ||||||
|  |     Coordinate coor; | ||||||
|  |     int cbos; | ||||||
|  |  | ||||||
|  |     full.Grid()->oCoorFromOindex(coor,ss); | ||||||
|  |     cbos=half.Grid()->CheckerBoard(coor); | ||||||
|  |        | ||||||
|  |     if (cbos==cb) { | ||||||
|  |       int ssh=half.Grid()->oIndex(coor); | ||||||
|  |       full_v[ss]=half_v[ssh]; | ||||||
|  |     } | ||||||
|  |   }); | ||||||
| } | } | ||||||
|  |  | ||||||
| template<class vobj> inline void acceleratorPickCheckerboard(int cb,Lattice<vobj> &half,const Lattice<vobj> &full, int dummy=0) | template<class vobj> inline void acceleratorPickCheckerboard(int cb,Lattice<vobj> &half,const Lattice<vobj> &full, int checker_dim_half=0) | ||||||
| { | { | ||||||
|   half.Checkerboard() = cb; |   half.Checkerboard() = cb; | ||||||
|   autoView(half_v, half, AcceleratorWrite); |   autoView(half_v, half, AcceleratorWrite); | ||||||
| @@ -66,7 +95,6 @@ template<class vobj> inline void acceleratorPickCheckerboard(int cb,Lattice<vobj | |||||||
|   unsigned long ndim_half          = half.Grid()->_ndimension; |   unsigned long ndim_half          = half.Grid()->_ndimension; | ||||||
|   Coordinate checker_dim_mask_half = half.Grid()->_checker_dim_mask; |   Coordinate checker_dim_mask_half = half.Grid()->_checker_dim_mask; | ||||||
|   Coordinate ostride_half          = half.Grid()->_ostride; |   Coordinate ostride_half          = half.Grid()->_ostride; | ||||||
|   int checker_dim_half             = half.Grid()->CheckerDim(); |  | ||||||
|   accelerator_for(ss, full.Grid()->oSites(),full.Grid()->Nsimd(),{ |   accelerator_for(ss, full.Grid()->oSites(),full.Grid()->Nsimd(),{ | ||||||
|      |      | ||||||
|     Coordinate coor; |     Coordinate coor; | ||||||
| @@ -91,7 +119,7 @@ template<class vobj> inline void acceleratorPickCheckerboard(int cb,Lattice<vobj | |||||||
|     } |     } | ||||||
|   }); |   }); | ||||||
| } | } | ||||||
| template<class vobj> inline void acceleratorSetCheckerboard(Lattice<vobj> &full,const Lattice<vobj> &half, int dummy=0) | template<class vobj> inline void acceleratorSetCheckerboard(Lattice<vobj> &full,const Lattice<vobj> &half, int checker_dim_half=0) | ||||||
| { | { | ||||||
|   int cb = half.Checkerboard(); |   int cb = half.Checkerboard(); | ||||||
|   autoView(half_v , half, AcceleratorRead); |   autoView(half_v , half, AcceleratorRead); | ||||||
| @@ -101,7 +129,6 @@ template<class vobj> inline void acceleratorSetCheckerboard(Lattice<vobj> &full, | |||||||
|   unsigned long ndim_half          = half.Grid()->_ndimension; |   unsigned long ndim_half          = half.Grid()->_ndimension; | ||||||
|   Coordinate checker_dim_mask_half = half.Grid()->_checker_dim_mask; |   Coordinate checker_dim_mask_half = half.Grid()->_checker_dim_mask; | ||||||
|   Coordinate ostride_half          = half.Grid()->_ostride; |   Coordinate ostride_half          = half.Grid()->_ostride; | ||||||
|   int checker_dim_half             = half.Grid()->CheckerDim(); |  | ||||||
|   accelerator_for(ss,full.Grid()->oSites(),full.Grid()->Nsimd(),{ |   accelerator_for(ss,full.Grid()->oSites(),full.Grid()->Nsimd(),{ | ||||||
|  |  | ||||||
|     Coordinate coor; |     Coordinate coor; | ||||||
| @@ -249,33 +276,18 @@ inline void blockProject(Lattice<iVector<CComplex,nbasis > > &coarseData, | |||||||
|  |  | ||||||
|   autoView( coarseData_ , coarseData, AcceleratorWrite); |   autoView( coarseData_ , coarseData, AcceleratorWrite); | ||||||
|   autoView( ip_         , ip,         AcceleratorWrite); |   autoView( ip_         , ip,         AcceleratorWrite); | ||||||
|   RealD t_IP=0; |  | ||||||
|   RealD t_co=0; |  | ||||||
|   RealD t_za=0; |  | ||||||
|   for(int v=0;v<nbasis;v++) { |   for(int v=0;v<nbasis;v++) { | ||||||
|     t_IP-=usecond(); |  | ||||||
|     blockInnerProductD(ip,Basis[v],fineDataRed); // ip = <basis|fine> |     blockInnerProductD(ip,Basis[v],fineDataRed); // ip = <basis|fine> | ||||||
|     t_IP+=usecond(); |  | ||||||
|     t_co-=usecond(); |  | ||||||
|     accelerator_for( sc, coarse->oSites(), vobj::Nsimd(), { |     accelerator_for( sc, coarse->oSites(), vobj::Nsimd(), { | ||||||
| 	convertType(coarseData_[sc](v),ip_[sc]); | 	convertType(coarseData_[sc](v),ip_[sc]); | ||||||
|     }); |     }); | ||||||
|     t_co+=usecond(); |  | ||||||
|  |  | ||||||
|     // improve numerical stability of projection |     // improve numerical stability of projection | ||||||
|     // |fine> = |fine> - <basis|fine> |basis> |     // |fine> = |fine> - <basis|fine> |basis> | ||||||
|     ip=-ip; |     ip=-ip; | ||||||
|     t_za-=usecond(); |  | ||||||
|     blockZAXPY(fineDataRed,ip,Basis[v],fineDataRed);  |     blockZAXPY(fineDataRed,ip,Basis[v],fineDataRed);  | ||||||
|     t_za+=usecond(); |  | ||||||
|   } |   } | ||||||
|   //  std::cout << GridLogPerformance << " blockProject : blockInnerProduct :  "<<t_IP<<" us"<<std::endl; |  | ||||||
|   //  std::cout << GridLogPerformance << " blockProject : conv              :  "<<t_co<<" us"<<std::endl; |  | ||||||
|   //  std::cout << GridLogPerformance << " blockProject : blockZaxpy        :  "<<t_za<<" us"<<std::endl; |  | ||||||
| } | } | ||||||
| // This only minimises data motion from CPU to GPU |  | ||||||
| // there is chance of better implementation that does a vxk loop of inner products to data share |  | ||||||
| // at the GPU thread level |  | ||||||
| template<class vobj,class CComplex,int nbasis,class VLattice> | template<class vobj,class CComplex,int nbasis,class VLattice> | ||||||
| inline void batchBlockProject(std::vector<Lattice<iVector<CComplex,nbasis>>> &coarseData, | inline void batchBlockProject(std::vector<Lattice<iVector<CComplex,nbasis>>> &coarseData, | ||||||
|                                const std::vector<Lattice<vobj>> &fineData, |                                const std::vector<Lattice<vobj>> &fineData, | ||||||
| @@ -381,15 +393,8 @@ template<class vobj,class CComplex> | |||||||
|   Lattice<dotp> coarse_inner(coarse); |   Lattice<dotp> coarse_inner(coarse); | ||||||
|  |  | ||||||
|   // Precision promotion |   // Precision promotion | ||||||
|   RealD t; |  | ||||||
|   t=-usecond(); |  | ||||||
|   fine_inner = localInnerProductD<vobj>(fineX,fineY); |   fine_inner = localInnerProductD<vobj>(fineX,fineY); | ||||||
|   //  t+=usecond(); std::cout << GridLogPerformance << " blockInnerProduct : localInnerProductD "<<t<<" us"<<std::endl; |  | ||||||
|    |  | ||||||
|   t=-usecond(); |  | ||||||
|   blockSum(coarse_inner,fine_inner); |   blockSum(coarse_inner,fine_inner); | ||||||
|   //  t+=usecond(); std::cout << GridLogPerformance << " blockInnerProduct : blockSum "<<t<<" us"<<std::endl; |  | ||||||
|   t=-usecond(); |  | ||||||
|   { |   { | ||||||
|     autoView( CoarseInner_  , CoarseInner,AcceleratorWrite); |     autoView( CoarseInner_  , CoarseInner,AcceleratorWrite); | ||||||
|     autoView( coarse_inner_ , coarse_inner,AcceleratorRead); |     autoView( coarse_inner_ , coarse_inner,AcceleratorRead); | ||||||
| @@ -397,7 +402,6 @@ template<class vobj,class CComplex> | |||||||
|       convertType(CoarseInner_[ss], TensorRemove(coarse_inner_[ss])); |       convertType(CoarseInner_[ss], TensorRemove(coarse_inner_[ss])); | ||||||
|     }); |     }); | ||||||
|   } |   } | ||||||
|   //  t+=usecond(); std::cout << GridLogPerformance << " blockInnerProduct : convertType "<<t<<" us"<<std::endl; |  | ||||||
|   |   | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -440,9 +444,6 @@ inline void blockNormalise(Lattice<CComplex> &ip,Lattice<vobj> &fineX) | |||||||
| template<class vobj> | template<class vobj> | ||||||
| inline void blockSum(Lattice<vobj> &coarseData,const Lattice<vobj> &fineData)  | inline void blockSum(Lattice<vobj> &coarseData,const Lattice<vobj> &fineData)  | ||||||
| { | { | ||||||
|   const int maxsubsec=256; |  | ||||||
|   typedef iVector<vobj,maxsubsec> vSubsec; |  | ||||||
|  |  | ||||||
|   GridBase * fine  = fineData.Grid(); |   GridBase * fine  = fineData.Grid(); | ||||||
|   GridBase * coarse= coarseData.Grid(); |   GridBase * coarse= coarseData.Grid(); | ||||||
|  |  | ||||||
| @@ -462,62 +463,37 @@ inline void blockSum(Lattice<vobj> &coarseData,const Lattice<vobj> &fineData) | |||||||
|   autoView( coarseData_ , coarseData, AcceleratorWrite); |   autoView( coarseData_ , coarseData, AcceleratorWrite); | ||||||
|   autoView( fineData_   , fineData, AcceleratorRead); |   autoView( fineData_   , fineData, AcceleratorRead); | ||||||
|  |  | ||||||
|   auto coarseData_p  = &coarseData_[0]; |   auto coarseData_p = &coarseData_[0]; | ||||||
|   auto fineData_p    = &fineData_[0]; |   auto fineData_p = &fineData_[0]; | ||||||
|    |    | ||||||
|   Coordinate fine_rdimensions = fine->_rdimensions; |   Coordinate fine_rdimensions = fine->_rdimensions; | ||||||
|   Coordinate coarse_rdimensions = coarse->_rdimensions; |   Coordinate coarse_rdimensions = coarse->_rdimensions; | ||||||
|  |  | ||||||
|   vobj zz = Zero(); |   vobj zz = Zero(); | ||||||
|  |  | ||||||
|   // Somewhat lazy calculation |  | ||||||
|   // Find the biggest power of two subsection divisor less than or equal to maxsubsec |  | ||||||
|   int subsec=maxsubsec; |  | ||||||
|   int subvol; |  | ||||||
|   subvol=blockVol/subsec; |  | ||||||
|   while(subvol*subsec!=blockVol){ |  | ||||||
|     subsec = subsec/2; |  | ||||||
|     subvol=blockVol/subsec; |  | ||||||
|   }; |  | ||||||
|  |  | ||||||
|   Lattice<vSubsec> coarseTmp(coarse); |  | ||||||
|   autoView( coarseTmp_, coarseTmp, AcceleratorWriteDiscard); |  | ||||||
|   auto coarseTmp_p= &coarseTmp_[0]; |  | ||||||
|    |    | ||||||
|   // Sum within subsecs in a first kernel |   accelerator_for(sc,coarse->oSites(),1,{ | ||||||
|   accelerator_for(sce,subsec*coarse->oSites(),vobj::Nsimd(),{ |  | ||||||
|  |  | ||||||
|       int sc=sce/subsec; |  | ||||||
|       int e=sce%subsec; |  | ||||||
|        |  | ||||||
|       // One thread per sub block |       // One thread per sub block | ||||||
|       Coordinate coor_c(_ndimension); |       Coordinate coor_c(_ndimension); | ||||||
|       Lexicographic::CoorFromIndex(coor_c,sc,coarse_rdimensions);  // Block coordinate |       Lexicographic::CoorFromIndex(coor_c,sc,coarse_rdimensions);  // Block coordinate | ||||||
|  |  | ||||||
|       auto cd = coalescedRead(zz); |       vobj cd = zz; | ||||||
|       for(int sb=e*subvol;sb<MIN((e+1)*subvol,blockVol);sb++){ |        | ||||||
|  |       for(int sb=0;sb<blockVol;sb++){ | ||||||
|  |  | ||||||
| 	int sf; | 	int sf; | ||||||
| 	Coordinate coor_b(_ndimension); | 	Coordinate coor_b(_ndimension); | ||||||
| 	Coordinate coor_f(_ndimension); | 	Coordinate coor_f(_ndimension); | ||||||
| 	Lexicographic::CoorFromIndex(coor_b,sb,block_r);               // Block sub coordinate | 	Lexicographic::CoorFromIndex(coor_b,sb,block_r);               // Block sub coordinate | ||||||
| 	for(int d=0;d<_ndimension;d++) coor_f[d]=coor_c[d]*block_r[d] + coor_b[d]; | 	for(int d=0;d<_ndimension;d++) coor_f[d]=coor_c[d]*block_r[d] + coor_b[d]; | ||||||
| 	Lexicographic::IndexFromCoor(coor_f,sf,fine_rdimensions); | 	Lexicographic::IndexFromCoor(coor_f,sf,fine_rdimensions); | ||||||
| 	 |  | ||||||
| 	cd=cd+coalescedRead(fineData_p[sf]); | 	cd=cd+fineData_p[sf]; | ||||||
|       } |       } | ||||||
|  |  | ||||||
|       coalescedWrite(coarseTmp_[sc](e),cd); |       coarseData_p[sc] = cd; | ||||||
|  |  | ||||||
|     }); |     }); | ||||||
|    // Sum across subsecs in a second kernel |  | ||||||
|    accelerator_for(sc,coarse->oSites(),vobj::Nsimd(),{ |  | ||||||
|       auto cd = coalescedRead(coarseTmp_p[sc](0)); |  | ||||||
|       for(int e=1;e<subsec;e++){ |  | ||||||
| 	cd=cd+coalescedRead(coarseTmp_p[sc](e)); |  | ||||||
|       } |  | ||||||
|       coalescedWrite(coarseData_p[sc],cd); |  | ||||||
|    }); |  | ||||||
|  |  | ||||||
|   return; |   return; | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -574,7 +550,7 @@ inline void blockOrthogonalise(Lattice<CComplex> &ip,std::vector<Lattice<vobj> > | |||||||
|   blockOrthonormalize(ip,Basis); |   blockOrthonormalize(ip,Basis); | ||||||
| } | } | ||||||
|  |  | ||||||
| #ifdef GRID_ACCELERATED | #if 0 | ||||||
| // TODO: CPU optimized version here | // TODO: CPU optimized version here | ||||||
| template<class vobj,class CComplex,int nbasis> | template<class vobj,class CComplex,int nbasis> | ||||||
| inline void blockPromote(const Lattice<iVector<CComplex,nbasis > > &coarseData, | inline void blockPromote(const Lattice<iVector<CComplex,nbasis > > &coarseData, | ||||||
| @@ -600,37 +576,26 @@ inline void blockPromote(const Lattice<iVector<CComplex,nbasis > > &coarseData, | |||||||
|   autoView( fineData_   , fineData, AcceleratorWrite); |   autoView( fineData_   , fineData, AcceleratorWrite); | ||||||
|   autoView( coarseData_ , coarseData, AcceleratorRead); |   autoView( coarseData_ , coarseData, AcceleratorRead); | ||||||
|  |  | ||||||
|   typedef LatticeView<vobj> Vview; |  | ||||||
|   std::vector<Vview> AcceleratorVecViewContainer_h;  |  | ||||||
|   for(int v=0;v<nbasis;v++) { |  | ||||||
|     AcceleratorVecViewContainer_h.push_back(Basis[v].View(AcceleratorRead)); |  | ||||||
|   } |  | ||||||
|   static deviceVector<Vview> AcceleratorVecViewContainer; AcceleratorVecViewContainer.resize(nbasis);  |  | ||||||
|   acceleratorCopyToDevice(&AcceleratorVecViewContainer_h[0],&AcceleratorVecViewContainer[0],nbasis *sizeof(Vview)); |  | ||||||
|   auto Basis_p = &AcceleratorVecViewContainer[0]; |  | ||||||
|   // Loop with a cache friendly loop ordering |   // Loop with a cache friendly loop ordering | ||||||
|   Coordinate frdimensions=fine->_rdimensions; |   accelerator_for(sf,fine->oSites(),1,{ | ||||||
|   Coordinate crdimensions=coarse->_rdimensions; |  | ||||||
|   accelerator_for(sf,fine->oSites(),vobj::Nsimd(),{ |  | ||||||
|     int sc; |     int sc; | ||||||
|     Coordinate coor_c(_ndimension); |     Coordinate coor_c(_ndimension); | ||||||
|     Coordinate coor_f(_ndimension); |     Coordinate coor_f(_ndimension); | ||||||
|  |  | ||||||
|     Lexicographic::CoorFromIndex(coor_f,sf,frdimensions); |     Lexicographic::CoorFromIndex(coor_f,sf,fine->_rdimensions); | ||||||
|     for(int d=0;d<_ndimension;d++) coor_c[d]=coor_f[d]/block_r[d]; |     for(int d=0;d<_ndimension;d++) coor_c[d]=coor_f[d]/block_r[d]; | ||||||
|     Lexicographic::IndexFromCoor(coor_c,sc,crdimensions); |     Lexicographic::IndexFromCoor(coor_c,sc,coarse->_rdimensions); | ||||||
|  |  | ||||||
|     auto sum= coarseData_(sc)(0) *Basis_p[0](sf); |     for(int i=0;i<nbasis;i++) { | ||||||
|     for(int i=1;i<nbasis;i++) sum = sum + coarseData_(sc)(i)*Basis_p[i](sf); |       /*      auto basis_ = Basis[i],  );*/ | ||||||
|     coalescedWrite(fineData_[sf],sum); |       if(i==0) fineData_[sf]=coarseData_[sc](i) *basis_[sf]); | ||||||
|  |       else     fineData_[sf]=fineData_[sf]+coarseData_[sc](i)*basis_[sf]); | ||||||
|  |     } | ||||||
|   }); |   }); | ||||||
|   for(int v=0;v<nbasis;v++) { |  | ||||||
|     AcceleratorVecViewContainer_h[v].ViewClose(); |  | ||||||
|   } |  | ||||||
|   return; |   return; | ||||||
|  |    | ||||||
| } | } | ||||||
| #else | #else | ||||||
| // CPU version |  | ||||||
| template<class vobj,class CComplex,int nbasis,class VLattice> | template<class vobj,class CComplex,int nbasis,class VLattice> | ||||||
| inline void blockPromote(const Lattice<iVector<CComplex,nbasis > > &coarseData, | inline void blockPromote(const Lattice<iVector<CComplex,nbasis > > &coarseData, | ||||||
| 			 Lattice<vobj>   &fineData, | 			 Lattice<vobj>   &fineData, | ||||||
| @@ -717,11 +682,7 @@ void localCopyRegion(const Lattice<vobj> &From,Lattice<vobj> & To,Coordinate Fro | |||||||
|   typedef typename vobj::scalar_type scalar_type; |   typedef typename vobj::scalar_type scalar_type; | ||||||
|   typedef typename vobj::vector_type vector_type; |   typedef typename vobj::vector_type vector_type; | ||||||
|  |  | ||||||
|   const int words=sizeof(vobj)/sizeof(vector_type); |   static const int words=sizeof(vobj)/sizeof(vector_type); | ||||||
|  |  | ||||||
|   ////////////////////////////////////////////////////////////////////////////////////////// |  | ||||||
|   // checks should guarantee that the operations are local |  | ||||||
|   ////////////////////////////////////////////////////////////////////////////////////////// |  | ||||||
|  |  | ||||||
|   GridBase *Fg = From.Grid(); |   GridBase *Fg = From.Grid(); | ||||||
|   GridBase *Tg = To.Grid(); |   GridBase *Tg = To.Grid(); | ||||||
| @@ -736,107 +697,52 @@ void localCopyRegion(const Lattice<vobj> &From,Lattice<vobj> & To,Coordinate Fro | |||||||
|   for(int d=0;d<nd;d++){ |   for(int d=0;d<nd;d++){ | ||||||
|     assert(Fg->_processors[d]  == Tg->_processors[d]); |     assert(Fg->_processors[d]  == Tg->_processors[d]); | ||||||
|   } |   } | ||||||
|  |   // the above should guarantee that the operations are local | ||||||
|   /////////////////////////////////////////////////////////// |    | ||||||
|   // do the index calc on the GPU | #if 1 | ||||||
|   /////////////////////////////////////////////////////////// |  | ||||||
|   Coordinate f_ostride = Fg->_ostride; |  | ||||||
|   Coordinate f_istride = Fg->_istride; |  | ||||||
|   Coordinate f_rdimensions = Fg->_rdimensions; |  | ||||||
|   Coordinate t_ostride = Tg->_ostride; |  | ||||||
|   Coordinate t_istride = Tg->_istride; |  | ||||||
|   Coordinate t_rdimensions = Tg->_rdimensions; |  | ||||||
|  |  | ||||||
|   size_t nsite = 1; |   size_t nsite = 1; | ||||||
|   for(int i=0;i<nd;i++) nsite *= RegionSize[i]; |   for(int i=0;i<nd;i++) nsite *= RegionSize[i]; | ||||||
|  |    | ||||||
|   typedef typename vobj::vector_type vector_type; |   size_t tbytes = 4*nsite*sizeof(int); | ||||||
|   typedef typename vobj::scalar_type scalar_type; |   int *table = (int*)malloc(tbytes); | ||||||
|  |   | ||||||
|   autoView(from_v,From,AcceleratorRead); |   thread_for(idx, nsite, { | ||||||
|   autoView(to_v,To,AcceleratorWrite); |       Coordinate from_coor, to_coor; | ||||||
|  |       size_t rem = idx; | ||||||
|   accelerator_for(idx,nsite,1,{ |  | ||||||
|  |  | ||||||
|       Coordinate from_coor, to_coor, base; |  | ||||||
|       Lexicographic::CoorFromIndex(base,idx,RegionSize); |  | ||||||
|       for(int i=0;i<nd;i++){ |       for(int i=0;i<nd;i++){ | ||||||
| 	from_coor[i] = base[i] + FromLowerLeft[i]; | 	size_t base_i  = rem % RegionSize[i]; rem /= RegionSize[i]; | ||||||
| 	to_coor[i] = base[i] + ToLowerLeft[i]; | 	from_coor[i] = base_i + FromLowerLeft[i]; | ||||||
|  | 	to_coor[i] = base_i + ToLowerLeft[i]; | ||||||
|       } |       } | ||||||
|       int from_oidx = 0; for(int d=0;d<nd;d++) from_oidx+=f_ostride[d]*(from_coor[d]%f_rdimensions[d]); |  | ||||||
|       int from_lane = 0; for(int d=0;d<nd;d++) from_lane+=f_istride[d]*(from_coor[d]/f_rdimensions[d]); |  | ||||||
|       int to_oidx   = 0; for(int d=0;d<nd;d++) to_oidx+=t_ostride[d]*(to_coor[d]%t_rdimensions[d]); |  | ||||||
|       int to_lane   = 0; for(int d=0;d<nd;d++) to_lane+=t_istride[d]*(to_coor[d]/t_rdimensions[d]); |  | ||||||
|  |  | ||||||
|       const vector_type* from = (const vector_type *)&from_v[from_oidx]; |  | ||||||
|       vector_type* to = (vector_type *)&to_v[to_oidx]; |  | ||||||
|        |        | ||||||
|       scalar_type stmp; |       int foidx = Fg->oIndex(from_coor); | ||||||
|       for(int w=0;w<words;w++){ |       int fiidx = Fg->iIndex(from_coor); | ||||||
| 	stmp = getlane(from[w], from_lane); |       int toidx = Tg->oIndex(to_coor); | ||||||
| 	putlane(to[w], stmp, to_lane); |       int tiidx = Tg->iIndex(to_coor); | ||||||
|       } |       int* tt = table + 4*idx; | ||||||
|   }); |       tt[0] = foidx; | ||||||
| } |       tt[1] = fiidx; | ||||||
|  |       tt[2] = toidx; | ||||||
| template<class vobj> |       tt[3] = tiidx; | ||||||
| void InsertSliceFast(const Lattice<vobj> &From,Lattice<vobj> & To,int slice, int orthog) |     }); | ||||||
| { |    | ||||||
|   typedef typename vobj::scalar_object sobj; |   int* table_d = (int*)acceleratorAllocDevice(tbytes); | ||||||
|   typedef typename vobj::scalar_type scalar_type; |   acceleratorCopyToDevice(table,table_d,tbytes); | ||||||
|   typedef typename vobj::vector_type vector_type; |  | ||||||
|  |  | ||||||
|   const int words=sizeof(vobj)/sizeof(vector_type); |  | ||||||
|  |  | ||||||
|   ////////////////////////////////////////////////////////////////////////////////////////// |  | ||||||
|   // checks should guarantee that the operations are local |  | ||||||
|   ////////////////////////////////////////////////////////////////////////////////////////// |  | ||||||
|   GridBase *Fg = From.Grid(); |  | ||||||
|   GridBase *Tg = To.Grid(); |  | ||||||
|   assert(!Fg->_isCheckerBoarded); |  | ||||||
|   assert(!Tg->_isCheckerBoarded); |  | ||||||
|   int Nsimd = Fg->Nsimd(); |  | ||||||
|   int nF = Fg->_ndimension; |  | ||||||
|   int nT = Tg->_ndimension; |  | ||||||
|   assert(nF+1 == nT); |  | ||||||
|  |  | ||||||
|   /////////////////////////////////////////////////////////// |  | ||||||
|   // do the index calc on the GPU |  | ||||||
|   /////////////////////////////////////////////////////////// |  | ||||||
|   Coordinate f_ostride = Fg->_ostride; |  | ||||||
|   Coordinate f_istride = Fg->_istride; |  | ||||||
|   Coordinate f_rdimensions = Fg->_rdimensions; |  | ||||||
|   Coordinate t_ostride = Tg->_ostride; |  | ||||||
|   Coordinate t_istride = Tg->_istride; |  | ||||||
|   Coordinate t_rdimensions = Tg->_rdimensions; |  | ||||||
|   Coordinate RegionSize = Fg->_ldimensions; |  | ||||||
|   size_t nsite = 1; |  | ||||||
|   for(int i=0;i<nF;i++) nsite *= RegionSize[i]; // whole volume of lower dim grid |  | ||||||
|  |  | ||||||
|   typedef typename vobj::vector_type vector_type; |   typedef typename vobj::vector_type vector_type; | ||||||
|   typedef typename vobj::scalar_type scalar_type; |   typedef typename vobj::scalar_type scalar_type; | ||||||
|  |  | ||||||
|   autoView(from_v,From,AcceleratorRead); |   autoView(from_v,From,AcceleratorRead); | ||||||
|   autoView(to_v,To,AcceleratorWrite); |   autoView(to_v,To,AcceleratorWrite); | ||||||
|  |    | ||||||
|   accelerator_for(idx,nsite,1,{ |   accelerator_for(idx,nsite,1,{ | ||||||
|  |       static const int words=sizeof(vobj)/sizeof(vector_type); | ||||||
|       Coordinate from_coor(nF), to_coor(nT); |       int* tt = table_d + 4*idx; | ||||||
|       Lexicographic::CoorFromIndex(from_coor,idx,RegionSize); |       int from_oidx = *tt++; | ||||||
|       int j=0; |       int from_lane = *tt++; | ||||||
|       for(int i=0;i<nT;i++){ |       int to_oidx = *tt++; | ||||||
| 	if ( i!=orthog ) {  |       int to_lane = *tt; | ||||||
| 	  to_coor[i] = from_coor[j]; |  | ||||||
| 	  j++; |  | ||||||
| 	} else { |  | ||||||
| 	  to_coor[i] = slice; |  | ||||||
| 	} |  | ||||||
|       } |  | ||||||
|       int from_oidx = 0; for(int d=0;d<nF;d++) from_oidx+=f_ostride[d]*(from_coor[d]%f_rdimensions[d]); |  | ||||||
|       int from_lane = 0; for(int d=0;d<nF;d++) from_lane+=f_istride[d]*(from_coor[d]/f_rdimensions[d]); |  | ||||||
|       int to_oidx   = 0; for(int d=0;d<nT;d++) to_oidx+=t_ostride[d]*(to_coor[d]%t_rdimensions[d]); |  | ||||||
|       int to_lane   = 0; for(int d=0;d<nT;d++) to_lane+=t_istride[d]*(to_coor[d]/t_rdimensions[d]); |  | ||||||
|  |  | ||||||
|       const vector_type* from = (const vector_type *)&from_v[from_oidx]; |       const vector_type* from = (const vector_type *)&from_v[from_oidx]; | ||||||
|       vector_type* to = (vector_type *)&to_v[to_oidx]; |       vector_type* to = (vector_type *)&to_v[to_oidx]; | ||||||
| @@ -846,78 +752,57 @@ void InsertSliceFast(const Lattice<vobj> &From,Lattice<vobj> & To,int slice, int | |||||||
| 	stmp = getlane(from[w], from_lane); | 	stmp = getlane(from[w], from_lane); | ||||||
| 	putlane(to[w], stmp, to_lane); | 	putlane(to[w], stmp, to_lane); | ||||||
|       } |       } | ||||||
|   }); |     }); | ||||||
| } |    | ||||||
|  |   acceleratorFreeDevice(table_d);     | ||||||
|  |   free(table); | ||||||
|  |    | ||||||
|  |  | ||||||
| template<class vobj> | #else   | ||||||
| void ExtractSliceFast(Lattice<vobj> &To,const Lattice<vobj> & From,int slice, int orthog) |   Coordinate ldf = Fg->_ldimensions; | ||||||
| { |   Coordinate rdf = Fg->_rdimensions; | ||||||
|   typedef typename vobj::scalar_object sobj; |   Coordinate isf = Fg->_istride; | ||||||
|   typedef typename vobj::scalar_type scalar_type; |   Coordinate osf = Fg->_ostride; | ||||||
|   typedef typename vobj::vector_type vector_type; |   Coordinate rdt = Tg->_rdimensions; | ||||||
|  |   Coordinate ist = Tg->_istride; | ||||||
|  |   Coordinate ost = Tg->_ostride; | ||||||
|  |  | ||||||
|   const int words=sizeof(vobj)/sizeof(vector_type); |   autoView( t_v , To, CpuWrite); | ||||||
|  |   autoView( f_v , From, CpuRead); | ||||||
|   ////////////////////////////////////////////////////////////////////////////////////////// |   thread_for(idx,Fg->lSites(),{ | ||||||
|   // checks should guarantee that the operations are local |     sobj s; | ||||||
|   ////////////////////////////////////////////////////////////////////////////////////////// |     Coordinate Fcoor(nd); | ||||||
|   GridBase *Fg = From.Grid(); |     Coordinate Tcoor(nd); | ||||||
|   GridBase *Tg = To.Grid(); |     Lexicographic::CoorFromIndex(Fcoor,idx,ldf); | ||||||
|   assert(!Fg->_isCheckerBoarded); |     int in_region=1; | ||||||
|   assert(!Tg->_isCheckerBoarded); |     for(int d=0;d<nd;d++){ | ||||||
|   int Nsimd = Fg->Nsimd(); |       if ( (Fcoor[d] < FromLowerLeft[d]) || (Fcoor[d]>=FromLowerLeft[d]+RegionSize[d]) ){  | ||||||
|   int nF = Fg->_ndimension; | 	in_region=0; | ||||||
|   int nT = Tg->_ndimension; |  | ||||||
|   assert(nT+1 == nF); |  | ||||||
|  |  | ||||||
|   /////////////////////////////////////////////////////////// |  | ||||||
|   // do the index calc on the GPU |  | ||||||
|   /////////////////////////////////////////////////////////// |  | ||||||
|   Coordinate f_ostride = Fg->_ostride; |  | ||||||
|   Coordinate f_istride = Fg->_istride; |  | ||||||
|   Coordinate f_rdimensions = Fg->_rdimensions; |  | ||||||
|   Coordinate t_ostride = Tg->_ostride; |  | ||||||
|   Coordinate t_istride = Tg->_istride; |  | ||||||
|   Coordinate t_rdimensions = Tg->_rdimensions; |  | ||||||
|   Coordinate RegionSize = Tg->_ldimensions; |  | ||||||
|   size_t nsite = 1; |  | ||||||
|   for(int i=0;i<nT;i++) nsite *= RegionSize[i]; // whole volume of lower dim grid |  | ||||||
|  |  | ||||||
|   typedef typename vobj::vector_type vector_type; |  | ||||||
|   typedef typename vobj::scalar_type scalar_type; |  | ||||||
|  |  | ||||||
|   autoView(from_v,From,AcceleratorRead); |  | ||||||
|   autoView(to_v,To,AcceleratorWrite); |  | ||||||
|  |  | ||||||
|   accelerator_for(idx,nsite,1,{ |  | ||||||
|  |  | ||||||
|       Coordinate from_coor(nF), to_coor(nT); |  | ||||||
|       Lexicographic::CoorFromIndex(to_coor,idx,RegionSize); |  | ||||||
|       int j=0; |  | ||||||
|       for(int i=0;i<nF;i++){ |  | ||||||
| 	if ( i!=orthog ) {  |  | ||||||
| 	  from_coor[i] = to_coor[j]; |  | ||||||
| 	  j++; |  | ||||||
| 	} else { |  | ||||||
| 	  from_coor[i] = slice; |  | ||||||
| 	} |  | ||||||
|       } |       } | ||||||
|       int from_oidx = 0; for(int d=0;d<nF;d++) from_oidx+=f_ostride[d]*(from_coor[d]%f_rdimensions[d]); |       Tcoor[d] = ToLowerLeft[d]+ Fcoor[d]-FromLowerLeft[d]; | ||||||
|       int from_lane = 0; for(int d=0;d<nF;d++) from_lane+=f_istride[d]*(from_coor[d]/f_rdimensions[d]); |     } | ||||||
|       int to_oidx   = 0; for(int d=0;d<nT;d++) to_oidx+=t_ostride[d]*(to_coor[d]%t_rdimensions[d]); |     if (in_region) { | ||||||
|       int to_lane   = 0; for(int d=0;d<nT;d++) to_lane+=t_istride[d]*(to_coor[d]/t_rdimensions[d]); | #if 0       | ||||||
|  |       Integer idx_f = 0; for(int d=0;d<nd;d++) idx_f+=isf[d]*(Fcoor[d]/rdf[d]); // inner index from | ||||||
|       const vector_type* from = (const vector_type *)&from_v[from_oidx]; |       Integer idx_t = 0; for(int d=0;d<nd;d++) idx_t+=ist[d]*(Tcoor[d]/rdt[d]); // inner index to | ||||||
|       vector_type* to = (vector_type *)&to_v[to_oidx]; |       Integer odx_f = 0; for(int d=0;d<nd;d++) odx_f+=osf[d]*(Fcoor[d]%rdf[d]); // outer index from | ||||||
|        |       Integer odx_t = 0; for(int d=0;d<nd;d++) odx_t+=ost[d]*(Tcoor[d]%rdt[d]); // outer index to | ||||||
|       scalar_type stmp; |       scalar_type * fp = (scalar_type *)&f_v[odx_f]; | ||||||
|  |       scalar_type * tp = (scalar_type *)&t_v[odx_t]; | ||||||
|       for(int w=0;w<words;w++){ |       for(int w=0;w<words;w++){ | ||||||
| 	stmp = getlane(from[w], from_lane); | 	tp[w].putlane(fp[w].getlane(idx_f),idx_t); | ||||||
| 	putlane(to[w], stmp, to_lane); |  | ||||||
|       } |       } | ||||||
|  | #else | ||||||
|  |     peekLocalSite(s,f_v,Fcoor); | ||||||
|  |     pokeLocalSite(s,t_v,Tcoor); | ||||||
|  | #endif | ||||||
|  |     } | ||||||
|   }); |   }); | ||||||
|  |  | ||||||
|  | #endif | ||||||
| } | } | ||||||
|  |  | ||||||
|  |  | ||||||
| template<class vobj> | template<class vobj> | ||||||
| void InsertSlice(const Lattice<vobj> &lowDim,Lattice<vobj> & higherDim,int slice, int orthog) | void InsertSlice(const Lattice<vobj> &lowDim,Lattice<vobj> & higherDim,int slice, int orthog) | ||||||
| { | { | ||||||
| @@ -1006,7 +891,9 @@ void ExtractSlice(Lattice<vobj> &lowDim,const Lattice<vobj> & higherDim,int slic | |||||||
|  |  | ||||||
| } | } | ||||||
|  |  | ||||||
| //Can I implement with local copyregion?? |  | ||||||
|  | //Insert subvolume orthogonal to direction 'orthog' with slice index 'slice_lo' from 'lowDim' onto slice index 'slice_hi' of higherDim | ||||||
|  | //The local dimensions of both 'lowDim' and 'higherDim' orthogonal to 'orthog' should be the same | ||||||
| template<class vobj> | template<class vobj> | ||||||
| void InsertSliceLocal(const Lattice<vobj> &lowDim, Lattice<vobj> & higherDim,int slice_lo,int slice_hi, int orthog) | void InsertSliceLocal(const Lattice<vobj> &lowDim, Lattice<vobj> & higherDim,int slice_lo,int slice_hi, int orthog) | ||||||
| { | { | ||||||
| @@ -1027,18 +914,121 @@ void InsertSliceLocal(const Lattice<vobj> &lowDim, Lattice<vobj> & higherDim,int | |||||||
|       assert(lg->_ldimensions[d] == hg->_ldimensions[d]); |       assert(lg->_ldimensions[d] == hg->_ldimensions[d]); | ||||||
|     } |     } | ||||||
|   } |   } | ||||||
|   Coordinate sz = lg->_ldimensions; |  | ||||||
|   sz[orthog]=1; | #if 1 | ||||||
|   Coordinate f_ll(nl,0); f_ll[orthog]=slice_lo; |   size_t nsite = lg->lSites()/lg->LocalDimensions()[orthog]; | ||||||
|   Coordinate t_ll(nh,0); t_ll[orthog]=slice_hi; |   size_t tbytes = 4*nsite*sizeof(int); | ||||||
|   localCopyRegion(lowDim,higherDim,f_ll,t_ll,sz); |   int *table = (int*)malloc(tbytes); | ||||||
|  |    | ||||||
|  |   thread_for(idx,nsite,{ | ||||||
|  |     Coordinate lcoor(nl); | ||||||
|  |     Coordinate hcoor(nh); | ||||||
|  |     lcoor[orthog] = slice_lo; | ||||||
|  |     hcoor[orthog] = slice_hi; | ||||||
|  |     size_t rem = idx; | ||||||
|  |     for(int mu=0;mu<nl;mu++){ | ||||||
|  |       if(mu != orthog){ | ||||||
|  | 	int xmu = rem % lg->LocalDimensions()[mu];  rem /= lg->LocalDimensions()[mu]; | ||||||
|  | 	lcoor[mu] = hcoor[mu] = xmu; | ||||||
|  |       } | ||||||
|  |     } | ||||||
|  |     int loidx = lg->oIndex(lcoor); | ||||||
|  |     int liidx = lg->iIndex(lcoor); | ||||||
|  |     int hoidx = hg->oIndex(hcoor); | ||||||
|  |     int hiidx = hg->iIndex(hcoor); | ||||||
|  |     int* tt = table + 4*idx; | ||||||
|  |     tt[0] = loidx; | ||||||
|  |     tt[1] = liidx; | ||||||
|  |     tt[2] = hoidx; | ||||||
|  |     tt[3] = hiidx; | ||||||
|  |     }); | ||||||
|  |     | ||||||
|  |   int* table_d = (int*)acceleratorAllocDevice(tbytes); | ||||||
|  |   acceleratorCopyToDevice(table,table_d,tbytes); | ||||||
|  |  | ||||||
|  |   typedef typename vobj::vector_type vector_type; | ||||||
|  |   typedef typename vobj::scalar_type scalar_type; | ||||||
|  |  | ||||||
|  |   autoView(lowDim_v,lowDim,AcceleratorRead); | ||||||
|  |   autoView(higherDim_v,higherDim,AcceleratorWrite); | ||||||
|  |    | ||||||
|  |   accelerator_for(idx,nsite,1,{ | ||||||
|  |       static const int words=sizeof(vobj)/sizeof(vector_type); | ||||||
|  |       int* tt = table_d + 4*idx; | ||||||
|  |       int from_oidx = *tt++; | ||||||
|  |       int from_lane = *tt++; | ||||||
|  |       int to_oidx = *tt++; | ||||||
|  |       int to_lane = *tt; | ||||||
|  |  | ||||||
|  |       const vector_type* from = (const vector_type *)&lowDim_v[from_oidx]; | ||||||
|  |       vector_type* to = (vector_type *)&higherDim_v[to_oidx]; | ||||||
|  |        | ||||||
|  |       scalar_type stmp; | ||||||
|  |       for(int w=0;w<words;w++){ | ||||||
|  | 	stmp = getlane(from[w], from_lane); | ||||||
|  | 	putlane(to[w], stmp, to_lane); | ||||||
|  |       } | ||||||
|  |     }); | ||||||
|  |    | ||||||
|  |   acceleratorFreeDevice(table_d);     | ||||||
|  |   free(table); | ||||||
|  |    | ||||||
|  | #else | ||||||
|  |   // the above should guarantee that the operations are local | ||||||
|  |   autoView(lowDimv,lowDim,CpuRead); | ||||||
|  |   autoView(higherDimv,higherDim,CpuWrite); | ||||||
|  |   thread_for(idx,lg->lSites(),{ | ||||||
|  |     sobj s; | ||||||
|  |     Coordinate lcoor(nl); | ||||||
|  |     Coordinate hcoor(nh); | ||||||
|  |     lg->LocalIndexToLocalCoor(idx,lcoor); | ||||||
|  |     if( lcoor[orthog] == slice_lo ) {  | ||||||
|  |       hcoor=lcoor; | ||||||
|  |       hcoor[orthog] = slice_hi; | ||||||
|  |       peekLocalSite(s,lowDimv,lcoor); | ||||||
|  |       pokeLocalSite(s,higherDimv,hcoor); | ||||||
|  |     } | ||||||
|  |   }); | ||||||
|  | #endif | ||||||
| } | } | ||||||
|  |  | ||||||
|  |  | ||||||
| template<class vobj> | template<class vobj> | ||||||
| void ExtractSliceLocal(Lattice<vobj> &lowDim,const Lattice<vobj> & higherDim,int slice_lo,int slice_hi, int orthog) | void ExtractSliceLocal(Lattice<vobj> &lowDim,const Lattice<vobj> & higherDim,int slice_lo,int slice_hi, int orthog) | ||||||
| { | { | ||||||
|   InsertSliceLocal(higherDim,lowDim,slice_hi,slice_lo,orthog); |   typedef typename vobj::scalar_object sobj; | ||||||
|  |  | ||||||
|  |   GridBase *lg = lowDim.Grid(); | ||||||
|  |   GridBase *hg = higherDim.Grid(); | ||||||
|  |   int nl = lg->_ndimension; | ||||||
|  |   int nh = hg->_ndimension; | ||||||
|  |  | ||||||
|  |   assert(nl == nh); | ||||||
|  |   assert(orthog<nh); | ||||||
|  |   assert(orthog>=0); | ||||||
|  |  | ||||||
|  |   for(int d=0;d<nh;d++){ | ||||||
|  |     if ( d!=orthog ) { | ||||||
|  |     assert(lg->_processors[d]  == hg->_processors[d]); | ||||||
|  |     assert(lg->_ldimensions[d] == hg->_ldimensions[d]); | ||||||
|  |   } | ||||||
|  |   } | ||||||
|  |  | ||||||
|  |   // the above should guarantee that the operations are local | ||||||
|  |   autoView(lowDimv,lowDim,CpuWrite); | ||||||
|  |   autoView(higherDimv,higherDim,CpuRead); | ||||||
|  |   thread_for(idx,lg->lSites(),{ | ||||||
|  |     sobj s; | ||||||
|  |     Coordinate lcoor(nl); | ||||||
|  |     Coordinate hcoor(nh); | ||||||
|  |     lg->LocalIndexToLocalCoor(idx,lcoor); | ||||||
|  |     if( lcoor[orthog] == slice_lo ) {  | ||||||
|  |       hcoor=lcoor; | ||||||
|  |       hcoor[orthog] = slice_hi; | ||||||
|  |       peekLocalSite(s,higherDimv,hcoor); | ||||||
|  |       pokeLocalSite(s,lowDimv,lcoor); | ||||||
|  |     } | ||||||
|  |   }); | ||||||
| } | } | ||||||
|  |  | ||||||
|  |  | ||||||
| @@ -1064,7 +1054,7 @@ void Replicate(const Lattice<vobj> &coarse,Lattice<vobj> & fine) | |||||||
|  |  | ||||||
|   Coordinate fcoor(nd); |   Coordinate fcoor(nd); | ||||||
|   Coordinate ccoor(nd); |   Coordinate ccoor(nd); | ||||||
|   for(int64_t g=0;g<fg->gSites();g++){ |   for(int g=0;g<fg->gSites();g++){ | ||||||
|  |  | ||||||
|     fg->GlobalIndexToGlobalCoor(g,fcoor); |     fg->GlobalIndexToGlobalCoor(g,fcoor); | ||||||
|     for(int d=0;d<nd;d++){ |     for(int d=0;d<nd;d++){ | ||||||
| @@ -1750,35 +1740,5 @@ void Grid_unsplit(std::vector<Lattice<Vobj> > & full,Lattice<Vobj>   & split) | |||||||
|   } |   } | ||||||
| } | } | ||||||
|  |  | ||||||
| ////////////////////////////////////////////////////// |  | ||||||
| // Faster but less accurate blockProject |  | ||||||
| ////////////////////////////////////////////////////// |  | ||||||
| template<class vobj,class CComplex,int nbasis,class VLattice> |  | ||||||
| inline void blockProjectFast(Lattice<iVector<CComplex,nbasis > > &coarseData, |  | ||||||
| 			     const             Lattice<vobj>   &fineData, |  | ||||||
| 			     const VLattice &Basis) |  | ||||||
| { |  | ||||||
|   GridBase * fine  = fineData.Grid(); |  | ||||||
|   GridBase * coarse= coarseData.Grid(); |  | ||||||
|  |  | ||||||
|   Lattice<iScalar<CComplex> > ip(coarse); |  | ||||||
|  |  | ||||||
|   autoView( coarseData_ , coarseData, AcceleratorWrite); |  | ||||||
|   autoView( ip_         , ip,         AcceleratorWrite); |  | ||||||
|   RealD t_IP=0; |  | ||||||
|   RealD t_co=0; |  | ||||||
|   for(int v=0;v<nbasis;v++) { |  | ||||||
|     t_IP-=usecond(); |  | ||||||
|     blockInnerProductD(ip,Basis[v],fineData);  |  | ||||||
|     t_IP+=usecond(); |  | ||||||
|     t_co-=usecond(); |  | ||||||
|     accelerator_for( sc, coarse->oSites(), vobj::Nsimd(), { |  | ||||||
| 	convertType(coarseData_[sc](v),ip_[sc]); |  | ||||||
|       }); |  | ||||||
|     t_co+=usecond(); |  | ||||||
|   } |  | ||||||
| } |  | ||||||
|  |  | ||||||
|  |  | ||||||
| NAMESPACE_END(Grid); | NAMESPACE_END(Grid); | ||||||
|  |  | ||||||
|   | |||||||
| @@ -45,7 +45,6 @@ public: | |||||||
|   }; |   }; | ||||||
|   // Host only |   // Host only | ||||||
|   GridBase * getGrid(void) const { return _grid; }; |   GridBase * getGrid(void) const { return _grid; }; | ||||||
|   vobj* getHostPointer(void) const { return _odata; }; |  | ||||||
| }; | }; | ||||||
|  |  | ||||||
| ///////////////////////////////////////////////////////////////////////////////////////// | ///////////////////////////////////////////////////////////////////////////////////////// | ||||||
|   | |||||||
| @@ -45,188 +45,6 @@ struct CshiftImplGauge: public CshiftImplBase<typename Gimpl::GaugeLinkField::ve | |||||||
|   typename Gimpl::GaugeLinkField Cshift(const typename Gimpl::GaugeLinkField &in, int dir, int shift) const override{ return Gimpl::CshiftLink(in,dir,shift); } |   typename Gimpl::GaugeLinkField Cshift(const typename Gimpl::GaugeLinkField &in, int dir, int shift) const override{ return Gimpl::CshiftLink(in,dir,shift); } | ||||||
| };   | };   | ||||||
|  |  | ||||||
|  |  | ||||||
| /* |  | ||||||
|  * |  | ||||||
|  * TODO:  |  | ||||||
|  *  -- address elementsof vobj via thread block in Scatter/Gather |  | ||||||
|  *  -- overlap comms with motion in Face_exchange |  | ||||||
|  * |  | ||||||
|  */ |  | ||||||
|  |  | ||||||
| template<class vobj> inline void ScatterSlice(const cshiftVector<vobj> &buf, |  | ||||||
| 					      Lattice<vobj> &lat, |  | ||||||
| 					      int x, |  | ||||||
| 					      int dim, |  | ||||||
| 					      int offset=0) |  | ||||||
| { |  | ||||||
|   const int Nsimd=vobj::Nsimd(); |  | ||||||
|   typedef typename vobj::scalar_object sobj; |  | ||||||
|   typedef typename vobj::scalar_type scalar_type; |  | ||||||
|   typedef typename vobj::vector_type vector_type; |  | ||||||
|  |  | ||||||
|   GridBase *grid = lat.Grid(); |  | ||||||
|   Coordinate simd = grid->_simd_layout; |  | ||||||
|   int Nd          = grid->Nd(); |  | ||||||
|   int block       = grid->_slice_block[dim]; |  | ||||||
|   int stride      = grid->_slice_stride[dim]; |  | ||||||
|   int nblock      = grid->_slice_nblock[dim]; |  | ||||||
|   int rd          = grid->_rdimensions[dim]; |  | ||||||
|  |  | ||||||
|   int ox = x%rd; |  | ||||||
|   int ix = x/rd; |  | ||||||
|  |  | ||||||
|   int isites = 1; for(int d=0;d<Nd;d++) if( d!=dim) isites*=simd[d]; |  | ||||||
|  |  | ||||||
|   Coordinate rsimd= simd;  rsimd[dim]=1; // maybe reduce Nsimd |  | ||||||
|  |  | ||||||
|   int rNsimd = 1; for(int d=0;d<Nd;d++) rNsimd*=rsimd[d]; |  | ||||||
|   int rNsimda= Nsimd/simd[dim]; // should be equal |  | ||||||
|   assert(rNsimda==rNsimd); |  | ||||||
|   int face_ovol=block*nblock; |  | ||||||
|  |  | ||||||
|   //  assert(buf.size()==face_ovol*rNsimd); |  | ||||||
|  |  | ||||||
|   /*This will work GPU ONLY unless rNsimd is put in the lexico index*/ |  | ||||||
|   //Let's make it work on GPU and then make a special accelerator_for that |  | ||||||
|   //doesn't hide the SIMD direction and keeps explicit in the threadIdx |  | ||||||
|   //for cross platform |  | ||||||
|   // FIXME -- can put internal indices into thread loop |  | ||||||
|   auto buf_p = & buf[0]; |  | ||||||
|   autoView(lat_v, lat, AcceleratorWrite); |  | ||||||
|   accelerator_for(ss, face_ovol/simd[dim],Nsimd,{ |  | ||||||
|  |  | ||||||
|     // scalar layout won't coalesce |  | ||||||
| #ifdef GRID_SIMT |  | ||||||
|       { |  | ||||||
| 	int blane=acceleratorSIMTlane(Nsimd); // buffer lane |  | ||||||
| #else |  | ||||||
|       for(int blane=0;blane<Nsimd;blane++) { |  | ||||||
| #endif |  | ||||||
| 	int olane=blane%rNsimd;               // reduced lattice lane |  | ||||||
| 	int obit =blane/rNsimd; |  | ||||||
|  |  | ||||||
| 	/////////////////////////////////////////////////////////////// |  | ||||||
| 	// osite -- potentially one bit from simd in the buffer: (ss<<1)|obit |  | ||||||
| 	/////////////////////////////////////////////////////////////// |  | ||||||
| 	int ssp = ss*simd[dim]+obit; |  | ||||||
| 	int b    = ssp%block; |  | ||||||
| 	int n    = ssp/block; |  | ||||||
| 	int osite= b+n*stride + ox*block; |  | ||||||
| 	 |  | ||||||
| 	//////////////////////////////////////////// |  | ||||||
| 	// isite -- map lane within buffer to lane within lattice |  | ||||||
| 	//////////////////////////////////////////// |  | ||||||
| 	Coordinate icoor; |  | ||||||
| 	int lane; |  | ||||||
| 	Lexicographic::CoorFromIndex(icoor,olane,rsimd); |  | ||||||
| 	icoor[dim]=ix; |  | ||||||
| 	Lexicographic::IndexFromCoor(icoor,lane,simd); |  | ||||||
| 	 |  | ||||||
| 	/////////////////////////////////////////// |  | ||||||
| 	// Transfer into lattice - will coalesce |  | ||||||
| 	/////////////////////////////////////////// |  | ||||||
| 	//	sobj obj = extractLane(blane,buf_p[ss+offset]); |  | ||||||
| 	//	insertLane(lane,lat_v[osite],obj); |  | ||||||
| 	const int words=sizeof(vobj)/sizeof(vector_type); |  | ||||||
| 	vector_type * from = (vector_type *)&buf_p[ss+offset]; |  | ||||||
| 	vector_type * to   = (vector_type *)&lat_v[osite]; |  | ||||||
| 	scalar_type stmp; |  | ||||||
| 	for(int w=0;w<words;w++){ |  | ||||||
| 	  stmp = getlane(from[w], blane); |  | ||||||
| 	  putlane(to[w], stmp, lane); |  | ||||||
| 	} |  | ||||||
|       } |  | ||||||
|   }); |  | ||||||
| } |  | ||||||
|  |  | ||||||
| template<class vobj> inline void GatherSlice(cshiftVector<vobj> &buf, |  | ||||||
| 					     const Lattice<vobj> &lat, |  | ||||||
| 					     int x, |  | ||||||
| 					     int dim, |  | ||||||
| 					     int offset=0) |  | ||||||
| { |  | ||||||
|   const int Nsimd=vobj::Nsimd(); |  | ||||||
|   typedef typename vobj::scalar_object sobj; |  | ||||||
|   typedef typename vobj::scalar_type scalar_type; |  | ||||||
|   typedef typename vobj::vector_type vector_type; |  | ||||||
|  |  | ||||||
|   autoView(lat_v, lat, AcceleratorRead); |  | ||||||
|  |  | ||||||
|   GridBase *grid = lat.Grid(); |  | ||||||
|   Coordinate simd = grid->_simd_layout; |  | ||||||
|   int Nd          = grid->Nd(); |  | ||||||
|   int block       = grid->_slice_block[dim]; |  | ||||||
|   int stride      = grid->_slice_stride[dim]; |  | ||||||
|   int nblock      = grid->_slice_nblock[dim]; |  | ||||||
|   int rd          = grid->_rdimensions[dim]; |  | ||||||
|  |  | ||||||
|   int ox = x%rd; |  | ||||||
|   int ix = x/rd; |  | ||||||
|  |  | ||||||
|   int isites = 1; for(int d=0;d<Nd;d++) if( d!=dim) isites*=simd[d]; |  | ||||||
|  |  | ||||||
|   Coordinate rsimd= simd;  rsimd[dim]=1; // maybe reduce Nsimd |  | ||||||
|  |  | ||||||
|   int rNsimd = 1; for(int d=0;d<Nd;d++) rNsimd*=rsimd[d]; |  | ||||||
|    |  | ||||||
|   int face_ovol=block*nblock; |  | ||||||
|  |  | ||||||
|   //  assert(buf.size()==face_ovol*rNsimd); |  | ||||||
|  |  | ||||||
|   /*This will work GPU ONLY unless rNsimd is put in the lexico index*/ |  | ||||||
|   //Let's make it work on GPU and then make a special accelerator_for that |  | ||||||
|   //doesn't hide the SIMD direction and keeps explicit in the threadIdx |  | ||||||
|   //for cross platform |  | ||||||
|   //For CPU perhaps just run a loop over Nsimd |  | ||||||
|   auto buf_p = & buf[0]; |  | ||||||
|   accelerator_for(ss, face_ovol/simd[dim],Nsimd,{ |  | ||||||
|  |  | ||||||
|     // scalar layout won't coalesce |  | ||||||
| #ifdef GRID_SIMT |  | ||||||
|       { |  | ||||||
| 	int blane=acceleratorSIMTlane(Nsimd); // buffer lane |  | ||||||
| #else |  | ||||||
|       for(int blane=0;blane<Nsimd;blane++) { |  | ||||||
| #endif |  | ||||||
| 	int olane=blane%rNsimd;               // reduced lattice lane |  | ||||||
| 	int obit =blane/rNsimd; |  | ||||||
| 	 |  | ||||||
| 	//////////////////////////////////////////// |  | ||||||
| 	// osite |  | ||||||
| 	//////////////////////////////////////////// |  | ||||||
| 	int ssp = ss*simd[dim]+obit; |  | ||||||
| 	int b    = ssp%block; |  | ||||||
| 	int n    = ssp/block; |  | ||||||
| 	int osite= b+n*stride + ox*block; |  | ||||||
|  |  | ||||||
| 	//////////////////////////////////////////// |  | ||||||
| 	// isite -- map lane within buffer to lane within lattice |  | ||||||
| 	//////////////////////////////////////////// |  | ||||||
| 	Coordinate icoor; |  | ||||||
| 	int lane; |  | ||||||
| 	Lexicographic::CoorFromIndex(icoor,olane,rsimd); |  | ||||||
| 	icoor[dim]=ix; |  | ||||||
| 	Lexicographic::IndexFromCoor(icoor,lane,simd); |  | ||||||
| 	 |  | ||||||
| 	/////////////////////////////////////////// |  | ||||||
| 	// Take out of lattice |  | ||||||
| 	/////////////////////////////////////////// |  | ||||||
| 	//	sobj obj = extractLane(lane,lat_v[osite]); |  | ||||||
| 	//	insertLane(blane,buf_p[ss+offset],obj); |  | ||||||
| 	const int words=sizeof(vobj)/sizeof(vector_type); |  | ||||||
| 	vector_type * to    = (vector_type *)&buf_p[ss+offset]; |  | ||||||
| 	vector_type * from  = (vector_type *)&lat_v[osite]; |  | ||||||
| 	scalar_type stmp; |  | ||||||
| 	for(int w=0;w<words;w++){ |  | ||||||
| 	  stmp = getlane(from[w], lane); |  | ||||||
| 	  putlane(to[w], stmp, blane); |  | ||||||
| 	} |  | ||||||
|       } |  | ||||||
|   }); |  | ||||||
| } |  | ||||||
|  |  | ||||||
|  |  | ||||||
| class PaddedCell { | class PaddedCell { | ||||||
| public: | public: | ||||||
|   GridCartesian * unpadded_grid; |   GridCartesian * unpadded_grid; | ||||||
| @@ -245,18 +63,14 @@ public: | |||||||
|     dims=_grid->Nd(); |     dims=_grid->Nd(); | ||||||
|     AllocateGrids(); |     AllocateGrids(); | ||||||
|     Coordinate local     =unpadded_grid->LocalDimensions(); |     Coordinate local     =unpadded_grid->LocalDimensions(); | ||||||
|     Coordinate procs     =unpadded_grid->ProcessorGrid(); |  | ||||||
|     for(int d=0;d<dims;d++){ |     for(int d=0;d<dims;d++){ | ||||||
|       if ( procs[d] > 1 ) assert(local[d]>=depth); |       assert(local[d]>=depth); | ||||||
|     } |     } | ||||||
|   } |   } | ||||||
|   void DeleteGrids(void) |   void DeleteGrids(void) | ||||||
|   { |   { | ||||||
|     Coordinate processors=unpadded_grid->_processors; |  | ||||||
|     for(int d=0;d<grids.size();d++){ |     for(int d=0;d<grids.size();d++){ | ||||||
|       if ( processors[d] > 1 ) {  |       delete grids[d]; | ||||||
| 	delete grids[d]; |  | ||||||
|       } |  | ||||||
|     } |     } | ||||||
|     grids.resize(0); |     grids.resize(0); | ||||||
|   }; |   }; | ||||||
| @@ -267,36 +81,27 @@ public: | |||||||
|     Coordinate processors=unpadded_grid->_processors; |     Coordinate processors=unpadded_grid->_processors; | ||||||
|     Coordinate plocal    =unpadded_grid->LocalDimensions(); |     Coordinate plocal    =unpadded_grid->LocalDimensions(); | ||||||
|     Coordinate global(dims); |     Coordinate global(dims); | ||||||
|     GridCartesian *old_grid = unpadded_grid; |  | ||||||
|     // expand up one dim at a time |     // expand up one dim at a time | ||||||
|     for(int d=0;d<dims;d++){ |     for(int d=0;d<dims;d++){ | ||||||
|  |  | ||||||
|       if ( processors[d] > 1 ) {  |       plocal[d] += 2*depth;  | ||||||
| 	plocal[d] += 2*depth;  |  | ||||||
|        |  | ||||||
| 	for(int d=0;d<dims;d++){ |  | ||||||
| 	  global[d] = plocal[d]*processors[d]; |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	old_grid = new GridCartesian(global,simd,processors); |       for(int d=0;d<dims;d++){ | ||||||
|  | 	global[d] = plocal[d]*processors[d]; | ||||||
|       } |       } | ||||||
|       grids.push_back(old_grid); |  | ||||||
|  |       grids.push_back(new GridCartesian(global,simd,processors)); | ||||||
|     } |     } | ||||||
|   }; |   }; | ||||||
|   template<class vobj> |   template<class vobj> | ||||||
|   inline Lattice<vobj> Extract(const Lattice<vobj> &in) const |   inline Lattice<vobj> Extract(const Lattice<vobj> &in) const | ||||||
|   { |   { | ||||||
|     Coordinate processors=unpadded_grid->_processors; |  | ||||||
|  |  | ||||||
|     Lattice<vobj> out(unpadded_grid); |     Lattice<vobj> out(unpadded_grid); | ||||||
|  |  | ||||||
|     Coordinate local     =unpadded_grid->LocalDimensions(); |     Coordinate local     =unpadded_grid->LocalDimensions(); | ||||||
|     // depends on the MPI spread       |     Coordinate fll(dims,depth); // depends on the MPI spread | ||||||
|     Coordinate fll(dims,depth); |  | ||||||
|     Coordinate tll(dims,0); // depends on the MPI spread |     Coordinate tll(dims,0); // depends on the MPI spread | ||||||
|     for(int d=0;d<dims;d++){ |  | ||||||
|       if( processors[d]==1 ) fll[d]=0; |  | ||||||
|     } |  | ||||||
|     localCopyRegion(in,out,fll,tll,local); |     localCopyRegion(in,out,fll,tll,local); | ||||||
|     return out; |     return out; | ||||||
|   } |   } | ||||||
| @@ -311,22 +116,10 @@ public: | |||||||
|     } |     } | ||||||
|     return tmp; |     return tmp; | ||||||
|   } |   } | ||||||
|   template<class vobj> |  | ||||||
|   inline Lattice<vobj> ExchangePeriodic(const Lattice<vobj> &in) const |  | ||||||
|   { |  | ||||||
|     GridBase *old_grid = in.Grid(); |  | ||||||
|     int dims = old_grid->Nd(); |  | ||||||
|     Lattice<vobj> tmp = in; |  | ||||||
|     for(int d=0;d<dims;d++){ |  | ||||||
|       tmp = ExpandPeriodic(d,tmp); // rvalue && assignment |  | ||||||
|     } |  | ||||||
|     return tmp; |  | ||||||
|   } |  | ||||||
|   // expand up one dim at a time |   // expand up one dim at a time | ||||||
|   template<class vobj> |   template<class vobj> | ||||||
|   inline Lattice<vobj> Expand(int dim, const Lattice<vobj> &in, const CshiftImplBase<vobj> &cshift = CshiftImplDefault<vobj>()) const |   inline Lattice<vobj> Expand(int dim, const Lattice<vobj> &in, const CshiftImplBase<vobj> &cshift = CshiftImplDefault<vobj>()) const | ||||||
|   { |   { | ||||||
|     Coordinate processors=unpadded_grid->_processors; |  | ||||||
|     GridBase *old_grid = in.Grid(); |     GridBase *old_grid = in.Grid(); | ||||||
|     GridCartesian *new_grid = grids[dim];//These are new grids |     GridCartesian *new_grid = grids[dim];//These are new grids | ||||||
|     Lattice<vobj>  padded(new_grid); |     Lattice<vobj>  padded(new_grid); | ||||||
| @@ -336,236 +129,46 @@ public: | |||||||
|     if(dim==0) conformable(old_grid,unpadded_grid); |     if(dim==0) conformable(old_grid,unpadded_grid); | ||||||
|     else       conformable(old_grid,grids[dim-1]); |     else       conformable(old_grid,grids[dim-1]); | ||||||
|  |  | ||||||
|  |     std::cout << " dim "<<dim<<" local "<<local << " padding to "<<plocal<<std::endl; | ||||||
|  |  | ||||||
|     double tins=0, tshift=0; |     double tins=0, tshift=0; | ||||||
|  |  | ||||||
|     int islocal = 0 ; |  | ||||||
|     if ( processors[dim] == 1 ) islocal = 1; |  | ||||||
|  |  | ||||||
|     if ( islocal ) { |  | ||||||
|  |  | ||||||
|       // replace with a copy and maybe grid swizzle |  | ||||||
|       // return in;?? |  | ||||||
|       double t = usecond(); |  | ||||||
|       padded = in; |  | ||||||
|       tins += usecond() - t; |  | ||||||
|        |  | ||||||
|     } else { |  | ||||||
|  |  | ||||||
|       ////////////////////////////////////////////// |  | ||||||
|       // Replace sequence with |  | ||||||
|       // --------------------- |  | ||||||
|       // (i) Gather high face(s); start comms |  | ||||||
|       // (ii) Gather low  face(s); start comms |  | ||||||
|       // (iii) Copy middle bit with localCopyRegion |  | ||||||
|       // (iv) Complete high face(s), insert slice(s) |  | ||||||
|       // (iv) Complete low  face(s), insert slice(s) |  | ||||||
|       ////////////////////////////////////////////// |  | ||||||
|       // Middle bit |  | ||||||
|       double t = usecond(); |  | ||||||
|       for(int x=0;x<local[dim];x++){ |  | ||||||
| 	InsertSliceLocal(in,padded,x,depth+x,dim); |  | ||||||
|       } |  | ||||||
|       tins += usecond() - t; |  | ||||||
|      |      | ||||||
|       // High bit |     // Middle bit | ||||||
|       t = usecond(); |     double t = usecond(); | ||||||
|       shifted = cshift.Cshift(in,dim,depth); |     for(int x=0;x<local[dim];x++){ | ||||||
|       tshift += usecond() - t; |       InsertSliceLocal(in,padded,x,depth+x,dim); | ||||||
|  |  | ||||||
|       t=usecond(); |  | ||||||
|       for(int x=0;x<depth;x++){ |  | ||||||
| 	InsertSliceLocal(shifted,padded,local[dim]-depth+x,depth+local[dim]+x,dim); |  | ||||||
|       } |  | ||||||
|       tins += usecond() - t; |  | ||||||
|      |  | ||||||
|       // Low bit |  | ||||||
|       t = usecond(); |  | ||||||
|       shifted = cshift.Cshift(in,dim,-depth); |  | ||||||
|       tshift += usecond() - t; |  | ||||||
|      |  | ||||||
|       t = usecond(); |  | ||||||
|       for(int x=0;x<depth;x++){ |  | ||||||
| 	InsertSliceLocal(shifted,padded,x,x,dim); |  | ||||||
|       } |  | ||||||
|       tins += usecond() - t; |  | ||||||
|  |  | ||||||
|     } |     } | ||||||
|  |     tins += usecond() - t; | ||||||
|  |      | ||||||
|  |     // High bit | ||||||
|  |     t = usecond(); | ||||||
|  |     shifted = cshift.Cshift(in,dim,depth); | ||||||
|  |     tshift += usecond() - t; | ||||||
|  |  | ||||||
|  |     t=usecond(); | ||||||
|  |     for(int x=0;x<depth;x++){ | ||||||
|  |       InsertSliceLocal(shifted,padded,local[dim]-depth+x,depth+local[dim]+x,dim); | ||||||
|  |     } | ||||||
|  |     tins += usecond() - t; | ||||||
|  |      | ||||||
|  |     // Low bit | ||||||
|  |     t = usecond(); | ||||||
|  |     shifted = cshift.Cshift(in,dim,-depth); | ||||||
|  |     tshift += usecond() - t; | ||||||
|  |      | ||||||
|  |     t = usecond(); | ||||||
|  |     for(int x=0;x<depth;x++){ | ||||||
|  |       InsertSliceLocal(shifted,padded,x,x,dim); | ||||||
|  |     } | ||||||
|  |     tins += usecond() - t; | ||||||
|  |  | ||||||
|     std::cout << GridLogPerformance << "PaddedCell::Expand timings: cshift:" << tshift/1000 << "ms, insert-slice:" << tins/1000 << "ms" << std::endl; |     std::cout << GridLogPerformance << "PaddedCell::Expand timings: cshift:" << tshift/1000 << "ms, insert-slice:" << tins/1000 << "ms" << std::endl; | ||||||
|      |      | ||||||
|     return padded; |     return padded; | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   template<class vobj> |  | ||||||
|   inline Lattice<vobj> ExpandPeriodic(int dim, const Lattice<vobj> &in) const |  | ||||||
|   { |  | ||||||
|     Coordinate processors=unpadded_grid->_processors; |  | ||||||
|     GridBase *old_grid = in.Grid(); |  | ||||||
|     GridCartesian *new_grid = grids[dim];//These are new grids |  | ||||||
|     Lattice<vobj>  padded(new_grid); |  | ||||||
|     //    Lattice<vobj> shifted(old_grid);     |  | ||||||
|     Coordinate local     =old_grid->LocalDimensions(); |  | ||||||
|     Coordinate plocal    =new_grid->LocalDimensions(); |  | ||||||
|     if(dim==0) conformable(old_grid,unpadded_grid); |  | ||||||
|     else       conformable(old_grid,grids[dim-1]); |  | ||||||
|  |  | ||||||
|     //    std::cout << " dim "<<dim<<" local "<<local << " padding to "<<plocal<<std::endl; |  | ||||||
|     double tins=0, tshift=0; |  | ||||||
|  |  | ||||||
|     int islocal = 0 ; |  | ||||||
|     if ( processors[dim] == 1 ) islocal = 1; |  | ||||||
|  |  | ||||||
|     if ( islocal ) { |  | ||||||
|       padded=in; // slightly different interface could avoid a copy operation |  | ||||||
|     } else { |  | ||||||
|       Face_exchange(in,padded,dim,depth); |  | ||||||
|       return padded; |  | ||||||
|     } |  | ||||||
|     return padded; |  | ||||||
|   } |  | ||||||
|   template<class vobj> |  | ||||||
|   void Face_exchange(const Lattice<vobj> &from, |  | ||||||
| 		     Lattice<vobj> &to, |  | ||||||
| 		     int dimension,int depth) const |  | ||||||
|   { |  | ||||||
|     typedef typename vobj::vector_type vector_type; |  | ||||||
|     typedef typename vobj::scalar_type scalar_type; |  | ||||||
|     typedef typename vobj::scalar_object sobj; |  | ||||||
|  |  | ||||||
|     RealD t_gather=0.0; |  | ||||||
|     RealD t_scatter=0.0; |  | ||||||
|     RealD t_comms=0.0; |  | ||||||
|     RealD t_copy=0.0; |  | ||||||
|      |  | ||||||
|     //    std::cout << GridLogMessage << "dimension " <<dimension<<std::endl; |  | ||||||
|     //    DumpSliceNorm(std::string("Face_exchange from"),from,dimension); |  | ||||||
|     GridBase *grid=from.Grid(); |  | ||||||
|     GridBase *new_grid=to.Grid(); |  | ||||||
|  |  | ||||||
|     Coordinate lds = from.Grid()->_ldimensions; |  | ||||||
|     Coordinate nlds=   to.Grid()->_ldimensions; |  | ||||||
|     Coordinate simd= from.Grid()->_simd_layout; |  | ||||||
|     int ld    = lds[dimension]; |  | ||||||
|     int nld   = to.Grid()->_ldimensions[dimension]; |  | ||||||
|     const int Nsimd = vobj::Nsimd(); |  | ||||||
|  |  | ||||||
|     assert(depth<=lds[dimension]); // A must be on neighbouring node |  | ||||||
|     assert(depth>0);   // A caller bug if zero |  | ||||||
|     assert(ld+2*depth==nld); |  | ||||||
|     //////////////////////////////////////////////////////////////////////////// |  | ||||||
|     // Face size and byte calculations |  | ||||||
|     //////////////////////////////////////////////////////////////////////////// |  | ||||||
|     int buffer_size = 1; |  | ||||||
|     for(int d=0;d<lds.size();d++){ |  | ||||||
|       if ( d!= dimension) buffer_size=buffer_size*lds[d]; |  | ||||||
|     } |  | ||||||
|     buffer_size = buffer_size  / Nsimd; |  | ||||||
|     int rNsimd = Nsimd / simd[dimension]; |  | ||||||
|     assert( buffer_size == from.Grid()->_slice_nblock[dimension]*from.Grid()->_slice_block[dimension] / simd[dimension]); |  | ||||||
|  |  | ||||||
|     static cshiftVector<vobj> send_buf;  |  | ||||||
|     static cshiftVector<vobj> recv_buf; |  | ||||||
|     send_buf.resize(buffer_size*2*depth);     |  | ||||||
|     recv_buf.resize(buffer_size*2*depth); |  | ||||||
|  |  | ||||||
|     std::vector<CommsRequest_t> fwd_req;    |  | ||||||
|     std::vector<CommsRequest_t> bwd_req;    |  | ||||||
|  |  | ||||||
|     int words = buffer_size; |  | ||||||
|     int bytes = words * sizeof(vobj); |  | ||||||
|  |  | ||||||
|     //////////////////////////////////////////////////////////////////////////// |  | ||||||
|     // Communication coords |  | ||||||
|     //////////////////////////////////////////////////////////////////////////// |  | ||||||
|     int comm_proc = 1; |  | ||||||
|     int xmit_to_rank; |  | ||||||
|     int recv_from_rank; |  | ||||||
|     grid->ShiftedRanks(dimension,comm_proc,xmit_to_rank,recv_from_rank); |  | ||||||
|  |  | ||||||
|     //////////////////////////////////////////////////////////////////////////// |  | ||||||
|     // Gather all surface terms up to depth "d" |  | ||||||
|     //////////////////////////////////////////////////////////////////////////// |  | ||||||
|     RealD t; |  | ||||||
|     RealD t_tot=-usecond(); |  | ||||||
|     int plane=0; |  | ||||||
|     for ( int d=0;d < depth ; d ++ ) { |  | ||||||
|       int tag = d*1024 + dimension*2+0; |  | ||||||
|  |  | ||||||
|       t=usecond(); |  | ||||||
|       GatherSlice(send_buf,from,d,dimension,plane*buffer_size); plane++; |  | ||||||
|       t_gather+=usecond()-t; |  | ||||||
|  |  | ||||||
|       t=usecond(); |  | ||||||
|       grid->SendToRecvFromBegin(fwd_req, |  | ||||||
| 				(void *)&send_buf[d*buffer_size], xmit_to_rank, |  | ||||||
| 				(void *)&recv_buf[d*buffer_size], recv_from_rank, bytes, tag); |  | ||||||
|       t_comms+=usecond()-t; |  | ||||||
|      } |  | ||||||
|     for ( int d=0;d < depth ; d ++ ) { |  | ||||||
|       int tag = d*1024 + dimension*2+1; |  | ||||||
|  |  | ||||||
|       t=usecond(); |  | ||||||
|       GatherSlice(send_buf,from,ld-depth+d,dimension,plane*buffer_size); plane++; |  | ||||||
|       t_gather+= usecond() - t; |  | ||||||
|  |  | ||||||
|       t=usecond(); |  | ||||||
|       grid->SendToRecvFromBegin(bwd_req, |  | ||||||
| 				(void *)&send_buf[(d+depth)*buffer_size], recv_from_rank, |  | ||||||
| 				(void *)&recv_buf[(d+depth)*buffer_size], xmit_to_rank, bytes,tag); |  | ||||||
|       t_comms+=usecond()-t; |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     //////////////////////////////////////////////////////////////////////////// |  | ||||||
|     // Copy interior -- overlap this with comms |  | ||||||
|     //////////////////////////////////////////////////////////////////////////// |  | ||||||
|     int Nd = new_grid->Nd(); |  | ||||||
|     Coordinate LL(Nd,0); |  | ||||||
|     Coordinate sz = grid->_ldimensions; |  | ||||||
|     Coordinate toLL(Nd,0); |  | ||||||
|     toLL[dimension]=depth; |  | ||||||
|     t=usecond(); |  | ||||||
|     localCopyRegion(from,to,LL,toLL,sz); |  | ||||||
|     t_copy= usecond() - t; |  | ||||||
|      |  | ||||||
|     //////////////////////////////////////////////////////////////////////////// |  | ||||||
|     // Scatter all faces |  | ||||||
|     //////////////////////////////////////////////////////////////////////////// |  | ||||||
|     plane=0; |  | ||||||
|  |  | ||||||
|     t=usecond(); |  | ||||||
|     grid->CommsComplete(fwd_req); |  | ||||||
|     t_comms+= usecond() - t; |  | ||||||
|  |  | ||||||
|     t=usecond(); |  | ||||||
|     for ( int d=0;d < depth ; d ++ ) { |  | ||||||
|       ScatterSlice(recv_buf,to,nld-depth+d,dimension,plane*buffer_size); plane++; |  | ||||||
|     } |  | ||||||
|     t_scatter= usecond() - t; |  | ||||||
|  |  | ||||||
|     t=usecond(); |  | ||||||
|     grid->CommsComplete(bwd_req); |  | ||||||
|     t_comms+= usecond() - t; |  | ||||||
|      |  | ||||||
|     t=usecond(); |  | ||||||
|     for ( int d=0;d < depth ; d ++ ) { |  | ||||||
|       ScatterSlice(recv_buf,to,d,dimension,plane*buffer_size); plane++; |  | ||||||
|     } |  | ||||||
|     t_scatter+= usecond() - t; |  | ||||||
|     t_tot+=usecond(); |  | ||||||
|  |  | ||||||
|     std::cout << GridLogPerformance << "PaddedCell::Expand new timings: gather :" << t_gather/1000  << "ms"<<std::endl; |  | ||||||
|     std::cout << GridLogPerformance << "PaddedCell::Expand new timings: scatter:" << t_scatter/1000   << "ms"<<std::endl; |  | ||||||
|     std::cout << GridLogPerformance << "PaddedCell::Expand new timings: copy   :" << t_copy/1000      << "ms"<<std::endl; |  | ||||||
|     std::cout << GridLogPerformance << "PaddedCell::Expand new timings: comms  :" << t_comms/1000     << "ms"<<std::endl; |  | ||||||
|     std::cout << GridLogPerformance << "PaddedCell::Expand new timings: total  :" << t_tot/1000     << "ms"<<std::endl; |  | ||||||
|     std::cout << GridLogPerformance << "PaddedCell::Expand new timings: gather :" << depth*4.0*bytes/t_gather << "MB/s"<<std::endl; |  | ||||||
|     std::cout << GridLogPerformance << "PaddedCell::Expand new timings: scatter:" << depth*4.0*bytes/t_scatter<< "MB/s"<<std::endl; |  | ||||||
|     std::cout << GridLogPerformance << "PaddedCell::Expand new timings: comms  :" << (RealD)4.0*bytes/t_comms   << "MB/s"<<std::endl; |  | ||||||
|     std::cout << GridLogPerformance << "PaddedCell::Expand new timings: face bytes  :" << depth*bytes/1e6 << "MB"<<std::endl; |  | ||||||
|   } |  | ||||||
|    |  | ||||||
| }; | }; | ||||||
|   |   | ||||||
|  |  | ||||||
| NAMESPACE_END(Grid); | NAMESPACE_END(Grid); | ||||||
|  |  | ||||||
|  |  | ||||||
|   | |||||||
| @@ -179,11 +179,11 @@ extern GridLogger GridLogSolver; | |||||||
| extern GridLogger GridLogError; | extern GridLogger GridLogError; | ||||||
| extern GridLogger GridLogWarning; | extern GridLogger GridLogWarning; | ||||||
| extern GridLogger GridLogMessage; | extern GridLogger GridLogMessage; | ||||||
| extern GridLogger GridLogDebug; | extern GridLogger GridLogDebug  ; | ||||||
| extern GridLogger GridLogPerformance; | extern GridLogger GridLogPerformance; | ||||||
| extern GridLogger GridLogDslash; | extern GridLogger GridLogDslash; | ||||||
| extern GridLogger GridLogIterative; | extern GridLogger GridLogIterative  ; | ||||||
| extern GridLogger GridLogIntegrator; | extern GridLogger GridLogIntegrator  ; | ||||||
| extern GridLogger GridLogHMC; | extern GridLogger GridLogHMC; | ||||||
| extern GridLogger GridLogMemory; | extern GridLogger GridLogMemory; | ||||||
| extern GridLogger GridLogTracing; | extern GridLogger GridLogTracing; | ||||||
| @@ -191,41 +191,6 @@ extern Colours    GridLogColours; | |||||||
|  |  | ||||||
| std::string demangle(const char* name) ; | std::string demangle(const char* name) ; | ||||||
|  |  | ||||||
| template<typename... Args> |  | ||||||
| inline std::string sjoin(Args&&... args) noexcept { |  | ||||||
|     std::ostringstream msg; |  | ||||||
|     (msg << ... << args); |  | ||||||
|     return msg.str(); |  | ||||||
| } |  | ||||||
|  |  | ||||||
| /*!  @brief make log messages work like python print */ |  | ||||||
| template <typename... Args> |  | ||||||
| inline void Grid_log(Args&&... args) { |  | ||||||
|     std::string msg = sjoin(std::forward<Args>(args)...); |  | ||||||
|     std::cout << GridLogMessage << msg << std::endl; |  | ||||||
| } |  | ||||||
|  |  | ||||||
| /*!  @brief make warning messages work like python print */ |  | ||||||
| template <typename... Args> |  | ||||||
| inline void Grid_warn(Args&&... args) { |  | ||||||
|     std::string msg = sjoin(std::forward<Args>(args)...); |  | ||||||
|     std::cout << "\033[33m" << GridLogWarning << msg << "\033[0m" << std::endl; |  | ||||||
| } |  | ||||||
|  |  | ||||||
| /*!  @brief make error messages work like python print */ |  | ||||||
| template <typename... Args> |  | ||||||
| inline void Grid_error(Args&&... args) { |  | ||||||
|     std::string msg = sjoin(std::forward<Args>(args)...); |  | ||||||
|     std::cout << "\033[31m" << GridLogError << msg << "\033[0m" << std::endl; |  | ||||||
| } |  | ||||||
|  |  | ||||||
| /*!  @brief make pass messages work like python print */ |  | ||||||
| template <typename... Args> |  | ||||||
| inline void Grid_pass(Args&&... args) { |  | ||||||
|     std::string msg = sjoin(std::forward<Args>(args)...); |  | ||||||
|     std::cout << "\033[32m" << GridLogMessage << msg << "\033[0m" << std::endl; |  | ||||||
| } |  | ||||||
|  |  | ||||||
| #define _NBACKTRACE (256) | #define _NBACKTRACE (256) | ||||||
| extern void * Grid_backtrace_buffer[_NBACKTRACE]; | extern void * Grid_backtrace_buffer[_NBACKTRACE]; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -165,7 +165,7 @@ class BinaryIO { | |||||||
| 	 * FIXME -- 128^3 x 256 x 16 will overflow. | 	 * FIXME -- 128^3 x 256 x 16 will overflow. | ||||||
| 	 */ | 	 */ | ||||||
| 	 | 	 | ||||||
| 	int64_t global_site; | 	int global_site; | ||||||
|  |  | ||||||
| 	Lexicographic::CoorFromIndex(coor,local_site,local_vol); | 	Lexicographic::CoorFromIndex(coor,local_site,local_vol); | ||||||
|  |  | ||||||
| @@ -175,8 +175,8 @@ class BinaryIO { | |||||||
|  |  | ||||||
| 	Lexicographic::IndexFromCoor(coor,global_site,global_vol); | 	Lexicographic::IndexFromCoor(coor,global_site,global_vol); | ||||||
|  |  | ||||||
| 	uint64_t gsite29   = global_site%29; | 	uint32_t gsite29   = global_site%29; | ||||||
| 	uint64_t gsite31   = global_site%31; | 	uint32_t gsite31   = global_site%31; | ||||||
| 	 | 	 | ||||||
| 	site_crc = crc32(0,(unsigned char *)site_buf,sizeof(fobj)); | 	site_crc = crc32(0,(unsigned char *)site_buf,sizeof(fobj)); | ||||||
| 	//	std::cout << "Site "<<local_site << " crc "<<std::hex<<site_crc<<std::dec<<std::endl; | 	//	std::cout << "Site "<<local_site << " crc "<<std::hex<<site_crc<<std::dec<<std::endl; | ||||||
| @@ -545,9 +545,7 @@ class BinaryIO { | |||||||
| 				       const std::string &format, | 				       const std::string &format, | ||||||
| 				       uint32_t &nersc_csum, | 				       uint32_t &nersc_csum, | ||||||
| 				       uint32_t &scidac_csuma, | 				       uint32_t &scidac_csuma, | ||||||
| 				       uint32_t &scidac_csumb, | 				       uint32_t &scidac_csumb) | ||||||
| 				       int control=BINARYIO_LEXICOGRAPHIC |  | ||||||
| 				       ) |  | ||||||
|   { |   { | ||||||
|     typedef typename vobj::scalar_object sobj; |     typedef typename vobj::scalar_object sobj; | ||||||
|     typedef typename vobj::Realified::scalar_type word;    word w=0; |     typedef typename vobj::Realified::scalar_type word;    word w=0; | ||||||
| @@ -558,7 +556,7 @@ class BinaryIO { | |||||||
|     std::vector<sobj> scalardata(lsites);  |     std::vector<sobj> scalardata(lsites);  | ||||||
|     std::vector<fobj>     iodata(lsites); // Munge, checksum, byte order in here |     std::vector<fobj>     iodata(lsites); // Munge, checksum, byte order in here | ||||||
|      |      | ||||||
|     IOobject(w,grid,iodata,file,offset,format,BINARYIO_READ|control, |     IOobject(w,grid,iodata,file,offset,format,BINARYIO_READ|BINARYIO_LEXICOGRAPHIC, | ||||||
| 	     nersc_csum,scidac_csuma,scidac_csumb); | 	     nersc_csum,scidac_csuma,scidac_csumb); | ||||||
|  |  | ||||||
|     GridStopWatch timer;  |     GridStopWatch timer;  | ||||||
| @@ -584,8 +582,7 @@ class BinaryIO { | |||||||
| 					  const std::string &format, | 					  const std::string &format, | ||||||
| 					  uint32_t &nersc_csum, | 					  uint32_t &nersc_csum, | ||||||
| 					  uint32_t &scidac_csuma, | 					  uint32_t &scidac_csuma, | ||||||
| 					  uint32_t &scidac_csumb, | 					  uint32_t &scidac_csumb) | ||||||
| 					  int control=BINARYIO_LEXICOGRAPHIC) |  | ||||||
|   { |   { | ||||||
|     typedef typename vobj::scalar_object sobj; |     typedef typename vobj::scalar_object sobj; | ||||||
|     typedef typename vobj::Realified::scalar_type word;    word w=0; |     typedef typename vobj::Realified::scalar_type word;    word w=0; | ||||||
| @@ -610,7 +607,7 @@ class BinaryIO { | |||||||
|     while (attemptsLeft >= 0) |     while (attemptsLeft >= 0) | ||||||
|     { |     { | ||||||
|       grid->Barrier(); |       grid->Barrier(); | ||||||
|       IOobject(w,grid,iodata,file,offset,format,BINARYIO_WRITE|control, |       IOobject(w,grid,iodata,file,offset,format,BINARYIO_WRITE|BINARYIO_LEXICOGRAPHIC, | ||||||
| 	             nersc_csum,scidac_csuma,scidac_csumb); | 	             nersc_csum,scidac_csuma,scidac_csumb); | ||||||
|       if (checkWrite) |       if (checkWrite) | ||||||
|       { |       { | ||||||
| @@ -620,7 +617,7 @@ class BinaryIO { | |||||||
|  |  | ||||||
|         std::cout << GridLogMessage << "writeLatticeObject: read back object" << std::endl; |         std::cout << GridLogMessage << "writeLatticeObject: read back object" << std::endl; | ||||||
|         grid->Barrier(); |         grid->Barrier(); | ||||||
|         IOobject(w,grid,ckiodata,file,ckoffset,format,BINARYIO_READ|control, |         IOobject(w,grid,ckiodata,file,ckoffset,format,BINARYIO_READ|BINARYIO_LEXICOGRAPHIC, | ||||||
| 	               cknersc_csum,ckscidac_csuma,ckscidac_csumb); | 	               cknersc_csum,ckscidac_csuma,ckscidac_csumb); | ||||||
|         if ((cknersc_csum != nersc_csum) or (ckscidac_csuma != scidac_csuma) or (ckscidac_csumb != scidac_csumb)) |         if ((cknersc_csum != nersc_csum) or (ckscidac_csuma != scidac_csuma) or (ckscidac_csumb != scidac_csumb)) | ||||||
|         { |         { | ||||||
|   | |||||||
| @@ -162,14 +162,8 @@ template<class vobj> void ScidacMetaData(Lattice<vobj> & field, | |||||||
|  { |  { | ||||||
|    uint32_t scidac_checksuma = stoull(scidacChecksum_.suma,0,16); |    uint32_t scidac_checksuma = stoull(scidacChecksum_.suma,0,16); | ||||||
|    uint32_t scidac_checksumb = stoull(scidacChecksum_.sumb,0,16); |    uint32_t scidac_checksumb = stoull(scidacChecksum_.sumb,0,16); | ||||||
|    std::cout << GridLogMessage << " scidacChecksumVerify computed "<<scidac_csuma<<" expected "<<scidac_checksuma <<std::endl; |    if ( scidac_csuma !=scidac_checksuma) return 0; | ||||||
|    std::cout << GridLogMessage << " scidacChecksumVerify computed "<<scidac_csumb<<" expected "<<scidac_checksumb <<std::endl; |    if ( scidac_csumb !=scidac_checksumb) return 0; | ||||||
|    if ( scidac_csuma !=scidac_checksuma) { |  | ||||||
|      return 0; |  | ||||||
|    }; |  | ||||||
|    if ( scidac_csumb !=scidac_checksumb) { |  | ||||||
|      return 0; |  | ||||||
|    }; |  | ||||||
|    return 1; |    return 1; | ||||||
|  } |  } | ||||||
|  |  | ||||||
| @@ -212,7 +206,7 @@ class GridLimeReader : public BinaryIO { | |||||||
|   // Read a generic lattice field and verify checksum |   // Read a generic lattice field and verify checksum | ||||||
|   //////////////////////////////////////////// |   //////////////////////////////////////////// | ||||||
|   template<class vobj> |   template<class vobj> | ||||||
|   void readLimeLatticeBinaryObject(Lattice<vobj> &field,std::string record_name,int control=BINARYIO_LEXICOGRAPHIC) |   void readLimeLatticeBinaryObject(Lattice<vobj> &field,std::string record_name) | ||||||
|   { |   { | ||||||
|     typedef typename vobj::scalar_object sobj; |     typedef typename vobj::scalar_object sobj; | ||||||
|     scidacChecksum scidacChecksum_; |     scidacChecksum scidacChecksum_; | ||||||
| @@ -244,7 +238,7 @@ class GridLimeReader : public BinaryIO { | |||||||
| 	uint64_t offset= ftello(File); | 	uint64_t offset= ftello(File); | ||||||
| 	//	std::cout << " ReadLatticeObject from offset "<<offset << std::endl; | 	//	std::cout << " ReadLatticeObject from offset "<<offset << std::endl; | ||||||
| 	BinarySimpleMunger<sobj,sobj> munge; | 	BinarySimpleMunger<sobj,sobj> munge; | ||||||
| 	BinaryIO::readLatticeObject< vobj, sobj >(field, filename, munge, offset, format,nersc_csum,scidac_csuma,scidac_csumb,control); | 	BinaryIO::readLatticeObject< vobj, sobj >(field, filename, munge, offset, format,nersc_csum,scidac_csuma,scidac_csumb); | ||||||
| 	std::cout << GridLogMessage << "SciDAC checksum A " << std::hex << scidac_csuma << std::dec << std::endl; | 	std::cout << GridLogMessage << "SciDAC checksum A " << std::hex << scidac_csuma << std::dec << std::endl; | ||||||
| 	std::cout << GridLogMessage << "SciDAC checksum B " << std::hex << scidac_csumb << std::dec << std::endl; | 	std::cout << GridLogMessage << "SciDAC checksum B " << std::hex << scidac_csumb << std::dec << std::endl; | ||||||
| 	///////////////////////////////////////////// | 	///////////////////////////////////////////// | ||||||
| @@ -414,7 +408,7 @@ class GridLimeWriter : public BinaryIO | |||||||
|   // in communicator used by the field.Grid() |   // in communicator used by the field.Grid() | ||||||
|   //////////////////////////////////////////////////// |   //////////////////////////////////////////////////// | ||||||
|   template<class vobj> |   template<class vobj> | ||||||
|   void writeLimeLatticeBinaryObject(Lattice<vobj> &field,std::string record_name,int control=BINARYIO_LEXICOGRAPHIC) |   void writeLimeLatticeBinaryObject(Lattice<vobj> &field,std::string record_name) | ||||||
|   { |   { | ||||||
|     //////////////////////////////////////////////////////////////////// |     //////////////////////////////////////////////////////////////////// | ||||||
|     // NB: FILE and iostream are jointly writing disjoint sequences in the |     // NB: FILE and iostream are jointly writing disjoint sequences in the | ||||||
| @@ -465,7 +459,7 @@ class GridLimeWriter : public BinaryIO | |||||||
|     /////////////////////////////////////////// |     /////////////////////////////////////////// | ||||||
|     std::string format = getFormatString<vobj>(); |     std::string format = getFormatString<vobj>(); | ||||||
|     BinarySimpleMunger<sobj,sobj> munge; |     BinarySimpleMunger<sobj,sobj> munge; | ||||||
|     BinaryIO::writeLatticeObject<vobj,sobj>(field, filename, munge, offset1, format,nersc_csum,scidac_csuma,scidac_csumb,control); |     BinaryIO::writeLatticeObject<vobj,sobj>(field, filename, munge, offset1, format,nersc_csum,scidac_csuma,scidac_csumb); | ||||||
|  |  | ||||||
|     /////////////////////////////////////////// |     /////////////////////////////////////////// | ||||||
|     // Wind forward and close the record |     // Wind forward and close the record | ||||||
| @@ -518,8 +512,7 @@ class ScidacWriter : public GridLimeWriter { | |||||||
|   //////////////////////////////////////////////// |   //////////////////////////////////////////////// | ||||||
|   template <class vobj, class userRecord> |   template <class vobj, class userRecord> | ||||||
|   void writeScidacFieldRecord(Lattice<vobj> &field,userRecord _userRecord, |   void writeScidacFieldRecord(Lattice<vobj> &field,userRecord _userRecord, | ||||||
|                               const unsigned int recordScientificPrec = 0, |                               const unsigned int recordScientificPrec = 0)  | ||||||
| 			      int control=BINARYIO_LEXICOGRAPHIC) |  | ||||||
|   { |   { | ||||||
|     GridBase * grid = field.Grid(); |     GridBase * grid = field.Grid(); | ||||||
|  |  | ||||||
| @@ -541,7 +534,7 @@ class ScidacWriter : public GridLimeWriter { | |||||||
|       writeLimeObject(0,0,_scidacRecord,_scidacRecord.SerialisableClassName(),std::string(SCIDAC_PRIVATE_RECORD_XML)); |       writeLimeObject(0,0,_scidacRecord,_scidacRecord.SerialisableClassName(),std::string(SCIDAC_PRIVATE_RECORD_XML)); | ||||||
|     } |     } | ||||||
|     // Collective call |     // Collective call | ||||||
|     writeLimeLatticeBinaryObject(field,std::string(ILDG_BINARY_DATA),control);      // Closes message with checksum |     writeLimeLatticeBinaryObject(field,std::string(ILDG_BINARY_DATA));      // Closes message with checksum | ||||||
|   } |   } | ||||||
| }; | }; | ||||||
|  |  | ||||||
| @@ -560,8 +553,7 @@ class ScidacReader : public GridLimeReader { | |||||||
|   // Write generic lattice field in scidac format |   // Write generic lattice field in scidac format | ||||||
|   //////////////////////////////////////////////// |   //////////////////////////////////////////////// | ||||||
|   template <class vobj, class userRecord> |   template <class vobj, class userRecord> | ||||||
|   void readScidacFieldRecord(Lattice<vobj> &field,userRecord &_userRecord, |   void readScidacFieldRecord(Lattice<vobj> &field,userRecord &_userRecord)  | ||||||
| 			     int control=BINARYIO_LEXICOGRAPHIC)  |  | ||||||
|   { |   { | ||||||
|     typedef typename vobj::scalar_object sobj; |     typedef typename vobj::scalar_object sobj; | ||||||
|     GridBase * grid = field.Grid(); |     GridBase * grid = field.Grid(); | ||||||
| @@ -579,7 +571,7 @@ class ScidacReader : public GridLimeReader { | |||||||
|     readLimeObject(header ,std::string("FieldMetaData"),std::string(GRID_FORMAT)); // Open message  |     readLimeObject(header ,std::string("FieldMetaData"),std::string(GRID_FORMAT)); // Open message  | ||||||
|     readLimeObject(_userRecord,_userRecord.SerialisableClassName(),std::string(SCIDAC_RECORD_XML)); |     readLimeObject(_userRecord,_userRecord.SerialisableClassName(),std::string(SCIDAC_RECORD_XML)); | ||||||
|     readLimeObject(_scidacRecord,_scidacRecord.SerialisableClassName(),std::string(SCIDAC_PRIVATE_RECORD_XML)); |     readLimeObject(_scidacRecord,_scidacRecord.SerialisableClassName(),std::string(SCIDAC_PRIVATE_RECORD_XML)); | ||||||
|     readLimeLatticeBinaryObject(field,std::string(ILDG_BINARY_DATA),control); |     readLimeLatticeBinaryObject(field,std::string(ILDG_BINARY_DATA)); | ||||||
|   } |   } | ||||||
|   void skipPastBinaryRecord(void) { |   void skipPastBinaryRecord(void) { | ||||||
|     std::string rec_name(ILDG_BINARY_DATA); |     std::string rec_name(ILDG_BINARY_DATA); | ||||||
|   | |||||||
| @@ -34,7 +34,7 @@ class GridTracer { | |||||||
| }; | }; | ||||||
| inline void tracePush(const char *name) { roctxRangePushA(name); } | inline void tracePush(const char *name) { roctxRangePushA(name); } | ||||||
| inline void tracePop(const char *name) { roctxRangePop(); } | inline void tracePop(const char *name) { roctxRangePop(); } | ||||||
| inline int  traceStart(const char *name) { return roctxRangeStart(name); } | inline int  traceStart(const char *name) { roctxRangeStart(name); } | ||||||
| inline void traceStop(int ID) { roctxRangeStop(ID); } | inline void traceStop(int ID) { roctxRangeStop(ID); } | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
|   | |||||||
| @@ -63,9 +63,7 @@ public: | |||||||
|   virtual void MooeeDag(const FermionField &in, FermionField &out) ; |   virtual void MooeeDag(const FermionField &in, FermionField &out) ; | ||||||
|   virtual void MooeeInv(const FermionField &in, FermionField &out) ; |   virtual void MooeeInv(const FermionField &in, FermionField &out) ; | ||||||
|   virtual void MooeeInvDag(const FermionField &in, FermionField &out) ; |   virtual void MooeeInvDag(const FermionField &in, FermionField &out) ; | ||||||
|   virtual void M(const FermionField &in, FermionField &out) ; |  | ||||||
|   virtual void Mdag(const FermionField &in, FermionField &out) ; |  | ||||||
|    |  | ||||||
| private: | private: | ||||||
|   RealD mu; // TwistedMass parameter |   RealD mu; // TwistedMass parameter | ||||||
|  |  | ||||||
|   | |||||||
| @@ -280,16 +280,20 @@ void StaggeredKernels<Impl>::DhopImproved(StencilImpl &st, LebesgueOrder &lo, | |||||||
|  |  | ||||||
|   if( interior && exterior ) {  |   if( interior && exterior ) {  | ||||||
|     if (Opt == OptGeneric    ) { KERNEL_CALL(DhopSiteGeneric,1); return;} |     if (Opt == OptGeneric    ) { KERNEL_CALL(DhopSiteGeneric,1); return;} | ||||||
|     if (Opt == OptHandUnroll ) { KERNEL_CALL(DhopSiteHand,1);    return;} |  | ||||||
| #ifndef GRID_CUDA | #ifndef GRID_CUDA | ||||||
|  |     if (Opt == OptHandUnroll ) { KERNEL_CALL(DhopSiteHand,1);    return;} | ||||||
|     if (Opt == OptInlineAsm  ) {  ASM_CALL(DhopSiteAsm);     return;} |     if (Opt == OptInlineAsm  ) {  ASM_CALL(DhopSiteAsm);     return;} | ||||||
| #endif | #endif | ||||||
|   } else if( interior ) { |   } else if( interior ) { | ||||||
|     if (Opt == OptGeneric    ) { KERNEL_CALL(DhopSiteGenericInt,1); return;} |     if (Opt == OptGeneric    ) { KERNEL_CALL(DhopSiteGenericInt,1); return;} | ||||||
|  | #ifndef GRID_CUDA | ||||||
|     if (Opt == OptHandUnroll ) { KERNEL_CALL(DhopSiteHandInt,1);    return;} |     if (Opt == OptHandUnroll ) { KERNEL_CALL(DhopSiteHandInt,1);    return;} | ||||||
|  | #endif | ||||||
|   } else if( exterior ) {  |   } else if( exterior ) {  | ||||||
|     if (Opt == OptGeneric    ) { KERNEL_CALL(DhopSiteGenericExt,1); return;} |     if (Opt == OptGeneric    ) { KERNEL_CALL(DhopSiteGenericExt,1); return;} | ||||||
|  | #ifndef GRID_CUDA | ||||||
|     if (Opt == OptHandUnroll ) { KERNEL_CALL(DhopSiteHandExt,1);    return;} |     if (Opt == OptHandUnroll ) { KERNEL_CALL(DhopSiteHandExt,1);    return;} | ||||||
|  | #endif | ||||||
|   } |   } | ||||||
|   assert(0 && " Kernel optimisation case not covered "); |   assert(0 && " Kernel optimisation case not covered "); | ||||||
| } | } | ||||||
| @@ -318,13 +322,19 @@ void StaggeredKernels<Impl>::DhopNaive(StencilImpl &st, LebesgueOrder &lo, | |||||||
|    |    | ||||||
|   if( interior && exterior ) {  |   if( interior && exterior ) {  | ||||||
|     if (Opt == OptGeneric    ) { KERNEL_CALL(DhopSiteGeneric,0); return;} |     if (Opt == OptGeneric    ) { KERNEL_CALL(DhopSiteGeneric,0); return;} | ||||||
|  | #ifndef GRID_CUDA | ||||||
|     if (Opt == OptHandUnroll ) { KERNEL_CALL(DhopSiteHand,0);    return;} |     if (Opt == OptHandUnroll ) { KERNEL_CALL(DhopSiteHand,0);    return;} | ||||||
|  | #endif | ||||||
|   } else if( interior ) { |   } else if( interior ) { | ||||||
|     if (Opt == OptGeneric    ) { KERNEL_CALL(DhopSiteGenericInt,0); return;} |     if (Opt == OptGeneric    ) { KERNEL_CALL(DhopSiteGenericInt,0); return;} | ||||||
|  | #ifndef GRID_CUDA | ||||||
|     if (Opt == OptHandUnroll ) { KERNEL_CALL(DhopSiteHandInt,0);    return;} |     if (Opt == OptHandUnroll ) { KERNEL_CALL(DhopSiteHandInt,0);    return;} | ||||||
|  | #endif | ||||||
|   } else if( exterior ) {  |   } else if( exterior ) {  | ||||||
|     if (Opt == OptGeneric    ) { KERNEL_CALL(DhopSiteGenericExt,0); return;} |     if (Opt == OptGeneric    ) { KERNEL_CALL(DhopSiteGenericExt,0); return;} | ||||||
|  | #ifndef GRID_CUDA | ||||||
|     if (Opt == OptHandUnroll ) { KERNEL_CALL(DhopSiteHandExt,0);    return;} |     if (Opt == OptHandUnroll ) { KERNEL_CALL(DhopSiteHandExt,0);    return;} | ||||||
|  | #endif | ||||||
|   } |   } | ||||||
| } | } | ||||||
|  |  | ||||||
|   | |||||||
| @@ -462,7 +462,6 @@ void WilsonKernels<Impl>::DhopKernel(int Opt,StencilImpl &st,  DoubledGaugeField | |||||||
|     autoView(st_v , st,AcceleratorRead); |     autoView(st_v , st,AcceleratorRead); | ||||||
|  |  | ||||||
|    if( interior && exterior ) { |    if( interior && exterior ) { | ||||||
|      acceleratorFenceComputeStream(); |  | ||||||
|      if (Opt == WilsonKernelsStatic::OptGeneric    ) { KERNEL_CALL(GenericDhopSite); return;} |      if (Opt == WilsonKernelsStatic::OptGeneric    ) { KERNEL_CALL(GenericDhopSite); return;} | ||||||
|      if (Opt == WilsonKernelsStatic::OptHandUnroll ) { KERNEL_CALL(HandDhopSite);    return;} |      if (Opt == WilsonKernelsStatic::OptHandUnroll ) { KERNEL_CALL(HandDhopSite);    return;} | ||||||
| #ifndef GRID_CUDA | #ifndef GRID_CUDA | ||||||
| @@ -496,7 +495,6 @@ void WilsonKernels<Impl>::DhopKernel(int Opt,StencilImpl &st,  DoubledGaugeField | |||||||
|     autoView(st_v ,st,AcceleratorRead); |     autoView(st_v ,st,AcceleratorRead); | ||||||
|  |  | ||||||
|    if( interior && exterior ) { |    if( interior && exterior ) { | ||||||
|      acceleratorFenceComputeStream(); |  | ||||||
|      if (Opt == WilsonKernelsStatic::OptGeneric    ) { KERNEL_CALL(GenericDhopSiteDag); return;} |      if (Opt == WilsonKernelsStatic::OptGeneric    ) { KERNEL_CALL(GenericDhopSiteDag); return;} | ||||||
|      if (Opt == WilsonKernelsStatic::OptHandUnroll ) { KERNEL_CALL(HandDhopSiteDag);    return;} |      if (Opt == WilsonKernelsStatic::OptHandUnroll ) { KERNEL_CALL(HandDhopSiteDag);    return;} | ||||||
| #ifndef GRID_CUDA | #ifndef GRID_CUDA | ||||||
|   | |||||||
| @@ -93,25 +93,5 @@ void WilsonTMFermion<Impl>::MooeeInvDag(const FermionField &in, FermionField &ou | |||||||
|   RealD b    = tm /sq; |   RealD b    = tm /sq; | ||||||
|   axpibg5x(out,in,a,b); |   axpibg5x(out,in,a,b); | ||||||
| } | } | ||||||
| template<class Impl> |  | ||||||
| void WilsonTMFermion<Impl>::M(const FermionField &in, FermionField &out) { |  | ||||||
|   out.Checkerboard() = in.Checkerboard(); |  | ||||||
|   this->Dhop(in, out, DaggerNo); |  | ||||||
|   FermionField tmp(out.Grid()); |  | ||||||
|   RealD a = 4.0+this->mass; |  | ||||||
|   RealD b = this->mu; |  | ||||||
|   axpibg5x(tmp,in,a,b); |  | ||||||
|   axpy(out, 1.0, tmp, out); |  | ||||||
| } |  | ||||||
| template<class Impl> |  | ||||||
| void WilsonTMFermion<Impl>::Mdag(const FermionField &in, FermionField &out) { |  | ||||||
|   out.Checkerboard() = in.Checkerboard(); |  | ||||||
|   this->Dhop(in, out, DaggerYes); |  | ||||||
|   FermionField tmp(out.Grid()); |  | ||||||
|   RealD a = 4.0+this->mass; |  | ||||||
|   RealD b = -this->mu; |  | ||||||
|   axpibg5x(tmp,in,a,b); |  | ||||||
|   axpy(out, 1.0, tmp, out); |  | ||||||
| } |  | ||||||
|  |  | ||||||
| NAMESPACE_END(Grid); | NAMESPACE_END(Grid); | ||||||
|   | |||||||
| @@ -86,8 +86,13 @@ public: | |||||||
|     assert(ForceE.Checkerboard()==Even); |     assert(ForceE.Checkerboard()==Even); | ||||||
|     assert(ForceO.Checkerboard()==Odd); |     assert(ForceO.Checkerboard()==Odd); | ||||||
|  |  | ||||||
|  | #if defined(GRID_CUDA) || defined(GRID_HIP)  || defined(GRID_SYCL) | ||||||
|  |     acceleratorSetCheckerboard(Force,ForceE); | ||||||
|  |     acceleratorSetCheckerboard(Force,ForceO); | ||||||
|  | #else | ||||||
|     setCheckerboard(Force,ForceE);  |     setCheckerboard(Force,ForceE);  | ||||||
|     setCheckerboard(Force,ForceO); |     setCheckerboard(Force,ForceO); | ||||||
|  | #endif | ||||||
|     Force=-Force; |     Force=-Force; | ||||||
|  |  | ||||||
|     delete forcecb; |     delete forcecb; | ||||||
| @@ -130,8 +135,13 @@ public: | |||||||
|     assert(ForceE.Checkerboard()==Even); |     assert(ForceE.Checkerboard()==Even); | ||||||
|     assert(ForceO.Checkerboard()==Odd); |     assert(ForceO.Checkerboard()==Odd); | ||||||
|  |  | ||||||
|  | #if defined(GRID_CUDA) || defined(GRID_HIP)  || defined(GRID_SYCL) | ||||||
|  |     acceleratorSetCheckerboard(Force,ForceE); | ||||||
|  |     acceleratorSetCheckerboard(Force,ForceO); | ||||||
|  | #else | ||||||
|     setCheckerboard(Force,ForceE);  |     setCheckerboard(Force,ForceE);  | ||||||
|     setCheckerboard(Force,ForceO); |     setCheckerboard(Force,ForceO); | ||||||
|  | #endif | ||||||
|     Force=-Force; |     Force=-Force; | ||||||
|  |  | ||||||
|     delete forcecb; |     delete forcecb; | ||||||
|   | |||||||
| @@ -90,7 +90,6 @@ public: | |||||||
|         exit(1); |         exit(1); | ||||||
|       } |       } | ||||||
|       Parameters.StartingType = arg; |       Parameters.StartingType = arg; | ||||||
|       std::cout <<GridLogMessage << " GenericHMCrunner --StartingType "<<arg<<std::endl; |  | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     if (GridCmdOptionExists(argv, argv + argc, "--StartingTrajectory")) { |     if (GridCmdOptionExists(argv, argv + argc, "--StartingTrajectory")) { | ||||||
| @@ -98,7 +97,6 @@ public: | |||||||
|       std::vector<int> ivec(0); |       std::vector<int> ivec(0); | ||||||
|       GridCmdOptionIntVector(arg, ivec); |       GridCmdOptionIntVector(arg, ivec); | ||||||
|       Parameters.StartTrajectory = ivec[0]; |       Parameters.StartTrajectory = ivec[0]; | ||||||
|       std::cout <<GridLogMessage << " GenericHMCrunner --StartingTrajectory "<<ivec[0]<<std::endl; |  | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     if (GridCmdOptionExists(argv, argv + argc, "--Trajectories")) { |     if (GridCmdOptionExists(argv, argv + argc, "--Trajectories")) { | ||||||
| @@ -106,7 +104,6 @@ public: | |||||||
|       std::vector<int> ivec(0); |       std::vector<int> ivec(0); | ||||||
|       GridCmdOptionIntVector(arg, ivec); |       GridCmdOptionIntVector(arg, ivec); | ||||||
|       Parameters.Trajectories = ivec[0]; |       Parameters.Trajectories = ivec[0]; | ||||||
|       std::cout << GridLogMessage<<" GenericHMCrunner Command Line --Trajectories "<<ivec[0]<<std::endl; |  | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     if (GridCmdOptionExists(argv, argv + argc, "--Thermalizations")) { |     if (GridCmdOptionExists(argv, argv + argc, "--Thermalizations")) { | ||||||
| @@ -114,7 +111,6 @@ public: | |||||||
|       std::vector<int> ivec(0); |       std::vector<int> ivec(0); | ||||||
|       GridCmdOptionIntVector(arg, ivec); |       GridCmdOptionIntVector(arg, ivec); | ||||||
|       Parameters.NoMetropolisUntil = ivec[0]; |       Parameters.NoMetropolisUntil = ivec[0]; | ||||||
|       std::cout << GridLogMessage<<" GenericHMCrunner --Thermalizations "<<ivec[0]<<std::endl; |  | ||||||
|     } |     } | ||||||
|     if (GridCmdOptionExists(argv, argv + argc, "--ParameterFile")) { |     if (GridCmdOptionExists(argv, argv + argc, "--ParameterFile")) { | ||||||
|       arg = GridCmdOptionPayload(argv, argv + argc, "--ParameterFile"); |       arg = GridCmdOptionPayload(argv, argv + argc, "--ParameterFile"); | ||||||
|   | |||||||
| @@ -137,11 +137,9 @@ public: | |||||||
|  |  | ||||||
|       double start_force = usecond(); |       double start_force = usecond(); | ||||||
|  |  | ||||||
|       MemoryManager::Print(); |  | ||||||
|       as[level].actions.at(a)->deriv_timer_start(); |       as[level].actions.at(a)->deriv_timer_start(); | ||||||
|       as[level].actions.at(a)->deriv(Smearer, force);  // deriv should NOT include Ta |       as[level].actions.at(a)->deriv(Smearer, force);  // deriv should NOT include Ta | ||||||
|       as[level].actions.at(a)->deriv_timer_stop(); |       as[level].actions.at(a)->deriv_timer_stop(); | ||||||
|       MemoryManager::Print(); |  | ||||||
|  |  | ||||||
|       auto name = as[level].actions.at(a)->action_name(); |       auto name = as[level].actions.at(a)->action_name(); | ||||||
|  |  | ||||||
| @@ -239,7 +237,7 @@ public: | |||||||
|  |  | ||||||
|     for (int level = 0; level < as.size(); ++level) { |     for (int level = 0; level < as.size(); ++level) { | ||||||
|       int multiplier = as.at(level).multiplier; |       int multiplier = as.at(level).multiplier; | ||||||
|       ActionLevel<Field, RepresentationPolicy> * Level = new ActionLevel<Field, RepresentationPolicy>(multiplier); |       ActionLevel<Field> * Level = new ActionLevel<Field>(multiplier); | ||||||
|       Level->push_back(new EmptyAction<Field>);  |       Level->push_back(new EmptyAction<Field>);  | ||||||
|       LevelForces.push_back(*Level); |       LevelForces.push_back(*Level); | ||||||
|       // does it copy by value or reference?? |       // does it copy by value or reference?? | ||||||
| @@ -248,11 +246,7 @@ public: | |||||||
|     } |     } | ||||||
|   }; |   }; | ||||||
|  |  | ||||||
|   virtual ~Integrator() |   virtual ~Integrator() {} | ||||||
|   { |  | ||||||
|     // Pain in the ass to clean up the Level pointers |  | ||||||
|     // Guido's design is at fault as per comment above in constructor |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|   virtual std::string integrator_name() = 0; |   virtual std::string integrator_name() = 0; | ||||||
|    |    | ||||||
| @@ -466,7 +460,6 @@ public: | |||||||
|     for (int level = 0; level < as.size(); ++level) { |     for (int level = 0; level < as.size(); ++level) { | ||||||
|       for (int actionID = 0; actionID < as[level].actions.size(); ++actionID) { |       for (int actionID = 0; actionID < as[level].actions.size(); ++actionID) { | ||||||
|  |  | ||||||
| 	MemoryManager::Print(); |  | ||||||
|         // get gauge field from the SmearingPolicy and |         // get gauge field from the SmearingPolicy and | ||||||
|         // based on the boolean is_smeared in actionID |         // based on the boolean is_smeared in actionID | ||||||
|         std::cout << GridLogMessage << "S [" << level << "][" << actionID << "] action eval " << std::endl; |         std::cout << GridLogMessage << "S [" << level << "][" << actionID << "] action eval " << std::endl; | ||||||
| @@ -475,7 +468,6 @@ public: | |||||||
|    	        as[level].actions.at(actionID)->S_timer_stop(); |    	        as[level].actions.at(actionID)->S_timer_stop(); | ||||||
|         std::cout << GridLogMessage << "S [" << level << "][" << actionID << "] H = " << Hterm << std::endl; |         std::cout << GridLogMessage << "S [" << level << "][" << actionID << "] H = " << Hterm << std::endl; | ||||||
|         H += Hterm; |         H += Hterm; | ||||||
| 	MemoryManager::Print(); |  | ||||||
|  |  | ||||||
|       } |       } | ||||||
|       as[level].apply(S_hireps, Representations, level, H); |       as[level].apply(S_hireps, Representations, level, H); | ||||||
|   | |||||||
| @@ -32,9 +32,7 @@ private: | |||||||
|   //  Smear_Stout<Gimpl> *StoutSmearing; |   //  Smear_Stout<Gimpl> *StoutSmearing; | ||||||
|   //  std::vector<GaugeField> SmearedSet; |   //  std::vector<GaugeField> SmearedSet; | ||||||
|    |    | ||||||
|   GridRedBlackCartesian * UrbGrid; // keep a copy of the redblack grid for life of object |  | ||||||
|   std::vector<LatticeLorentzComplex> masks; |   std::vector<LatticeLorentzComplex> masks; | ||||||
|   std::vector<int> cbs; |  | ||||||
|  |  | ||||||
|   typedef typename SU3Adjoint::AMatrix AdjMatrix; |   typedef typename SU3Adjoint::AMatrix AdjMatrix; | ||||||
|   typedef typename SU3Adjoint::LatticeAdjMatrix  AdjMatrixField; |   typedef typename SU3Adjoint::LatticeAdjMatrix  AdjMatrixField; | ||||||
| @@ -149,25 +147,6 @@ private: | |||||||
|     } |     } | ||||||
|     pokeLorentz(Fdet, Fdet_pol, nu); |     pokeLorentz(Fdet, Fdet_pol, nu); | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   void Compute_MpInvJx_dNxxdSy(int cb, |  | ||||||
| 			       const GaugeLinkField &PlaqL, |  | ||||||
| 			       const GaugeLinkField &PlaqR, |  | ||||||
| 			       AdjMatrixField MpInvJx, |  | ||||||
| 			       AdjVectorField &Fdet2 ) |  | ||||||
|   { |  | ||||||
|     GaugeLinkField PlaqLeo(UrbGrid); |  | ||||||
|     GaugeLinkField PlaqReo(UrbGrid); |  | ||||||
|     AdjMatrixField MpInvJxeo(UrbGrid); |  | ||||||
|     AdjVectorField Fdet2eo(UrbGrid); |  | ||||||
|     pickCheckerboard(cb,PlaqLeo,PlaqL); |  | ||||||
|     pickCheckerboard(cb,PlaqReo,PlaqR); |  | ||||||
|     pickCheckerboard(cb,MpInvJxeo,MpInvJx); |  | ||||||
|     Fdet2eo.Checkerboard()=cb; |  | ||||||
|     Compute_MpInvJx_dNxxdSy(PlaqLeo,PlaqReo,MpInvJxeo,Fdet2eo); |  | ||||||
|     setCheckerboard(Fdet2,Fdet2eo); |  | ||||||
|   } |  | ||||||
|    |  | ||||||
|   void Compute_MpInvJx_dNxxdSy(const GaugeLinkField &PlaqL,const GaugeLinkField &PlaqR, AdjMatrixField MpInvJx,AdjVectorField &Fdet2 ) |   void Compute_MpInvJx_dNxxdSy(const GaugeLinkField &PlaqL,const GaugeLinkField &PlaqR, AdjMatrixField MpInvJx,AdjVectorField &Fdet2 ) | ||||||
|   { |   { | ||||||
|     GaugeLinkField UtaU(PlaqL.Grid()); |     GaugeLinkField UtaU(PlaqL.Grid()); | ||||||
| @@ -299,9 +278,8 @@ public: | |||||||
|     //////////////////////////////////////////////////////////////////////////////// |     //////////////////////////////////////////////////////////////////////////////// | ||||||
|     // Mask the gauge field |     // Mask the gauge field | ||||||
|     //////////////////////////////////////////////////////////////////////////////// |     //////////////////////////////////////////////////////////////////////////////// | ||||||
|     int cb = cbs[smr]; |  | ||||||
|     auto mask=PeekIndex<LorentzIndex>(masks[smr],mu); // the cb mask |     auto mask=PeekIndex<LorentzIndex>(masks[smr],mu); // the cb mask | ||||||
|      |  | ||||||
|     Umsk = U; |     Umsk = U; | ||||||
|     ApplyMask(Umsk,smr); |     ApplyMask(Umsk,smr); | ||||||
|     Utmp = peekLorentz(Umsk,mu); |     Utmp = peekLorentz(Umsk,mu); | ||||||
| @@ -464,7 +442,7 @@ public: | |||||||
|     AdjMatrixField MpInvJx_nu(grid); |     AdjMatrixField MpInvJx_nu(grid); | ||||||
|     MpInvJx = (-1.0)*MpAdInv * JxAd;// rho is on the plaq factor |     MpInvJx = (-1.0)*MpAdInv * JxAd;// rho is on the plaq factor | ||||||
|  |  | ||||||
|     Compute_MpInvJx_dNxxdSy(cb,PlaqL,PlaqR,MpInvJx,FdetV); |     Compute_MpInvJx_dNxxdSy(PlaqL,PlaqR,MpInvJx,FdetV); | ||||||
|     Fdet2_mu=FdetV; |     Fdet2_mu=FdetV; | ||||||
|     Fdet1_mu=Zero(); |     Fdet1_mu=Zero(); | ||||||
|      |      | ||||||
| @@ -521,7 +499,7 @@ public: | |||||||
|  |  | ||||||
| 	time=-usecond(); | 	time=-usecond(); | ||||||
| 	PlaqR=(-1.0)*PlaqR; | 	PlaqR=(-1.0)*PlaqR; | ||||||
| 	Compute_MpInvJx_dNxxdSy(cb,PlaqL,PlaqR,MpInvJx,FdetV); | 	Compute_MpInvJx_dNxxdSy(PlaqL,PlaqR,MpInvJx,FdetV); | ||||||
| 	Fdet2_nu = FdetV; | 	Fdet2_nu = FdetV; | ||||||
| 	time+=usecond(); | 	time+=usecond(); | ||||||
| 	std::cout << GridLogMessage << "Compute_MpInvJx_dNxxSy (occurs 6x) took "<<time<< " us"<<std::endl; | 	std::cout << GridLogMessage << "Compute_MpInvJx_dNxxSy (occurs 6x) took "<<time<< " us"<<std::endl; | ||||||
| @@ -542,7 +520,7 @@ public: | |||||||
| 	 | 	 | ||||||
|  |  | ||||||
| 	MpInvJx_nu = Cshift(MpInvJx,mu,-1); | 	MpInvJx_nu = Cshift(MpInvJx,mu,-1); | ||||||
| 	Compute_MpInvJx_dNxxdSy(cb,PlaqL,PlaqR,MpInvJx_nu,FdetV); | 	Compute_MpInvJx_dNxxdSy(PlaqL,PlaqR,MpInvJx_nu,FdetV); | ||||||
| 	Fdet2_nu = Fdet2_nu+FdetV; | 	Fdet2_nu = Fdet2_nu+FdetV; | ||||||
| 	 | 	 | ||||||
| 	///////////////// -ve nu ///////////////// | 	///////////////// -ve nu ///////////////// | ||||||
| @@ -561,7 +539,7 @@ public: | |||||||
| 	Fdet1_nu = Fdet1_nu + transpose(Nxy)*dJdXe_nMpInv_y; | 	Fdet1_nu = Fdet1_nu + transpose(Nxy)*dJdXe_nMpInv_y; | ||||||
|  |  | ||||||
| 	MpInvJx_nu = Cshift(MpInvJx,nu,1); | 	MpInvJx_nu = Cshift(MpInvJx,nu,1); | ||||||
| 	Compute_MpInvJx_dNxxdSy(cb,PlaqL,PlaqR,MpInvJx_nu,FdetV); | 	Compute_MpInvJx_dNxxdSy(PlaqL,PlaqR,MpInvJx_nu,FdetV); | ||||||
| 	Fdet2_nu = Fdet2_nu+FdetV; | 	Fdet2_nu = Fdet2_nu+FdetV; | ||||||
| 	 | 	 | ||||||
| 	// x== | 	// x== | ||||||
| @@ -582,7 +560,7 @@ public: | |||||||
|  |  | ||||||
| 	MpInvJx_nu = Cshift(MpInvJx,mu,-1); | 	MpInvJx_nu = Cshift(MpInvJx,mu,-1); | ||||||
| 	MpInvJx_nu = Cshift(MpInvJx_nu,nu,1); | 	MpInvJx_nu = Cshift(MpInvJx_nu,nu,1); | ||||||
| 	Compute_MpInvJx_dNxxdSy(cb,PlaqL,PlaqR,MpInvJx_nu,FdetV); | 	Compute_MpInvJx_dNxxdSy(PlaqL,PlaqR,MpInvJx_nu,FdetV); | ||||||
| 	Fdet2_nu = Fdet2_nu+FdetV; | 	Fdet2_nu = Fdet2_nu+FdetV; | ||||||
|  |  | ||||||
| 	///////////////////////////////////////////////////////////////////// | 	///////////////////////////////////////////////////////////////////// | ||||||
| @@ -611,7 +589,7 @@ public: | |||||||
|  |  | ||||||
| 	MpInvJx_nu = Cshift(MpInvJx,nu,-1); | 	MpInvJx_nu = Cshift(MpInvJx,nu,-1); | ||||||
|  |  | ||||||
| 	Compute_MpInvJx_dNxxdSy(cb,PlaqL,PlaqR,MpInvJx_nu,FdetV); | 	Compute_MpInvJx_dNxxdSy(PlaqL,PlaqR,MpInvJx_nu,FdetV); | ||||||
| 	Fdet2_mu = Fdet2_mu+FdetV; | 	Fdet2_mu = Fdet2_mu+FdetV; | ||||||
|  |  | ||||||
| 	//  __ | 	//  __ | ||||||
| @@ -631,7 +609,7 @@ public: | |||||||
|  |  | ||||||
| 	MpInvJx_nu = Cshift(MpInvJx,nu,1); | 	MpInvJx_nu = Cshift(MpInvJx,nu,1); | ||||||
|  |  | ||||||
| 	Compute_MpInvJx_dNxxdSy(cb,PlaqL,PlaqR,MpInvJx_nu,FdetV); | 	Compute_MpInvJx_dNxxdSy(PlaqL,PlaqR,MpInvJx_nu,FdetV); | ||||||
| 	Fdet2_mu = Fdet2_mu+FdetV; | 	Fdet2_mu = Fdet2_mu+FdetV; | ||||||
| 	 | 	 | ||||||
|       } |       } | ||||||
| @@ -953,10 +931,6 @@ private: | |||||||
| public: | public: | ||||||
|  |  | ||||||
|   /* Standard constructor */ |   /* Standard constructor */ | ||||||
|   virtual ~SmearedConfigurationMasked() |  | ||||||
|   { |  | ||||||
|     delete UrbGrid; |  | ||||||
|   } |  | ||||||
|   SmearedConfigurationMasked(GridCartesian* _UGrid, unsigned int Nsmear, Smear_Stout<Gimpl>& Stout) |   SmearedConfigurationMasked(GridCartesian* _UGrid, unsigned int Nsmear, Smear_Stout<Gimpl>& Stout) | ||||||
|     : SmearedConfiguration<Gimpl>(_UGrid, Nsmear,Stout) |     : SmearedConfiguration<Gimpl>(_UGrid, Nsmear,Stout) | ||||||
|   { |   { | ||||||
| @@ -965,6 +939,7 @@ public: | |||||||
|     // was resized in base class |     // was resized in base class | ||||||
|     assert(this->SmearedSet.size()==Nsmear); |     assert(this->SmearedSet.size()==Nsmear); | ||||||
|      |      | ||||||
|  |     GridRedBlackCartesian * UrbGrid; | ||||||
|     UrbGrid = SpaceTimeGrid::makeFourDimRedBlackGrid(_UGrid); |     UrbGrid = SpaceTimeGrid::makeFourDimRedBlackGrid(_UGrid); | ||||||
|     LatticeComplex one(_UGrid); one = ComplexD(1.0,0.0); |     LatticeComplex one(_UGrid); one = ComplexD(1.0,0.0); | ||||||
|     LatticeComplex tmp(_UGrid); |     LatticeComplex tmp(_UGrid); | ||||||
| @@ -972,11 +947,10 @@ public: | |||||||
|     for (unsigned int i = 0; i < this->smearingLevels; ++i) { |     for (unsigned int i = 0; i < this->smearingLevels; ++i) { | ||||||
|  |  | ||||||
|       masks.push_back(*(new LatticeLorentzComplex(_UGrid))); |       masks.push_back(*(new LatticeLorentzComplex(_UGrid))); | ||||||
|  |  | ||||||
|       int mu= (i/2) %Nd; |       int mu= (i/2) %Nd; | ||||||
|       int cb= (i%2); |       int cb= (i%2); | ||||||
|       LatticeComplex tmpcb(UrbGrid); |       LatticeComplex tmpcb(UrbGrid); | ||||||
|  |  | ||||||
|       cbs.push_back(cb); |  | ||||||
| 	 | 	 | ||||||
|       masks[i]=Zero(); |       masks[i]=Zero(); | ||||||
|       //////////////////// |       //////////////////// | ||||||
| @@ -988,6 +962,7 @@ public: | |||||||
|       PokeIndex<LorentzIndex>(masks[i],tmp, mu); |       PokeIndex<LorentzIndex>(masks[i],tmp, mu); | ||||||
| 	 | 	 | ||||||
|     } |     } | ||||||
|  |     delete UrbGrid; | ||||||
|   } |   } | ||||||
|    |    | ||||||
|   virtual void smeared_force(GaugeField &SigmaTilde)  |   virtual void smeared_force(GaugeField &SigmaTilde)  | ||||||
|   | |||||||
| @@ -1,389 +0,0 @@ | |||||||
| /************************************************************************************* |  | ||||||
|  |  | ||||||
| Grid physics library, www.github.com/paboyle/Grid |  | ||||||
|  |  | ||||||
| Source file: ./lib/qcd/smearing/HISQSmearing.h |  | ||||||
|  |  | ||||||
| Copyright (C) 2023 |  | ||||||
|  |  | ||||||
| Author: D. A. Clarke <clarke.davida@gmail.com>  |  | ||||||
|  |  | ||||||
| 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 |  | ||||||
| *************************************************************************************/ |  | ||||||
| /* |  | ||||||
|     @file HISQSmearing.h |  | ||||||
|     @brief Declares classes related to HISQ smearing  |  | ||||||
| */ |  | ||||||
|  |  | ||||||
|  |  | ||||||
| #pragma once |  | ||||||
| #include <Grid/Grid.h> |  | ||||||
| #include <Grid/lattice/PaddedCell.h> |  | ||||||
| #include <Grid/stencil/GeneralLocalStencil.h> |  | ||||||
|  |  | ||||||
|  |  | ||||||
| NAMESPACE_BEGIN(Grid); |  | ||||||
|  |  | ||||||
|  |  | ||||||
| // TODO: find a way to fold this into the stencil header. need to access grid to get |  | ||||||
| // Nd, since you don't want to inherit from QCD.h |  | ||||||
| /*!  @brief append arbitrary shift path to shifts */ |  | ||||||
| template<typename... Args> |  | ||||||
| void appendShift(std::vector<Coordinate>& shifts, int dir, Args... args) { |  | ||||||
|     Coordinate shift(Nd,0); |  | ||||||
|     generalShift(shift, dir, args...);  |  | ||||||
|     // push_back creates an element at the end of shifts and |  | ||||||
|     // assigns the data in the argument to it. |  | ||||||
|     shifts.push_back(shift); |  | ||||||
| } |  | ||||||
|  |  | ||||||
|  |  | ||||||
| /*!  @brief figure out the stencil index from mu and nu */ |  | ||||||
| accelerator_inline int stencilIndex(int mu, int nu) { |  | ||||||
|     // Nshifts depends on how you built the stencil |  | ||||||
|     int Nshifts = 6; |  | ||||||
|     return Nshifts*nu + Nd*Nshifts*mu; |  | ||||||
| } |  | ||||||
|  |  | ||||||
|  |  | ||||||
| /*!  @brief structure holding the link treatment */ |  | ||||||
| struct SmearingParameters{ |  | ||||||
|     SmearingParameters(){} |  | ||||||
|     Real c_1;               // 1 link |  | ||||||
|     Real c_naik;            // Naik term |  | ||||||
|     Real c_3;               // 3 link |  | ||||||
|     Real c_5;               // 5 link |  | ||||||
|     Real c_7;               // 7 link |  | ||||||
|     Real c_lp;              // 5 link Lepage |  | ||||||
|     SmearingParameters(Real c1, Real cnaik, Real c3, Real c5, Real c7, Real clp)  |  | ||||||
|         : c_1(c1), |  | ||||||
|           c_naik(cnaik), |  | ||||||
|           c_3(c3), |  | ||||||
|           c_5(c5), |  | ||||||
|           c_7(c7), |  | ||||||
|           c_lp(clp){} |  | ||||||
| }; |  | ||||||
|  |  | ||||||
|  |  | ||||||
| /*!  @brief create fat links from link variables */ |  | ||||||
| template<class Gimpl>  |  | ||||||
| class Smear_HISQ : public Gimpl { |  | ||||||
|  |  | ||||||
| private: |  | ||||||
|     GridCartesian* const _grid; |  | ||||||
|     SmearingParameters _linkTreatment; |  | ||||||
|  |  | ||||||
| public: |  | ||||||
|  |  | ||||||
|     INHERIT_GIMPL_TYPES(Gimpl); |  | ||||||
|     typedef typename Gimpl::GaugeField     GF; |  | ||||||
|     typedef typename Gimpl::GaugeLinkField LF; |  | ||||||
|     typedef typename Gimpl::ComplexField   CF; |  | ||||||
|  |  | ||||||
|     // Don't allow default values here. |  | ||||||
|     Smear_HISQ(GridCartesian* grid, Real c1, Real cnaik, Real c3, Real c5, Real c7, Real clp)  |  | ||||||
|         : _grid(grid),  |  | ||||||
|           _linkTreatment(c1,cnaik,c3,c5,c7,clp) { |  | ||||||
|         assert(Nc == 3 && "HISQ smearing currently implemented only for Nc==3"); |  | ||||||
|         assert(Nd == 4 && "HISQ smearing only defined for Nd==4"); |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     // Allow to pass a pointer to a C-style, double array for MILC convenience |  | ||||||
|     Smear_HISQ(GridCartesian* grid, double* coeff)  |  | ||||||
|         : _grid(grid),  |  | ||||||
|           _linkTreatment(coeff[0],coeff[1],coeff[2],coeff[3],coeff[4],coeff[5]) { |  | ||||||
|         assert(Nc == 3 && "HISQ smearing currently implemented only for Nc==3"); |  | ||||||
|         assert(Nd == 4 && "HISQ smearing only defined for Nd==4"); |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     ~Smear_HISQ() {} |  | ||||||
|  |  | ||||||
|     // Intent: OUT--u_smr, u_naik |  | ||||||
|     //          IN--u_thin |  | ||||||
|     void smear(GF& u_smr, GF& u_naik, GF& u_thin) const { |  | ||||||
|  |  | ||||||
|         SmearingParameters lt = this->_linkTreatment; |  | ||||||
|         auto grid = this->_grid; |  | ||||||
|  |  | ||||||
|         // Create a padded cell of extra padding depth=1 and fill the padding. |  | ||||||
|         int depth = 1; |  | ||||||
|         PaddedCell Ghost(depth,grid); |  | ||||||
|         GF Ughost = Ghost.Exchange(u_thin); |  | ||||||
|  |  | ||||||
|         // This is where auxiliary N-link fields and the final smear will be stored.  |  | ||||||
|         GF Ughost_fat(Ughost.Grid()); |  | ||||||
|         GF Ughost_3link(Ughost.Grid()); |  | ||||||
|         GF Ughost_5linkA(Ughost.Grid()); |  | ||||||
|         GF Ughost_5linkB(Ughost.Grid()); |  | ||||||
|  |  | ||||||
|         // mu-nu plane stencil. We allow mu==nu to make indexing the stencil easier, |  | ||||||
|         // but these entries will not be used.  |  | ||||||
|         std::vector<Coordinate> shifts; |  | ||||||
|         for(int mu=0;mu<Nd;mu++) |  | ||||||
|         for(int nu=0;nu<Nd;nu++) { |  | ||||||
|             appendShift(shifts,mu); |  | ||||||
|             appendShift(shifts,nu); |  | ||||||
|             appendShift(shifts,shiftSignal::NO_SHIFT); |  | ||||||
|             appendShift(shifts,mu,Back(nu)); |  | ||||||
|             appendShift(shifts,Back(nu)); |  | ||||||
|             appendShift(shifts,Back(mu)); |  | ||||||
|         } |  | ||||||
|  |  | ||||||
|         // A GeneralLocalStencil has two indices: a site and stencil index  |  | ||||||
|         GeneralLocalStencil gStencil(Ughost.Grid(),shifts); |  | ||||||
|  |  | ||||||
|         // This is where contributions from the smearing get added together |  | ||||||
|         Ughost_fat=Zero(); |  | ||||||
|  |  | ||||||
|         // This loop handles 3-, 5-, and 7-link constructs, minus Lepage and Naik. |  | ||||||
|         for(int mu=0;mu<Nd;mu++) { |  | ||||||
|  |  | ||||||
|             // TODO: This approach is slightly memory inefficient. It uses 25% extra memory  |  | ||||||
|             Ughost_3link =Zero(); |  | ||||||
|             Ughost_5linkA=Zero(); |  | ||||||
|             Ughost_5linkB=Zero(); |  | ||||||
|  |  | ||||||
|             // Create the accessors |  | ||||||
|             autoView(U_v       , Ughost       , AcceleratorRead); |  | ||||||
|             autoView(U_fat_v   , Ughost_fat   , AcceleratorWrite); |  | ||||||
|             autoView(U_3link_v , Ughost_3link , AcceleratorWrite); |  | ||||||
|             autoView(U_5linkA_v, Ughost_5linkA, AcceleratorWrite); |  | ||||||
|             autoView(U_5linkB_v, Ughost_5linkB, AcceleratorWrite); |  | ||||||
|  |  | ||||||
|             // We infer some types that will be needed in the calculation. |  | ||||||
|             typedef decltype(gStencil.GetEntry(0,0)) stencilElement; |  | ||||||
|             typedef decltype(coalescedReadGeneralPermute(U_v[0](0),gStencil.GetEntry(0,0)->_permute,Nd)) U3matrix; |  | ||||||
|  |  | ||||||
|             int Nsites = U_v.size(); |  | ||||||
|             auto gStencil_v = gStencil.View(AcceleratorRead);  |  | ||||||
|  |  | ||||||
|             accelerator_for(site,Nsites,Simd::Nsimd(),{ // ----------- 3-link constructs |  | ||||||
|                 stencilElement SE0, SE1, SE2, SE3, SE4, SE5; |  | ||||||
|                 U3matrix U0, U1, U2, U3, U4, U5, W; |  | ||||||
|                 for(int nu=0;nu<Nd;nu++) { |  | ||||||
|                     if(nu==mu) continue; |  | ||||||
|                     int s = stencilIndex(mu,nu); |  | ||||||
|  |  | ||||||
|                     // The stencil gives us support points in the mu-nu plane that we will use to |  | ||||||
|                     // grab the links we need. |  | ||||||
|                     SE0 = gStencil_v.GetEntry(s+0,site); int x_p_mu      = SE0->_offset; |  | ||||||
|                     SE1 = gStencil_v.GetEntry(s+1,site); int x_p_nu      = SE1->_offset; |  | ||||||
|                     SE2 = gStencil_v.GetEntry(s+2,site); int x           = SE2->_offset; |  | ||||||
|                     SE3 = gStencil_v.GetEntry(s+3,site); int x_p_mu_m_nu = SE3->_offset; |  | ||||||
|                     SE4 = gStencil_v.GetEntry(s+4,site); int x_m_nu      = SE4->_offset; |  | ||||||
|                     SE5 = gStencil_v.GetEntry(s+5,site); int x_m_mu      = SE5->_offset; |  | ||||||
|  |  | ||||||
|                     // When you're deciding whether to take an adjoint, the question is: how is the |  | ||||||
|                     // stored link oriented compared to the one you want? If I imagine myself travelling |  | ||||||
|                     // with the to-be-updated link, I have two possible, alternative 3-link paths I can |  | ||||||
|                     // take, one starting by going to the left, the other starting by going to the right. |  | ||||||
|                     U0 = coalescedReadGeneralPermute(U_v[x_p_mu     ](nu),SE0->_permute,Nd); |  | ||||||
|                     U1 = coalescedReadGeneralPermute(U_v[x_p_nu     ](mu),SE1->_permute,Nd); |  | ||||||
|                     U2 = coalescedReadGeneralPermute(U_v[x          ](nu),SE2->_permute,Nd); |  | ||||||
|                     U3 = coalescedReadGeneralPermute(U_v[x_p_mu_m_nu](nu),SE3->_permute,Nd); |  | ||||||
|                     U4 = coalescedReadGeneralPermute(U_v[x_m_nu     ](mu),SE4->_permute,Nd); |  | ||||||
|                     U5 = coalescedReadGeneralPermute(U_v[x_m_nu     ](nu),SE4->_permute,Nd); |  | ||||||
|  |  | ||||||
|                     //  "left"          "right" |  | ||||||
|                     W = U2*U1*adj(U0) + adj(U5)*U4*U3; |  | ||||||
|  |  | ||||||
|                     // Save 3-link construct for later and add to smeared field. |  | ||||||
|                     coalescedWrite(U_3link_v[x](nu), W); |  | ||||||
|  |  | ||||||
|                     // The index operator (x) returns the coalesced read on GPU. The view [] index returns  |  | ||||||
|                     // a reference to the vector object. The [x](mu) returns a reference to the densely  |  | ||||||
|                     // packed (contiguous in memory) mu-th element of the vector object. On CPU,  |  | ||||||
|                     // coalescedRead/Write is the identity mapping assigning vector object to vector object. |  | ||||||
|                     // But on GPU it's non-trivial and maps scalar object to vector object and vice versa. |  | ||||||
|                     coalescedWrite(U_fat_v[x](mu), U_fat_v(x)(mu) + lt.c_3*W); |  | ||||||
|                 } |  | ||||||
|             }) |  | ||||||
|  |  | ||||||
|             accelerator_for(site,Nsites,Simd::Nsimd(),{ // ----------- 5-link  |  | ||||||
|                 stencilElement SE0, SE1, SE2, SE3, SE4, SE5; |  | ||||||
|                 U3matrix U0, U1, U2, U3, U4, U5, W; |  | ||||||
|                 int sigmaIndex = 0; |  | ||||||
|                 for(int nu=0;nu<Nd;nu++) { |  | ||||||
|                     if(nu==mu) continue; |  | ||||||
|                     int s = stencilIndex(mu,nu); |  | ||||||
|                     for(int rho=0;rho<Nd;rho++) { |  | ||||||
|                         if (rho == mu || rho == nu) continue; |  | ||||||
|  |  | ||||||
|                         SE0 = gStencil_v.GetEntry(s+0,site); int x_p_mu      = SE0->_offset; |  | ||||||
|                         SE1 = gStencil_v.GetEntry(s+1,site); int x_p_nu      = SE1->_offset; |  | ||||||
|                         SE2 = gStencil_v.GetEntry(s+2,site); int x           = SE2->_offset; |  | ||||||
|                         SE3 = gStencil_v.GetEntry(s+3,site); int x_p_mu_m_nu = SE3->_offset; |  | ||||||
|                         SE4 = gStencil_v.GetEntry(s+4,site); int x_m_nu      = SE4->_offset; |  | ||||||
|  |  | ||||||
|                         U0 = coalescedReadGeneralPermute(      U_v[x_p_mu     ](nu ),SE0->_permute,Nd); |  | ||||||
|                         U1 = coalescedReadGeneralPermute(U_3link_v[x_p_nu     ](rho),SE1->_permute,Nd); |  | ||||||
|                         U2 = coalescedReadGeneralPermute(      U_v[x          ](nu ),SE2->_permute,Nd); |  | ||||||
|                         U3 = coalescedReadGeneralPermute(      U_v[x_p_mu_m_nu](nu ),SE3->_permute,Nd); |  | ||||||
|                         U4 = coalescedReadGeneralPermute(U_3link_v[x_m_nu     ](rho),SE4->_permute,Nd); |  | ||||||
|                         U5 = coalescedReadGeneralPermute(      U_v[x_m_nu     ](nu ),SE4->_permute,Nd); |  | ||||||
|  |  | ||||||
|                         W  = U2*U1*adj(U0) + adj(U5)*U4*U3; |  | ||||||
|  |  | ||||||
|                         if(sigmaIndex<3) { |  | ||||||
|                             coalescedWrite(U_5linkA_v[x](rho), W); |  | ||||||
|                         } else { |  | ||||||
|                             coalescedWrite(U_5linkB_v[x](rho), W); |  | ||||||
|                         }     |  | ||||||
|  |  | ||||||
|                         coalescedWrite(U_fat_v[x](mu), U_fat_v(x)(mu) + lt.c_5*W); |  | ||||||
|                         sigmaIndex++; |  | ||||||
|                     } |  | ||||||
|                 } |  | ||||||
|             }) |  | ||||||
|  |  | ||||||
|             accelerator_for(site,Nsites,Simd::Nsimd(),{ // ----------- 7-link |  | ||||||
|                 stencilElement SE0, SE1, SE2, SE3, SE4, SE5; |  | ||||||
|                 U3matrix U0, U1, U2, U3, U4, U5, W; |  | ||||||
|                 int sigmaIndex = 0; |  | ||||||
|                 for(int nu=0;nu<Nd;nu++) { |  | ||||||
|                     if(nu==mu) continue; |  | ||||||
|                     int s = stencilIndex(mu,nu); |  | ||||||
|                     for(int rho=0;rho<Nd;rho++) { |  | ||||||
|                         if (rho == mu || rho == nu) continue; |  | ||||||
|  |  | ||||||
|                         SE0 = gStencil_v.GetEntry(s+0,site); int x_p_mu      = SE0->_offset; |  | ||||||
|                         SE1 = gStencil_v.GetEntry(s+1,site); int x_p_nu      = SE1->_offset; |  | ||||||
|                         SE2 = gStencil_v.GetEntry(s+2,site); int x           = SE2->_offset; |  | ||||||
|                         SE3 = gStencil_v.GetEntry(s+3,site); int x_p_mu_m_nu = SE3->_offset; |  | ||||||
|                         SE4 = gStencil_v.GetEntry(s+4,site); int x_m_nu      = SE4->_offset; |  | ||||||
|  |  | ||||||
|                         U0 = coalescedReadGeneralPermute(U_v[x_p_mu](nu),SE0->_permute,Nd); |  | ||||||
|                         if(sigmaIndex<3) { |  | ||||||
|                             U1 = coalescedReadGeneralPermute(U_5linkB_v[x_p_nu](rho),SE1->_permute,Nd); |  | ||||||
|                         } else { |  | ||||||
|                             U1 = coalescedReadGeneralPermute(U_5linkA_v[x_p_nu](rho),SE1->_permute,Nd); |  | ||||||
|                         }   |  | ||||||
|                         U2 = coalescedReadGeneralPermute(U_v[x](nu),SE2->_permute,Nd); |  | ||||||
|                         U3 = coalescedReadGeneralPermute(U_v[x_p_mu_m_nu](nu),SE3->_permute,Nd); |  | ||||||
|                         if(sigmaIndex<3) { |  | ||||||
|                             U4 = coalescedReadGeneralPermute(U_5linkB_v[x_m_nu](rho),SE4->_permute,Nd); |  | ||||||
|                         } else { |  | ||||||
|                             U4 = coalescedReadGeneralPermute(U_5linkA_v[x_m_nu](rho),SE4->_permute,Nd); |  | ||||||
|                         }   |  | ||||||
|                         U5 = coalescedReadGeneralPermute(U_v[x_m_nu](nu),SE4->_permute,Nd); |  | ||||||
|  |  | ||||||
|                         W  = U2*U1*adj(U0) + adj(U5)*U4*U3; |  | ||||||
|  |  | ||||||
|                         coalescedWrite(U_fat_v[x](mu), U_fat_v(x)(mu) + lt.c_7*W); |  | ||||||
|                         sigmaIndex++; |  | ||||||
|                     } |  | ||||||
|                 } |  | ||||||
|             }) |  | ||||||
|  |  | ||||||
|         } // end mu loop |  | ||||||
|  |  | ||||||
|         // c1, c3, c5, c7 construct contributions |  | ||||||
|         u_smr = Ghost.Extract(Ughost_fat) + lt.c_1*u_thin; |  | ||||||
|  |  | ||||||
|         // Load up U and V std::vectors to access thin and smeared links. |  | ||||||
|         std::vector<LF> U(Nd, grid); |  | ||||||
|         std::vector<LF> V(Nd, grid); |  | ||||||
|         std::vector<LF> Vnaik(Nd, grid); |  | ||||||
|         for (int mu = 0; mu < Nd; mu++) { |  | ||||||
|             U[mu] = PeekIndex<LorentzIndex>(u_thin, mu); |  | ||||||
|             V[mu] = PeekIndex<LorentzIndex>(u_smr, mu); |  | ||||||
|         } |  | ||||||
|  |  | ||||||
|         for(int mu=0;mu<Nd;mu++) { |  | ||||||
|  |  | ||||||
|             // Naik |  | ||||||
|             Vnaik[mu] = lt.c_naik*Gimpl::CovShiftForward(U[mu],mu, |  | ||||||
|                                     Gimpl::CovShiftForward(U[mu],mu, |  | ||||||
|                                       Gimpl::CovShiftIdentityForward(U[mu],mu))); |  | ||||||
|  |  | ||||||
|             // LePage |  | ||||||
|             for (int nu_h=1;nu_h<Nd;nu_h++) { |  | ||||||
|                 int nu=(mu+nu_h)%Nd; |  | ||||||
|                                 // nu, nu, mu, Back(nu), Back(nu) |  | ||||||
|                 V[mu] = V[mu] + lt.c_lp*Gimpl::CovShiftForward(U[nu],nu, |  | ||||||
|                                           Gimpl::CovShiftForward(U[nu],nu, |  | ||||||
|                                             Gimpl::CovShiftForward(U[mu],mu, |  | ||||||
|                                               Gimpl::CovShiftBackward(U[nu],nu, |  | ||||||
|                                                 Gimpl::CovShiftIdentityBackward(U[nu],nu))))) |  | ||||||
|                                 // Back(nu), Back(nu), mu, nu, nu |  | ||||||
|                               + lt.c_lp*Gimpl::CovShiftBackward(U[nu],nu, |  | ||||||
|                                           Gimpl::CovShiftBackward(U[nu],nu, |  | ||||||
|                                             Gimpl::CovShiftForward(U[mu],mu, |  | ||||||
|                                               Gimpl::CovShiftForward(U[nu],nu, |  | ||||||
|                                                 Gimpl::CovShiftIdentityForward(U[nu],nu))))); |  | ||||||
|             } |  | ||||||
|         } |  | ||||||
|  |  | ||||||
|         // Put V back into u_smr. |  | ||||||
|         for (int mu = 0; mu < Nd; mu++) { |  | ||||||
|             PokeIndex<LorentzIndex>(u_smr , V[mu]    , mu); |  | ||||||
|             PokeIndex<LorentzIndex>(u_naik, Vnaik[mu], mu); |  | ||||||
|         } |  | ||||||
|     }; |  | ||||||
|  |  | ||||||
|  |  | ||||||
|     // Intent: OUT--u_proj |  | ||||||
|     //          IN--u_mu |  | ||||||
|     void projectU3(GF& u_proj, GF& u_mu) const { |  | ||||||
|  |  | ||||||
|         auto grid = this->_grid; |  | ||||||
|  |  | ||||||
|         LF V(grid), Q(grid), sqrtQinv(grid), id_3(grid), diff(grid); |  | ||||||
|         CF c0(grid), c1(grid), c2(grid), g0(grid), g1(grid), g2(grid), S(grid), R(grid), theta(grid),  |  | ||||||
|            u(grid), v(grid), w(grid), den(grid), f0(grid), f1(grid), f2(grid); |  | ||||||
|  |  | ||||||
|         // Follow MILC 10.1103/PhysRevD.82.074501, eqs (B2-B3) and (C1-C8) |  | ||||||
|         for (int mu = 0; mu < Nd; mu++) { |  | ||||||
|             V  = PeekIndex<LorentzIndex>(u_mu, mu); |  | ||||||
|             Q  = adj(V)*V; |  | ||||||
|             c0 =        real(trace(Q)); |  | ||||||
|             c1 = (1/2.)*real(trace(Q*Q)); |  | ||||||
|             c2 = (1/3.)*real(trace(Q*Q*Q)); |  | ||||||
|             S  = (1/3.)*c1-(1/18.)*c0*c0; |  | ||||||
|             if (norm2(S)<1e-28) { |  | ||||||
|                 g0 = (1/3.)*c0; g1 = g0; g2 = g1; |  | ||||||
|             } else { |  | ||||||
|                 R     = (1/2.)*c2-(1/3. )*c0*c1+(1/27.)*c0*c0*c0; |  | ||||||
|                 theta = acos(R*pow(S,-1.5)); |  | ||||||
|                 g0    = (1/3.)*c0+2.*sqrt(S)*cos((1/3.)*theta-2*M_PI/3.); |  | ||||||
|                 g1    = (1/3.)*c0+2.*sqrt(S)*cos((1/3.)*theta          ); |  | ||||||
|                 g2    = (1/3.)*c0+2.*sqrt(S)*cos((1/3.)*theta+2*M_PI/3.); |  | ||||||
|             } |  | ||||||
| //            if (fabs(Q.determinant()/(g0*g1*g2)-1.0) > 1e-5) { SVD } |  | ||||||
|             u     = sqrt(g0) + sqrt(g1) + sqrt(g2); |  | ||||||
|             v     = sqrt(g0*g1) + sqrt(g0*g2) + sqrt(g1*g2); |  | ||||||
|             w     = sqrt(g0*g1*g2); |  | ||||||
|             den   = w*(u*v-w); |  | ||||||
|             f0    = (-w*(u*u+v)+u*v*v)/den; |  | ||||||
|             f1    = (-w-u*u*u+2.*u*v)/den; |  | ||||||
|             f2    = u/den; |  | ||||||
|             id_3  = 1.; |  | ||||||
|  |  | ||||||
|             sqrtQinv = f0*id_3 + f1*Q + f2*Q*Q; |  | ||||||
|  |  | ||||||
|             PokeIndex<LorentzIndex>(u_proj, V*sqrtQinv, mu); |  | ||||||
|         } |  | ||||||
|     }; |  | ||||||
|  |  | ||||||
|  |  | ||||||
| //    void derivative(const GaugeField& Gauge) const { |  | ||||||
| //    }; |  | ||||||
| }; |  | ||||||
|  |  | ||||||
|  |  | ||||||
| NAMESPACE_END(Grid); |  | ||||||
| @@ -5,5 +5,4 @@ | |||||||
| #include <Grid/qcd/smearing/StoutSmearing.h> | #include <Grid/qcd/smearing/StoutSmearing.h> | ||||||
| #include <Grid/qcd/smearing/GaugeConfiguration.h> | #include <Grid/qcd/smearing/GaugeConfiguration.h> | ||||||
| #include <Grid/qcd/smearing/WilsonFlow.h> | #include <Grid/qcd/smearing/WilsonFlow.h> | ||||||
| #include <Grid/qcd/smearing/HISQSmearing.h> |  | ||||||
|  |  | ||||||
|   | |||||||
| @@ -418,32 +418,32 @@ static void LieAlgebraProject(LatticeAlgebraMatrix &out,const LatticeMatrix &in, | |||||||
|   int hNNm1= NNm1/2; |   int hNNm1= NNm1/2; | ||||||
|   RealD sqrt_2 = sqrt(2.0); |   RealD sqrt_2 = sqrt(2.0); | ||||||
|   Complex ci(0.0,1.0); |   Complex ci(0.0,1.0); | ||||||
|  |   for(int su2Index=0;su2Index<hNNm1;su2Index++){ | ||||||
|   const int nsimd=  Matrix::Nsimd(); |     int i1, i2; | ||||||
|   accelerator_for(ss,grid->oSites(),nsimd,{ |     su2SubGroupIndex(i1, i2, su2Index); | ||||||
|       for(int su2Index=0;su2Index<hNNm1;su2Index++){ |     int ax = su2Index*2; | ||||||
| 	int i1, i2; |     int ay = su2Index*2+1; | ||||||
| 	su2SubGroupIndex(i1, i2, su2Index); |     accelerator_for(ss,grid->oSites(),1,{ | ||||||
| 	int ax = su2Index*2; |  | ||||||
| 	int ay = su2Index*2+1; |  | ||||||
| 	// in is traceless ANTI-hermitian whereas Grid generators are Hermitian. | 	// in is traceless ANTI-hermitian whereas Grid generators are Hermitian. | ||||||
| 	// trace( Ta x Ci in) | 	// trace( Ta x Ci in) | ||||||
| 	// Bet I need to move to real part with mult by -i | 	// Bet I need to move to real part with mult by -i | ||||||
| 	coalescedWrite(out_v[ss]()()(ax,b),0.5*(real(in_v(ss)()()(i2,i1)) - real(in_v(ss)()()(i1,i2)))); | 	out_v[ss]()()(ax,b) = 0.5*(real(in_v[ss]()()(i2,i1)) - real(in_v[ss]()()(i1,i2))); | ||||||
| 	coalescedWrite(out_v[ss]()()(ay,b),0.5*(imag(in_v(ss)()()(i1,i2)) + imag(in_v(ss)()()(i2,i1)))); | 	out_v[ss]()()(ay,b) = 0.5*(imag(in_v[ss]()()(i1,i2)) + imag(in_v[ss]()()(i2,i1))); | ||||||
|       } |       }); | ||||||
|       for(int diagIndex=0;diagIndex<N-1;diagIndex++){ |   } | ||||||
| 	int k = diagIndex + 1; // diagIndex starts from 0 |   for(int diagIndex=0;diagIndex<N-1;diagIndex++){ | ||||||
| 	int a = NNm1+diagIndex; |     int k = diagIndex + 1; // diagIndex starts from 0 | ||||||
| 	RealD scale = 1.0/sqrt(2.0*k*(k+1)); |     int a = NNm1+diagIndex; | ||||||
| 	auto tmp = in_v(ss)()()(0,0); |     RealD scale = 1.0/sqrt(2.0*k*(k+1)); | ||||||
|  |     accelerator_for(ss,grid->oSites(),vComplex::Nsimd(),{ | ||||||
|  | 	auto tmp = in_v[ss]()()(0,0); | ||||||
| 	for(int i=1;i<k;i++){ | 	for(int i=1;i<k;i++){ | ||||||
| 	  tmp=tmp+in_v(ss)()()(i,i); | 	  tmp=tmp+in_v[ss]()()(i,i); | ||||||
| 	} | 	} | ||||||
| 	tmp = tmp - in_v(ss)()()(k,k)*k; | 	tmp = tmp - in_v[ss]()()(k,k)*k; | ||||||
| 	coalescedWrite(out_v[ss]()()(a,b),imag(tmp) * scale); | 	out_v[ss]()()(a,b) =imag(tmp) * scale; | ||||||
|       } |       }); | ||||||
|     }); |     } | ||||||
| } | } | ||||||
|  |  | ||||||
|    |    | ||||||
|   | |||||||
| @@ -118,7 +118,7 @@ static void generatorDiagonal(int diagIndex, iGroupMatrix<cplx> &ta) { | |||||||
| //////////////////////////////////////////////////////////////////////// | //////////////////////////////////////////////////////////////////////// | ||||||
| // Map a su2 subgroup number to the pair of rows that are non zero | // Map a su2 subgroup number to the pair of rows that are non zero | ||||||
| //////////////////////////////////////////////////////////////////////// | //////////////////////////////////////////////////////////////////////// | ||||||
| static accelerator_inline void su2SubGroupIndex(int &i1, int &i2, int su2_index, GroupName::SU) { | static void su2SubGroupIndex(int &i1, int &i2, int su2_index, GroupName::SU) { | ||||||
|   assert((su2_index >= 0) && (su2_index < (ncolour * (ncolour - 1)) / 2)); |   assert((su2_index >= 0) && (su2_index < (ncolour * (ncolour - 1)) / 2)); | ||||||
|  |  | ||||||
|   int spare = su2_index; |   int spare = su2_index; | ||||||
|   | |||||||
| @@ -488,7 +488,7 @@ public: | |||||||
|     for(int mu=0;mu<Nd;mu++){ |     for(int mu=0;mu<Nd;mu++){ | ||||||
|       { //view scope |       { //view scope | ||||||
| 	autoView( gStaple_v , gStaple, AcceleratorWrite); | 	autoView( gStaple_v , gStaple, AcceleratorWrite); | ||||||
| 	auto gStencil_v = gStencil.View(AcceleratorRead); | 	auto gStencil_v = gStencil.View(); | ||||||
| 	 | 	 | ||||||
| 	accelerator_for(ss, ggrid->oSites(), (size_t)ggrid->Nsimd(), { | 	accelerator_for(ss, ggrid->oSites(), (size_t)ggrid->Nsimd(), { | ||||||
| 	    decltype(coalescedRead(Ug_dirs_v[0][0])) stencil_ss; | 	    decltype(coalescedRead(Ug_dirs_v[0][0])) stencil_ss; | ||||||
| @@ -1200,7 +1200,7 @@ public: | |||||||
|  |  | ||||||
|       { //view scope |       { //view scope | ||||||
| 	autoView( gStaple_v , gStaple, AcceleratorWrite); | 	autoView( gStaple_v , gStaple, AcceleratorWrite); | ||||||
| 	auto gStencil_v = gStencil.View(AcceleratorRead); | 	auto gStencil_v = gStencil.View(); | ||||||
|  |  | ||||||
| 	accelerator_for(ss, ggrid->oSites(), (size_t)ggrid->Nsimd(), { | 	accelerator_for(ss, ggrid->oSites(), (size_t)ggrid->Nsimd(), { | ||||||
| 	    decltype(coalescedRead(Ug_dirs_v[0][0])) stencil_ss; | 	    decltype(coalescedRead(Ug_dirs_v[0][0])) stencil_ss; | ||||||
|   | |||||||
| @@ -1130,24 +1130,7 @@ static_assert(sizeof(SIMD_Ftype) == sizeof(SIMD_Itype), "SIMD vector lengths inc | |||||||
| #endif | #endif | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
| // Fixme need coalesced read gpermute |  | ||||||
| template<class vobj> void gpermute(vobj & inout,int perm){ |  | ||||||
|   vobj tmp=inout; |  | ||||||
|   if (perm & 0x1 ) { permute(inout,tmp,0); tmp=inout;} |  | ||||||
|   if (perm & 0x2 ) { permute(inout,tmp,1); tmp=inout;} |  | ||||||
|   if (perm & 0x4 ) { permute(inout,tmp,2); tmp=inout;} |  | ||||||
|   if (perm & 0x8 ) { permute(inout,tmp,3); tmp=inout;} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| NAMESPACE_END(Grid); | NAMESPACE_END(Grid); | ||||||
|  |  | ||||||
| #ifdef GRID_SYCL |  | ||||||
| template<> struct sycl::is_device_copyable<Grid::vComplexF> : public std::true_type {}; |  | ||||||
| template<> struct sycl::is_device_copyable<Grid::vComplexD> : public std::true_type {}; |  | ||||||
| template<> struct sycl::is_device_copyable<Grid::vRealF   > : public std::true_type {}; |  | ||||||
| template<> struct sycl::is_device_copyable<Grid::vRealD   > : public std::true_type {}; |  | ||||||
| template<> struct sycl::is_device_copyable<Grid::vInteger > : public std::true_type {}; |  | ||||||
| #endif |  | ||||||
|  |  | ||||||
|  |  | ||||||
| #endif | #endif | ||||||
|   | |||||||
| @@ -99,8 +99,6 @@ using std::log; | |||||||
| using std::exp; | using std::exp; | ||||||
| using std::sin; | using std::sin; | ||||||
| using std::cos; | using std::cos; | ||||||
| using std::asin; |  | ||||||
| using std::acos; |  | ||||||
|  |  | ||||||
|  |  | ||||||
| accelerator_inline RealF    conjugate(const RealF  & r){ return r; } | accelerator_inline RealF    conjugate(const RealF  & r){ return r; } | ||||||
|   | |||||||
| @@ -32,12 +32,7 @@ NAMESPACE_BEGIN(Grid); | |||||||
| struct GeneralStencilEntry {  | struct GeneralStencilEntry {  | ||||||
|   uint64_t _offset;            // 4 bytes  |   uint64_t _offset;            // 4 bytes  | ||||||
|   uint8_t _permute;            // 1 bytes // Horrible alignment properties |   uint8_t _permute;            // 1 bytes // Horrible alignment properties | ||||||
|   uint8_t _wrap;               // 1 bytes // Horrible alignment properties |  | ||||||
| }; | }; | ||||||
| struct GeneralStencilEntryReordered : public GeneralStencilEntry { |  | ||||||
|   uint64_t _input; |  | ||||||
| }; |  | ||||||
|  |  | ||||||
| // Could pack to 8 + 4 + 4 = 128 bit and use  | // Could pack to 8 + 4 + 4 = 128 bit and use  | ||||||
|  |  | ||||||
| class GeneralLocalStencilView { | class GeneralLocalStencilView { | ||||||
| @@ -51,7 +46,7 @@ class GeneralLocalStencilView { | |||||||
|   accelerator_inline GeneralStencilEntry * GetEntry(int point,int osite) const {  |   accelerator_inline GeneralStencilEntry * GetEntry(int point,int osite) const {  | ||||||
|     return & this->_entries_p[point+this->_npoints*osite];  |     return & this->_entries_p[point+this->_npoints*osite];  | ||||||
|   } |   } | ||||||
|   void ViewClose(void){}; |  | ||||||
| }; | }; | ||||||
| //////////////////////////////////////// | //////////////////////////////////////// | ||||||
| // The Stencil Class itself | // The Stencil Class itself | ||||||
| @@ -66,7 +61,7 @@ protected: | |||||||
| public:  | public:  | ||||||
|   GridBase *Grid(void) const { return _grid; } |   GridBase *Grid(void) const { return _grid; } | ||||||
|  |  | ||||||
|   View_type View(int mode) const { |   View_type View(void) const { | ||||||
|     View_type accessor(*( (View_type *) this)); |     View_type accessor(*( (View_type *) this)); | ||||||
|     return accessor; |     return accessor; | ||||||
|   } |   } | ||||||
| @@ -106,23 +101,17 @@ public: | |||||||
| 	  // Simpler version using icoor calculation | 	  // Simpler version using icoor calculation | ||||||
| 	  //////////////////////////////////////////////// | 	  //////////////////////////////////////////////// | ||||||
| 	  SE._permute =0; | 	  SE._permute =0; | ||||||
| 	  SE._wrap=0; |  | ||||||
| 	  for(int d=0;d<Coor.size();d++){ | 	  for(int d=0;d<Coor.size();d++){ | ||||||
|  |  | ||||||
| 	    int fd = grid->_fdimensions[d]; | 	    int fd = grid->_fdimensions[d]; | ||||||
| 	    int rd = grid->_rdimensions[d]; | 	    int rd = grid->_rdimensions[d]; | ||||||
| 	    int ld = grid->_ldimensions[d]; |  | ||||||
| 	    int ly = grid->_simd_layout[d]; | 	    int ly = grid->_simd_layout[d]; | ||||||
|  |  | ||||||
| 	    assert((ly==1)||(ly==2)||(ly==grid->Nsimd())); | 	    assert((ly==1)||(ly==2)); | ||||||
|  |  | ||||||
| 	    int shift = (shifts[ii][d]+fd)%fd;  // make it strictly positive 0.. L-1 | 	    int shift = (shifts[ii][d]+fd)%fd;  // make it strictly positive 0.. L-1 | ||||||
| 	    int x = Coor[d];                // x in [0... rd-1] as an oSite  | 	    int x = Coor[d];                // x in [0... rd-1] as an oSite  | ||||||
|  |  | ||||||
| 	    if ( (x + shift)%fd != (x+shift)%ld ){ |  | ||||||
| 	      SE._wrap = 1; |  | ||||||
| 	    } |  | ||||||
| 	     |  | ||||||
| 	    int permute_dim  = grid->PermuteDim(d); | 	    int permute_dim  = grid->PermuteDim(d); | ||||||
| 	    int permute_slice=0; | 	    int permute_slice=0; | ||||||
| 	    if(permute_dim){     | 	    if(permute_dim){     | ||||||
| @@ -148,55 +137,5 @@ public: | |||||||
|    |    | ||||||
| }; | }; | ||||||
|  |  | ||||||
|  |  | ||||||
| //////////////////////////////////////////////// |  | ||||||
| // Some machinery to streamline making a stencil  |  | ||||||
| //////////////////////////////////////////////// |  | ||||||
|  |  | ||||||
| class shiftSignal { |  | ||||||
| public: |  | ||||||
|     enum { |  | ||||||
|         BACKWARD_CONST = 16, |  | ||||||
|         NO_SHIFT       = -1 |  | ||||||
|     }; |  | ||||||
| }; |  | ||||||
|  |  | ||||||
| // TODO: put a check somewhere that BACKWARD_CONST > Nd! |  | ||||||
|  |  | ||||||
| /*!  @brief signals that you want to go backwards in direction dir */ |  | ||||||
| inline int Back(const int dir) { |  | ||||||
|     // generalShift will use BACKWARD_CONST to determine whether we step forward or  |  | ||||||
|     // backward. Trick inspired by SIMULATeQCD.  |  | ||||||
|     return dir + shiftSignal::BACKWARD_CONST; |  | ||||||
| } |  | ||||||
|  |  | ||||||
| /*!  @brief shift one unit in direction dir */ |  | ||||||
| template<typename... Args> |  | ||||||
| void generalShift(Coordinate& shift, int dir) { |  | ||||||
|     if (dir >= shiftSignal::BACKWARD_CONST) { |  | ||||||
|         dir -= shiftSignal::BACKWARD_CONST; |  | ||||||
|         shift[dir]+=-1; |  | ||||||
|     } else if (dir == shiftSignal::NO_SHIFT) { |  | ||||||
|         ; // do nothing |  | ||||||
|     } else { |  | ||||||
|         shift[dir]+=1; |  | ||||||
|     } |  | ||||||
| } |  | ||||||
|  |  | ||||||
| /*!  @brief follow a path of directions, shifting one unit in each direction */ |  | ||||||
| template<typename... Args> |  | ||||||
| void generalShift(Coordinate& shift, int dir, Args... args) { |  | ||||||
|     if (dir >= shiftSignal::BACKWARD_CONST) { |  | ||||||
|         dir -= shiftSignal::BACKWARD_CONST; |  | ||||||
|         shift[dir]+=-1; |  | ||||||
|     } else if (dir == shiftSignal::NO_SHIFT) { |  | ||||||
|         ; // do nothing |  | ||||||
|     } else { |  | ||||||
|         shift[dir]+=1; |  | ||||||
|     } |  | ||||||
|     generalShift(shift, args...); |  | ||||||
| } |  | ||||||
|  |  | ||||||
|  |  | ||||||
| NAMESPACE_END(Grid); | NAMESPACE_END(Grid); | ||||||
|  |  | ||||||
|   | |||||||
| @@ -70,6 +70,57 @@ struct DefaultImplParams { | |||||||
| void Gather_plane_table_compute (GridBase *grid,int dimension,int plane,int cbmask, | void Gather_plane_table_compute (GridBase *grid,int dimension,int plane,int cbmask, | ||||||
| 				 int off,std::vector<std::pair<int,int> > & table); | 				 int off,std::vector<std::pair<int,int> > & table); | ||||||
|  |  | ||||||
|  | /* | ||||||
|  | template<class vobj,class cobj,class compressor> | ||||||
|  | void Gather_plane_simple_table (commVector<std::pair<int,int> >& table,const Lattice<vobj> &rhs,cobj *buffer,compressor &compress, int off,int so)   __attribute__((noinline)); | ||||||
|  |  | ||||||
|  | template<class vobj,class cobj,class compressor> | ||||||
|  | void Gather_plane_simple_table (commVector<std::pair<int,int> >& table,const Lattice<vobj> &rhs,cobj *buffer,compressor &compress, int off,int so) | ||||||
|  | { | ||||||
|  |   int num=table.size(); | ||||||
|  |   std::pair<int,int> *table_v = & table[0]; | ||||||
|  |  | ||||||
|  |   auto rhs_v = rhs.View(AcceleratorRead); | ||||||
|  |   accelerator_forNB( i,num, vobj::Nsimd(), { | ||||||
|  |     compress.Compress(buffer[off+table_v[i].first],rhs_v[so+table_v[i].second]); | ||||||
|  |   }); | ||||||
|  |   rhs_v.ViewClose(); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /////////////////////////////////////////////////////////////////// | ||||||
|  | // Gather for when there *is* need to SIMD split with compression | ||||||
|  | /////////////////////////////////////////////////////////////////// | ||||||
|  | template<class cobj,class vobj,class compressor> | ||||||
|  | void Gather_plane_exchange_table(const Lattice<vobj> &rhs, | ||||||
|  | 				 commVector<cobj *> pointers, | ||||||
|  | 				 int dimension,int plane, | ||||||
|  | 				 int cbmask,compressor &compress,int type) __attribute__((noinline)); | ||||||
|  |  | ||||||
|  | template<class cobj,class vobj,class compressor> | ||||||
|  | void Gather_plane_exchange_table(commVector<std::pair<int,int> >& table, | ||||||
|  | 				 const Lattice<vobj> &rhs, | ||||||
|  | 				 std::vector<cobj *> &pointers,int dimension,int plane,int cbmask, | ||||||
|  | 				 compressor &compress,int type) | ||||||
|  | { | ||||||
|  |   assert( (table.size()&0x1)==0); | ||||||
|  |   int num=table.size()/2; | ||||||
|  |   int so  = plane*rhs.Grid()->_ostride[dimension]; // base offset for start of plane | ||||||
|  |  | ||||||
|  |   auto rhs_v = rhs.View(AcceleratorRead); | ||||||
|  |   auto rhs_p = &rhs_v[0]; | ||||||
|  |   auto p0=&pointers[0][0]; | ||||||
|  |   auto p1=&pointers[1][0]; | ||||||
|  |   auto tp=&table[0]; | ||||||
|  |   accelerator_forNB(j, num, vobj::Nsimd(), { | ||||||
|  |       compress.CompressExchange(p0,p1, rhs_p, j, | ||||||
|  | 				so+tp[2*j  ].second, | ||||||
|  | 				so+tp[2*j+1].second, | ||||||
|  | 				type); | ||||||
|  |   }); | ||||||
|  |   rhs_v.ViewClose(); | ||||||
|  | } | ||||||
|  | */ | ||||||
|  |  | ||||||
| void DslashResetCounts(void); | void DslashResetCounts(void); | ||||||
| void DslashGetCounts(uint64_t &dirichlet,uint64_t &partial,uint64_t &full); | void DslashGetCounts(uint64_t &dirichlet,uint64_t &partial,uint64_t &full); | ||||||
| void DslashLogFull(void); | void DslashLogFull(void); | ||||||
| @@ -207,10 +258,6 @@ public: | |||||||
|   struct Packet { |   struct Packet { | ||||||
|     void * send_buf; |     void * send_buf; | ||||||
|     void * recv_buf; |     void * recv_buf; | ||||||
| #ifndef ACCELERATOR_AWARE_MPI |  | ||||||
|     void * host_send_buf; // Allocate this if not MPI_CUDA_AWARE |  | ||||||
|     void * host_recv_buf; // Allocate this if not MPI_CUDA_AWARE |  | ||||||
| #endif |  | ||||||
|     Integer to_rank; |     Integer to_rank; | ||||||
|     Integer from_rank; |     Integer from_rank; | ||||||
|     Integer do_send; |     Integer do_send; | ||||||
| @@ -277,7 +324,7 @@ public: | |||||||
|   Vector<int> surface_list; |   Vector<int> surface_list; | ||||||
|  |  | ||||||
|   stencilVector<StencilEntry>  _entries; // Resident in managed memory |   stencilVector<StencilEntry>  _entries; // Resident in managed memory | ||||||
|   commVector<StencilEntry>     _entries_device; // Resident in device memory |   commVector<StencilEntry>     _entries_device; // Resident in managed memory | ||||||
|   std::vector<Packet> Packets; |   std::vector<Packet> Packets; | ||||||
|   std::vector<Merge> Mergers; |   std::vector<Merge> Mergers; | ||||||
|   std::vector<Merge> MergersSHM; |   std::vector<Merge> MergersSHM; | ||||||
| @@ -361,16 +408,33 @@ public: | |||||||
|   // Use OpenMP Tasks for cleaner ??? |   // Use OpenMP Tasks for cleaner ??? | ||||||
|   // must be called *inside* parallel region |   // must be called *inside* parallel region | ||||||
|   ////////////////////////////////////////// |   ////////////////////////////////////////// | ||||||
|  |   /* | ||||||
|  |   void CommunicateThreaded() | ||||||
|  |   { | ||||||
|  | #ifdef GRID_OMP | ||||||
|  |     int mythread = omp_get_thread_num(); | ||||||
|  |     int nthreads = CartesianCommunicator::nCommThreads; | ||||||
|  | #else | ||||||
|  |     int mythread = 0; | ||||||
|  |     int nthreads = 1; | ||||||
|  | #endif | ||||||
|  |     if (nthreads == -1) nthreads = 1; | ||||||
|  |     if (mythread < nthreads) { | ||||||
|  |       for (int i = mythread; i < Packets.size(); i += nthreads) { | ||||||
|  | 	uint64_t bytes = _grid->StencilSendToRecvFrom(Packets[i].send_buf, | ||||||
|  | 						      Packets[i].to_rank, | ||||||
|  | 						      Packets[i].recv_buf, | ||||||
|  | 						      Packets[i].from_rank, | ||||||
|  | 						      Packets[i].bytes,i); | ||||||
|  |       } | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  |   */ | ||||||
|   //////////////////////////////////////////////////////////////////////// |   //////////////////////////////////////////////////////////////////////// | ||||||
|   // Non blocking send and receive. Necessarily parallel. |   // Non blocking send and receive. Necessarily parallel. | ||||||
|   //////////////////////////////////////////////////////////////////////// |   //////////////////////////////////////////////////////////////////////// | ||||||
|   void CommunicateBegin(std::vector<std::vector<CommsRequest_t> > &reqs) |   void CommunicateBegin(std::vector<std::vector<CommsRequest_t> > &reqs) | ||||||
|   { |   { | ||||||
|     // All GPU kernel tasks must complete |  | ||||||
|     //    accelerator_barrier();     // All kernels should ALREADY be complete |  | ||||||
|     //    _grid->StencilBarrier();   // Everyone is here, so noone running slow and still using receive buffer |  | ||||||
|                                // But the HaloGather had a barrier too. |  | ||||||
| #ifdef ACCELERATOR_AWARE_MPI |  | ||||||
|     for(int i=0;i<Packets.size();i++){ |     for(int i=0;i<Packets.size();i++){ | ||||||
|       _grid->StencilSendToRecvFromBegin(MpiReqs, |       _grid->StencilSendToRecvFromBegin(MpiReqs, | ||||||
| 					Packets[i].send_buf, | 					Packets[i].send_buf, | ||||||
| @@ -379,54 +443,16 @@ public: | |||||||
| 					Packets[i].from_rank,Packets[i].do_recv, | 					Packets[i].from_rank,Packets[i].do_recv, | ||||||
| 					Packets[i].xbytes,Packets[i].rbytes,i); | 					Packets[i].xbytes,Packets[i].rbytes,i); | ||||||
|     } |     } | ||||||
| #else |  | ||||||
| #warning "Using COPY VIA HOST BUFFERS IN STENCIL" |  | ||||||
|     for(int i=0;i<Packets.size();i++){ |  | ||||||
|       // Introduce a host buffer with a cheap slab allocator and zero cost wipe all |  | ||||||
|       Packets[i].host_send_buf = _grid->HostBufferMalloc(Packets[i].xbytes); |  | ||||||
|       Packets[i].host_recv_buf = _grid->HostBufferMalloc(Packets[i].rbytes); |  | ||||||
|       if ( Packets[i].do_send ) { |  | ||||||
| 	acceleratorCopyFromDevice(Packets[i].send_buf, Packets[i].host_send_buf,Packets[i].xbytes); |  | ||||||
|       } |  | ||||||
|       _grid->StencilSendToRecvFromBegin(MpiReqs, |  | ||||||
| 					Packets[i].host_send_buf, |  | ||||||
| 					Packets[i].to_rank,Packets[i].do_send, |  | ||||||
| 					Packets[i].host_recv_buf, |  | ||||||
| 					Packets[i].from_rank,Packets[i].do_recv, |  | ||||||
| 					Packets[i].xbytes,Packets[i].rbytes,i); |  | ||||||
|     } |  | ||||||
| #endif |  | ||||||
|     // Get comms started then run checksums |  | ||||||
|     // Having this PRIOR to the dslash seems to make Sunspot work... (!) |  | ||||||
|     for(int i=0;i<Packets.size();i++){ |  | ||||||
|       if ( Packets[i].do_send ) |  | ||||||
| 	FlightRecorder::xmitLog(Packets[i].send_buf,Packets[i].xbytes); |  | ||||||
|     } |  | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   void CommunicateComplete(std::vector<std::vector<CommsRequest_t> > &reqs) |   void CommunicateComplete(std::vector<std::vector<CommsRequest_t> > &reqs) | ||||||
|   { |   { | ||||||
|     _grid->StencilSendToRecvFromComplete(MpiReqs,0); // MPI is done |     _grid->StencilSendToRecvFromComplete(MpiReqs,0); | ||||||
|     if   ( this->partialDirichlet ) DslashLogPartial(); |     if   ( this->partialDirichlet ) DslashLogPartial(); | ||||||
|     else if ( this->fullDirichlet ) DslashLogDirichlet(); |     else if ( this->fullDirichlet ) DslashLogDirichlet(); | ||||||
|     else DslashLogFull(); |     else DslashLogFull(); | ||||||
|     // acceleratorCopySynchronise() is in the StencilSendToRecvFromComplete |     acceleratorCopySynchronise(); | ||||||
|     //    accelerator_barrier();  |  | ||||||
|     _grid->StencilBarrier();  |     _grid->StencilBarrier();  | ||||||
| #ifndef ACCELERATOR_AWARE_MPI |  | ||||||
| #warning "Using COPY VIA HOST BUFFERS IN STENCIL" |  | ||||||
|     for(int i=0;i<Packets.size();i++){ |  | ||||||
|       if ( Packets[i].do_recv ) { |  | ||||||
| 	acceleratorCopyToDevice(Packets[i].host_recv_buf, Packets[i].recv_buf,Packets[i].rbytes); |  | ||||||
|       } |  | ||||||
|     } |  | ||||||
|     _grid->HostBufferFreeAll(); |  | ||||||
| #endif |  | ||||||
|     // run any checksums |  | ||||||
|     for(int i=0;i<Packets.size();i++){ |  | ||||||
|       if ( Packets[i].do_recv ) |  | ||||||
| 	FlightRecorder::recvLog(Packets[i].recv_buf,Packets[i].rbytes,Packets[i].from_rank); |  | ||||||
|     } |  | ||||||
|   } |   } | ||||||
|   //////////////////////////////////////////////////////////////////////// |   //////////////////////////////////////////////////////////////////////// | ||||||
|   // Blocking send and receive. Either sequential or parallel. |   // Blocking send and receive. Either sequential or parallel. | ||||||
| @@ -502,7 +528,6 @@ public: | |||||||
|   template<class compressor> |   template<class compressor> | ||||||
|   void HaloGather(const Lattice<vobj> &source,compressor &compress) |   void HaloGather(const Lattice<vobj> &source,compressor &compress) | ||||||
|   { |   { | ||||||
|     //    accelerator_barrier(); |  | ||||||
|     _grid->StencilBarrier();// Synch shared memory on a single nodes |     _grid->StencilBarrier();// Synch shared memory on a single nodes | ||||||
|  |  | ||||||
|     assert(source.Grid()==_grid); |     assert(source.Grid()==_grid); | ||||||
| @@ -515,9 +540,10 @@ public: | |||||||
|       compress.Point(point); |       compress.Point(point); | ||||||
|       HaloGatherDir(source,compress,point,face_idx); |       HaloGatherDir(source,compress,point,face_idx); | ||||||
|     } |     } | ||||||
|     accelerator_barrier(); // All my local gathers are complete |     accelerator_barrier(); | ||||||
|     face_table_computed=1; |     face_table_computed=1; | ||||||
|     assert(u_comm_offset==_unified_buffer_size); |     assert(u_comm_offset==_unified_buffer_size); | ||||||
|  |  | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   ///////////////////////// |   ///////////////////////// | ||||||
| @@ -553,7 +579,6 @@ public: | |||||||
|       accelerator_forNB(j, words, cobj::Nsimd(), { |       accelerator_forNB(j, words, cobj::Nsimd(), { | ||||||
| 	  coalescedWrite(to[j] ,coalescedRead(from [j])); | 	  coalescedWrite(to[j] ,coalescedRead(from [j])); | ||||||
|       }); |       }); | ||||||
|       acceleratorFenceComputeStream(); |  | ||||||
|     } |     } | ||||||
|   } |   } | ||||||
|    |    | ||||||
| @@ -644,7 +669,6 @@ public: | |||||||
|     for(int i=0;i<dd.size();i++){ |     for(int i=0;i<dd.size();i++){ | ||||||
|       decompressor::DecompressFace(decompress,dd[i]); |       decompressor::DecompressFace(decompress,dd[i]); | ||||||
|     } |     } | ||||||
|     acceleratorFenceComputeStream(); // dependent kernels |  | ||||||
|   } |   } | ||||||
|   //////////////////////////////////////// |   //////////////////////////////////////// | ||||||
|   // Set up routines |   // Set up routines | ||||||
| @@ -682,7 +706,7 @@ public: | |||||||
| 	} | 	} | ||||||
|       } |       } | ||||||
|     } |     } | ||||||
|     //std::cout << "BuildSurfaceList size is "<<surface_list.size()<<std::endl; |     std::cout << GridLogDebug << "BuildSurfaceList size is "<<surface_list.size()<<std::endl; | ||||||
|   } |   } | ||||||
|   /// Introduce a block structure and switch off comms on boundaries |   /// Introduce a block structure and switch off comms on boundaries | ||||||
|   void DirichletBlock(const Coordinate &dirichlet_block) |   void DirichletBlock(const Coordinate &dirichlet_block) | ||||||
| @@ -737,8 +761,7 @@ public: | |||||||
| 		   int checkerboard, | 		   int checkerboard, | ||||||
| 		   const std::vector<int> &directions, | 		   const std::vector<int> &directions, | ||||||
| 		   const std::vector<int> &distances, | 		   const std::vector<int> &distances, | ||||||
| 		   Parameters p=Parameters(), | 		   Parameters p=Parameters()) | ||||||
| 		   bool preserve_shm=false) |  | ||||||
|   { |   { | ||||||
|     face_table_computed=0; |     face_table_computed=0; | ||||||
|     _grid    = grid; |     _grid    = grid; | ||||||
| @@ -832,9 +855,7 @@ public: | |||||||
|     ///////////////////////////////////////////////////////////////////////////////// |     ///////////////////////////////////////////////////////////////////////////////// | ||||||
|     const int Nsimd = grid->Nsimd(); |     const int Nsimd = grid->Nsimd(); | ||||||
|  |  | ||||||
|     // Allow for multiple stencils to exist simultaneously |     _grid->ShmBufferFreeAll(); | ||||||
|     if (!preserve_shm) |  | ||||||
|       _grid->ShmBufferFreeAll(); |  | ||||||
|  |  | ||||||
|     int maxl=2; |     int maxl=2; | ||||||
|     u_simd_send_buf.resize(maxl); |     u_simd_send_buf.resize(maxl); | ||||||
| @@ -1200,6 +1221,7 @@ public: | |||||||
| 	  /////////////////////////////////////////////////////////// | 	  /////////////////////////////////////////////////////////// | ||||||
| 	  int do_send = (comms_send|comms_partial_send) && (!shm_send ); | 	  int do_send = (comms_send|comms_partial_send) && (!shm_send ); | ||||||
| 	  int do_recv = (comms_send|comms_partial_send) && (!shm_recv ); | 	  int do_recv = (comms_send|comms_partial_send) && (!shm_recv ); | ||||||
|  | 	   | ||||||
| 	  AddPacket((void *)&send_buf[comm_off], | 	  AddPacket((void *)&send_buf[comm_off], | ||||||
| 		    (void *)&recv_buf[comm_off], | 		    (void *)&recv_buf[comm_off], | ||||||
| 		    xmit_to_rank, do_send, | 		    xmit_to_rank, do_send, | ||||||
|   | |||||||
| @@ -460,9 +460,3 @@ void vprefetch(const iMatrix<v, N> &vv) { | |||||||
|  |  | ||||||
| NAMESPACE_END(Grid); | NAMESPACE_END(Grid); | ||||||
|  |  | ||||||
|  |  | ||||||
| #ifdef GRID_SYCL |  | ||||||
| template<class vec> struct sycl::is_device_copyable<Grid::iScalar<vec> > : public std::true_type {}; |  | ||||||
| template<class vec,int N> struct sycl::is_device_copyable<Grid::iVector<vec,N> > : public std::true_type {}; |  | ||||||
| template<class vec,int N> struct sycl::is_device_copyable<Grid::iMatrix<vec,N> > : public std::true_type {}; |  | ||||||
| #endif |  | ||||||
|   | |||||||
| @@ -404,5 +404,3 @@ NAMESPACE_BEGIN(Grid); | |||||||
|   }; |   }; | ||||||
| NAMESPACE_END(Grid); | NAMESPACE_END(Grid); | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|   | |||||||
| @@ -122,7 +122,7 @@ hipStream_t computeStream; | |||||||
| void acceleratorInit(void) | void acceleratorInit(void) | ||||||
| { | { | ||||||
|   int nDevices = 1; |   int nDevices = 1; | ||||||
|   auto discard = hipGetDeviceCount(&nDevices); |   hipGetDeviceCount(&nDevices); | ||||||
|   gpu_props = new hipDeviceProp_t[nDevices]; |   gpu_props = new hipDeviceProp_t[nDevices]; | ||||||
|  |  | ||||||
|   char * localRankStr = NULL; |   char * localRankStr = NULL; | ||||||
| @@ -149,7 +149,7 @@ void acceleratorInit(void) | |||||||
| #define GPU_PROP_FMT(canMapHostMemory,FMT)     printf("AcceleratorHipInit:   " #canMapHostMemory ": " FMT" \n",prop.canMapHostMemory); | #define GPU_PROP_FMT(canMapHostMemory,FMT)     printf("AcceleratorHipInit:   " #canMapHostMemory ": " FMT" \n",prop.canMapHostMemory); | ||||||
| #define GPU_PROP(canMapHostMemory)             GPU_PROP_FMT(canMapHostMemory,"%d"); | #define GPU_PROP(canMapHostMemory)             GPU_PROP_FMT(canMapHostMemory,"%d"); | ||||||
|      |      | ||||||
|     discard = hipGetDeviceProperties(&gpu_props[i], i); |     auto r=hipGetDeviceProperties(&gpu_props[i], i); | ||||||
|     hipDeviceProp_t prop;  |     hipDeviceProp_t prop;  | ||||||
|     prop = gpu_props[i]; |     prop = gpu_props[i]; | ||||||
|     totalDeviceMem = prop.totalGlobalMem; |     totalDeviceMem = prop.totalGlobalMem; | ||||||
| @@ -186,13 +186,13 @@ void acceleratorInit(void) | |||||||
|   } |   } | ||||||
|   int device = rank; |   int device = rank; | ||||||
| #endif | #endif | ||||||
|   discard = hipSetDevice(device); |   hipSetDevice(device); | ||||||
|   discard = hipStreamCreate(©Stream); |   hipStreamCreate(©Stream); | ||||||
|   discard = hipStreamCreate(&computeStream); |   hipStreamCreate(&computeStream); | ||||||
|   const int len=64; |   const int len=64; | ||||||
|   char busid[len]; |   char busid[len]; | ||||||
|   if( rank == world_rank ) {  |   if( rank == world_rank ) {  | ||||||
|     discard = hipDeviceGetPCIBusId(busid, len, device); |     hipDeviceGetPCIBusId(busid, len, device); | ||||||
|     printf("local rank %d device %d bus id: %s\n", rank, device, busid); |     printf("local rank %d device %d bus id: %s\n", rank, device, busid); | ||||||
|   } |   } | ||||||
|   if ( world_rank == 0 )  printf("AcceleratorHipInit: ================================================\n"); |   if ( world_rank == 0 )  printf("AcceleratorHipInit: ================================================\n"); | ||||||
| @@ -210,8 +210,8 @@ void acceleratorInit(void) | |||||||
|   cl::sycl::gpu_selector selector; |   cl::sycl::gpu_selector selector; | ||||||
|   cl::sycl::device selectedDevice { selector }; |   cl::sycl::device selectedDevice { selector }; | ||||||
|   theGridAccelerator = new sycl::queue (selectedDevice); |   theGridAccelerator = new sycl::queue (selectedDevice); | ||||||
|   theCopyAccelerator = new sycl::queue (selectedDevice); |   //  theCopyAccelerator = new sycl::queue (selectedDevice); | ||||||
|   //  theCopyAccelerator = theGridAccelerator; // Should proceed concurrenlty anyway. |   theCopyAccelerator = theGridAccelerator; // Should proceed concurrenlty anyway. | ||||||
|  |  | ||||||
| #ifdef GRID_SYCL_LEVEL_ZERO_IPC | #ifdef GRID_SYCL_LEVEL_ZERO_IPC | ||||||
|   zeInit(0); |   zeInit(0); | ||||||
|   | |||||||
| @@ -117,7 +117,7 @@ accelerator_inline int acceleratorSIMTlane(int Nsimd) { | |||||||
| #endif | #endif | ||||||
| } // CUDA specific | } // CUDA specific | ||||||
|  |  | ||||||
| inline void acceleratorMem(void) | inline void cuda_mem(void) | ||||||
| { | { | ||||||
|   size_t free_t,total_t,used_t; |   size_t free_t,total_t,used_t; | ||||||
|   cudaMemGetInfo(&free_t,&total_t); |   cudaMemGetInfo(&free_t,&total_t); | ||||||
| @@ -125,11 +125,6 @@ inline void acceleratorMem(void) | |||||||
|   std::cout << " MemoryManager : GPU used "<<used_t<<" free "<<free_t<< " total "<<total_t<<std::endl; |   std::cout << " MemoryManager : GPU used "<<used_t<<" free "<<free_t<< " total "<<total_t<<std::endl; | ||||||
| } | } | ||||||
|  |  | ||||||
| inline void cuda_mem(void) |  | ||||||
| { |  | ||||||
|   acceleratorMem(); |  | ||||||
| } |  | ||||||
|  |  | ||||||
| #define accelerator_for2dNB( iter1, num1, iter2, num2, nsimd, ... )	\ | #define accelerator_for2dNB( iter1, num1, iter2, num2, nsimd, ... )	\ | ||||||
|   {									\ |   {									\ | ||||||
|     int nt=acceleratorThreads();					\ |     int nt=acceleratorThreads();					\ | ||||||
| @@ -142,18 +137,6 @@ inline void cuda_mem(void) | |||||||
|     dim3 cu_blocks ((num1+nt-1)/nt,num2,1);				\ |     dim3 cu_blocks ((num1+nt-1)/nt,num2,1);				\ | ||||||
|     LambdaApply<<<cu_blocks,cu_threads,0,computeStream>>>(num1,num2,nsimd,lambda);	\ |     LambdaApply<<<cu_blocks,cu_threads,0,computeStream>>>(num1,num2,nsimd,lambda);	\ | ||||||
|   } |   } | ||||||
| #define prof_accelerator_for2dNB( iter1, num1, iter2, num2, nsimd, ... )	\ |  | ||||||
|   {									\ |  | ||||||
|     int nt=acceleratorThreads();					\ |  | ||||||
|     typedef uint64_t Iterator;						\ |  | ||||||
|     auto lambda = [=] accelerator					\ |  | ||||||
|       (Iterator iter1,Iterator iter2,Iterator lane) mutable {		\ |  | ||||||
|       __VA_ARGS__;							\ |  | ||||||
|     };									\ |  | ||||||
|     dim3 cu_threads(nsimd,acceleratorThreads(),1);			\ |  | ||||||
|     dim3 cu_blocks ((num1+nt-1)/nt,num2,1);				\ |  | ||||||
|     ProfileLambdaApply<<<cu_blocks,cu_threads,0,computeStream>>>(num1,num2,nsimd,lambda); \ |  | ||||||
|   } |  | ||||||
|  |  | ||||||
| #define accelerator_for6dNB(iter1, num1,				\ | #define accelerator_for6dNB(iter1, num1,				\ | ||||||
|                             iter2, num2,				\ |                             iter2, num2,				\ | ||||||
| @@ -174,20 +157,6 @@ inline void cuda_mem(void) | |||||||
|     Lambda6Apply<<<cu_blocks,cu_threads,0,computeStream>>>(num1,num2,num3,num4,num5,num6,lambda); \ |     Lambda6Apply<<<cu_blocks,cu_threads,0,computeStream>>>(num1,num2,num3,num4,num5,num6,lambda); \ | ||||||
|   } |   } | ||||||
|  |  | ||||||
|  |  | ||||||
| #define accelerator_for2dNB( iter1, num1, iter2, num2, nsimd, ... )	\ |  | ||||||
|   {									\ |  | ||||||
|     int nt=acceleratorThreads();					\ |  | ||||||
|     typedef uint64_t Iterator;						\ |  | ||||||
|     auto lambda = [=] accelerator					\ |  | ||||||
|       (Iterator iter1,Iterator iter2,Iterator lane) mutable {		\ |  | ||||||
|       __VA_ARGS__;							\ |  | ||||||
|     };									\ |  | ||||||
|     dim3 cu_threads(nsimd,acceleratorThreads(),1);			\ |  | ||||||
|     dim3 cu_blocks ((num1+nt-1)/nt,num2,1);				\ |  | ||||||
|     LambdaApply<<<cu_blocks,cu_threads,0,computeStream>>>(num1,num2,nsimd,lambda);	\ |  | ||||||
|   } |  | ||||||
|  |  | ||||||
| template<typename lambda>  __global__ | template<typename lambda>  __global__ | ||||||
| void LambdaApply(uint64_t num1, uint64_t num2, uint64_t num3, lambda Lambda) | void LambdaApply(uint64_t num1, uint64_t num2, uint64_t num3, lambda Lambda) | ||||||
| { | { | ||||||
| @@ -199,17 +168,6 @@ void LambdaApply(uint64_t num1, uint64_t num2, uint64_t num3, lambda Lambda) | |||||||
|     Lambda(x,y,z); |     Lambda(x,y,z); | ||||||
|   } |   } | ||||||
| } | } | ||||||
| template<typename lambda>  __global__ |  | ||||||
| void ProfileLambdaApply(uint64_t num1, uint64_t num2, uint64_t num3, lambda Lambda) |  | ||||||
| { |  | ||||||
|   // Weird permute is to make lane coalesce for large blocks |  | ||||||
|   uint64_t x = threadIdx.y + blockDim.y*blockIdx.x; |  | ||||||
|   uint64_t y = threadIdx.z + blockDim.z*blockIdx.y; |  | ||||||
|   uint64_t z = threadIdx.x; |  | ||||||
|   if ( (x < num1) && (y<num2) && (z<num3) ) { |  | ||||||
|     Lambda(x,y,z); |  | ||||||
|   } |  | ||||||
| } |  | ||||||
|  |  | ||||||
| template<typename lambda>  __global__ | template<typename lambda>  __global__ | ||||||
| void Lambda6Apply(uint64_t num1, uint64_t num2, uint64_t num3, | void Lambda6Apply(uint64_t num1, uint64_t num2, uint64_t num3, | ||||||
| @@ -250,7 +208,6 @@ inline void *acceleratorAllocShared(size_t bytes) | |||||||
|   if( err != cudaSuccess ) { |   if( err != cudaSuccess ) { | ||||||
|     ptr = (void *) NULL; |     ptr = (void *) NULL; | ||||||
|     printf(" cudaMallocManaged failed for %d %s \n",bytes,cudaGetErrorString(err)); |     printf(" cudaMallocManaged failed for %d %s \n",bytes,cudaGetErrorString(err)); | ||||||
|     assert(0); |  | ||||||
|   } |   } | ||||||
|   return ptr; |   return ptr; | ||||||
| }; | }; | ||||||
| @@ -268,8 +225,6 @@ inline void acceleratorFreeShared(void *ptr){ cudaFree(ptr);}; | |||||||
| inline void acceleratorFreeDevice(void *ptr){ cudaFree(ptr);}; | inline void acceleratorFreeDevice(void *ptr){ cudaFree(ptr);}; | ||||||
| inline void acceleratorCopyToDevice(void *from,void *to,size_t bytes)  { cudaMemcpy(to,from,bytes, cudaMemcpyHostToDevice);} | inline void acceleratorCopyToDevice(void *from,void *to,size_t bytes)  { cudaMemcpy(to,from,bytes, cudaMemcpyHostToDevice);} | ||||||
| inline void acceleratorCopyFromDevice(void *from,void *to,size_t bytes){ cudaMemcpy(to,from,bytes, cudaMemcpyDeviceToHost);} | inline void acceleratorCopyFromDevice(void *from,void *to,size_t bytes){ cudaMemcpy(to,from,bytes, cudaMemcpyDeviceToHost);} | ||||||
| inline void acceleratorCopyToDeviceAsync(void *from, void *to, size_t bytes, cudaStream_t stream = copyStream) { cudaMemcpyAsync(to,from,bytes, cudaMemcpyHostToDevice, stream);} |  | ||||||
| inline void acceleratorCopyFromDeviceAsync(void *from, void *to, size_t bytes, cudaStream_t stream = copyStream) { cudaMemcpyAsync(to,from,bytes, cudaMemcpyDeviceToHost, stream);} |  | ||||||
| inline void acceleratorMemSet(void *base,int value,size_t bytes) { cudaMemset(base,value,bytes);} | inline void acceleratorMemSet(void *base,int value,size_t bytes) { cudaMemset(base,value,bytes);} | ||||||
| inline void acceleratorCopyDeviceToDeviceAsynch(void *from,void *to,size_t bytes) // Asynch | inline void acceleratorCopyDeviceToDeviceAsynch(void *from,void *to,size_t bytes) // Asynch | ||||||
| { | { | ||||||
| @@ -277,7 +232,6 @@ inline void acceleratorCopyDeviceToDeviceAsynch(void *from,void *to,size_t bytes | |||||||
| } | } | ||||||
| inline void acceleratorCopySynchronise(void) { cudaStreamSynchronize(copyStream); }; | inline void acceleratorCopySynchronise(void) { cudaStreamSynchronize(copyStream); }; | ||||||
|  |  | ||||||
|  |  | ||||||
| inline int  acceleratorIsCommunicable(void *ptr) | inline int  acceleratorIsCommunicable(void *ptr) | ||||||
| { | { | ||||||
|   //  int uvm=0; |   //  int uvm=0; | ||||||
| @@ -299,21 +253,20 @@ inline int  acceleratorIsCommunicable(void *ptr) | |||||||
| #define GRID_SYCL_LEVEL_ZERO_IPC | #define GRID_SYCL_LEVEL_ZERO_IPC | ||||||
|  |  | ||||||
| NAMESPACE_END(Grid); | NAMESPACE_END(Grid); | ||||||
|  | #if 0 | ||||||
| // Force deterministic reductions | #include <CL/sycl.hpp> | ||||||
| #define SYCL_REDUCTION_DETERMINISTIC | #include <CL/sycl/usm.hpp> | ||||||
|  | #include <level_zero/ze_api.h> | ||||||
|  | #include <CL/sycl/backend/level_zero.hpp> | ||||||
|  | #else | ||||||
| #include <sycl/CL/sycl.hpp> | #include <sycl/CL/sycl.hpp> | ||||||
| #include <sycl/usm.hpp> | #include <sycl/usm.hpp> | ||||||
| #include <level_zero/ze_api.h> | #include <level_zero/ze_api.h> | ||||||
| #include <sycl/ext/oneapi/backend/level_zero.hpp> | #include <sycl/ext/oneapi/backend/level_zero.hpp> | ||||||
|  | #endif | ||||||
|  |  | ||||||
| NAMESPACE_BEGIN(Grid); | NAMESPACE_BEGIN(Grid); | ||||||
|  |  | ||||||
| inline void acceleratorMem(void) |  | ||||||
| { |  | ||||||
|   std::cout <<" SYCL acceleratorMem not implemented"<<std::endl; |  | ||||||
| } |  | ||||||
|  |  | ||||||
| extern cl::sycl::queue *theGridAccelerator; | extern cl::sycl::queue *theGridAccelerator; | ||||||
| extern cl::sycl::queue *theCopyAccelerator; | extern cl::sycl::queue *theCopyAccelerator; | ||||||
|  |  | ||||||
| @@ -334,24 +287,23 @@ accelerator_inline int acceleratorSIMTlane(int Nsimd) { | |||||||
|  |  | ||||||
| #define accelerator_for2dNB( iter1, num1, iter2, num2, nsimd, ... )	\ | #define accelerator_for2dNB( iter1, num1, iter2, num2, nsimd, ... )	\ | ||||||
|   theGridAccelerator->submit([&](cl::sycl::handler &cgh) {		\ |   theGridAccelerator->submit([&](cl::sycl::handler &cgh) {		\ | ||||||
|     unsigned long nt=acceleratorThreads();				\ |       unsigned long nt=acceleratorThreads();				\ | ||||||
|     if(nt < 8)nt=8;							\ |       unsigned long unum1 = num1;					\ | ||||||
|     unsigned long unum1 = num1;						\ |       unsigned long unum2 = num2;					\ | ||||||
|     unsigned long unum2 = num2;						\ |       if(nt < 8)nt=8;							\ | ||||||
|     unsigned long unum1_divisible_by_nt = ((unum1 + nt - 1) / nt) * nt;	\ |       cl::sycl::range<3> local {nt,1,nsimd};				\ | ||||||
|     cl::sycl::range<3> local {nt,1,nsimd};				\ |       cl::sycl::range<3> global{unum1,unum2,nsimd};			\ | ||||||
|     cl::sycl::range<3> global{unum1_divisible_by_nt,unum2,nsimd};	\ |       cgh.parallel_for(					\ | ||||||
|     cgh.parallel_for(							\ |       cl::sycl::nd_range<3>(global,local), \ | ||||||
| 		     cl::sycl::nd_range<3>(global,local),		\ |       [=] (cl::sycl::nd_item<3> item) /*mutable*/     \ | ||||||
| 		     [=] (cl::sycl::nd_item<3> item) /*mutable*/	\ |       [[intel::reqd_sub_group_size(16)]]	      \ | ||||||
| 		     [[intel::reqd_sub_group_size(16)]]			\ |       {						      \ | ||||||
| 		     {							\ |       auto iter1    = item.get_global_id(0);	      \ | ||||||
| 		       auto iter1    = item.get_global_id(0);		\ |       auto iter2    = item.get_global_id(1);	      \ | ||||||
| 		       auto iter2    = item.get_global_id(1);		\ |       auto lane     = item.get_global_id(2);	      \ | ||||||
| 		       auto lane     = item.get_global_id(2);		\ |       { __VA_ARGS__ };				      \ | ||||||
| 		       { if (iter1 < unum1){ __VA_ARGS__ } };		\ |      });	   			              \ | ||||||
| 		     });						\ |     }); | ||||||
|   }); |  | ||||||
|  |  | ||||||
| #define accelerator_barrier(dummy) { theGridAccelerator->wait(); } | #define accelerator_barrier(dummy) { theGridAccelerator->wait(); } | ||||||
|  |  | ||||||
| @@ -393,15 +345,6 @@ NAMESPACE_BEGIN(Grid); | |||||||
| #define accelerator        __host__ __device__ | #define accelerator        __host__ __device__ | ||||||
| #define accelerator_inline __host__ __device__ inline | #define accelerator_inline __host__ __device__ inline | ||||||
|  |  | ||||||
| inline void acceleratorMem(void) |  | ||||||
| { |  | ||||||
|   size_t free_t,total_t,used_t; |  | ||||||
|   auto discard = hipMemGetInfo(&free_t,&total_t); |  | ||||||
|   used_t=total_t-free_t; |  | ||||||
|   std::cout << " MemoryManager : GPU used "<<used_t<<" free "<<free_t<< " total "<<total_t<<std::endl; |  | ||||||
| } |  | ||||||
|  |  | ||||||
|  |  | ||||||
| extern hipStream_t copyStream; | extern hipStream_t copyStream; | ||||||
| extern hipStream_t computeStream; | extern hipStream_t computeStream; | ||||||
| /*These routines define mapping from thread grid to loop & vector lane indexing */ | /*These routines define mapping from thread grid to loop & vector lane indexing */ | ||||||
| @@ -462,7 +405,7 @@ void LambdaApply(uint64_t numx, uint64_t numy, uint64_t numz, lambda Lambda) | |||||||
|  |  | ||||||
| #define accelerator_barrier(dummy)				\ | #define accelerator_barrier(dummy)				\ | ||||||
|   {								\ |   {								\ | ||||||
|     auto tmp=hipStreamSynchronize(computeStream);		\ |     auto r=hipStreamSynchronize(computeStream);			\ | ||||||
|     auto err = hipGetLastError();				\ |     auto err = hipGetLastError();				\ | ||||||
|     if ( err != hipSuccess ) {					\ |     if ( err != hipSuccess ) {					\ | ||||||
|       printf("After hipDeviceSynchronize() : HIP error %s \n", hipGetErrorString( err )); \ |       printf("After hipDeviceSynchronize() : HIP error %s \n", hipGetErrorString( err )); \ | ||||||
| @@ -478,7 +421,7 @@ inline void *acceleratorAllocShared(size_t bytes) | |||||||
|   auto err = hipMallocManaged((void **)&ptr,bytes); |   auto err = hipMallocManaged((void **)&ptr,bytes); | ||||||
|   if( err != hipSuccess ) { |   if( err != hipSuccess ) { | ||||||
|     ptr = (void *) NULL; |     ptr = (void *) NULL; | ||||||
|     fprintf(stderr," hipMallocManaged failed for %ld %s \n",bytes,hipGetErrorString(err)); fflush(stderr); |     printf(" hipMallocManaged failed for %ld %s \n",bytes,hipGetErrorString(err)); | ||||||
|   } |   } | ||||||
|   return ptr; |   return ptr; | ||||||
| }; | }; | ||||||
| @@ -490,30 +433,24 @@ inline void *acceleratorAllocDevice(size_t bytes) | |||||||
|   auto err = hipMalloc((void **)&ptr,bytes); |   auto err = hipMalloc((void **)&ptr,bytes); | ||||||
|   if( err != hipSuccess ) { |   if( err != hipSuccess ) { | ||||||
|     ptr = (void *) NULL; |     ptr = (void *) NULL; | ||||||
|     fprintf(stderr," hipMalloc failed for %ld %s \n",bytes,hipGetErrorString(err)); fflush(stderr); |     printf(" hipMalloc failed for %ld %s \n",bytes,hipGetErrorString(err)); | ||||||
|   } |   } | ||||||
|   return ptr; |   return ptr; | ||||||
| }; | }; | ||||||
|  |  | ||||||
| inline void acceleratorFreeShared(void *ptr){ auto discard=hipFree(ptr);}; | inline void acceleratorFreeShared(void *ptr){ auto r=hipFree(ptr);}; | ||||||
| inline void acceleratorFreeDevice(void *ptr){ auto discard=hipFree(ptr);}; | inline void acceleratorFreeDevice(void *ptr){ auto r=hipFree(ptr);}; | ||||||
| inline void acceleratorCopyToDevice(void *from,void *to,size_t bytes)  { auto discard=hipMemcpy(to,from,bytes, hipMemcpyHostToDevice);} | inline void acceleratorCopyToDevice(void *from,void *to,size_t bytes)  { auto r=hipMemcpy(to,from,bytes, hipMemcpyHostToDevice);} | ||||||
| inline void acceleratorCopyFromDevice(void *from,void *to,size_t bytes){ auto discard=hipMemcpy(to,from,bytes, hipMemcpyDeviceToHost);} | inline void acceleratorCopyFromDevice(void *from,void *to,size_t bytes){ auto r=hipMemcpy(to,from,bytes, hipMemcpyDeviceToHost);} | ||||||
| //inline void acceleratorCopyDeviceToDeviceAsynch(void *from,void *to,size_t bytes)  { hipMemcpy(to,from,bytes, hipMemcpyDeviceToDevice);} | //inline void acceleratorCopyDeviceToDeviceAsynch(void *from,void *to,size_t bytes)  { hipMemcpy(to,from,bytes, hipMemcpyDeviceToDevice);} | ||||||
| //inline void acceleratorCopySynchronise(void) {  } | //inline void acceleratorCopySynchronise(void) {  } | ||||||
| inline void acceleratorMemSet(void *base,int value,size_t bytes) { auto discard=hipMemset(base,value,bytes);} | inline void acceleratorMemSet(void *base,int value,size_t bytes) { auto r=hipMemset(base,value,bytes);} | ||||||
|  |  | ||||||
| inline void acceleratorCopyDeviceToDeviceAsynch(void *from,void *to,size_t bytes) // Asynch | inline void acceleratorCopyDeviceToDeviceAsynch(void *from,void *to,size_t bytes) // Asynch | ||||||
| { | { | ||||||
|   auto discard=hipMemcpyDtoDAsync(to,from,bytes, copyStream); |   auto r=hipMemcpyDtoDAsync(to,from,bytes, copyStream); | ||||||
| } | } | ||||||
| inline void acceleratorCopyToDeviceAsync(void *from, void *to, size_t bytes, hipStream_t stream = copyStream) { | inline void acceleratorCopySynchronise(void) { auto r=hipStreamSynchronize(copyStream); }; | ||||||
|   auto r = hipMemcpyAsync(to,from,bytes, hipMemcpyHostToDevice, stream); |  | ||||||
| } |  | ||||||
| inline void acceleratorCopyFromDeviceAsync(void *from, void *to, size_t bytes, hipStream_t stream = copyStream) { |  | ||||||
|   auto r = hipMemcpyAsync(to,from,bytes, hipMemcpyDeviceToHost, stream); |  | ||||||
| } |  | ||||||
| inline void acceleratorCopySynchronise(void) { auto discard=hipStreamSynchronize(copyStream); }; |  | ||||||
|  |  | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
| @@ -523,9 +460,6 @@ inline void acceleratorCopySynchronise(void) { auto discard=hipStreamSynchronize | |||||||
| #if defined(GRID_SYCL) || defined(GRID_CUDA) || defined(GRID_HIP) | #if defined(GRID_SYCL) || defined(GRID_CUDA) || defined(GRID_HIP) | ||||||
| // FIXME -- the non-blocking nature got broken March 30 2023 by PAB | // FIXME -- the non-blocking nature got broken March 30 2023 by PAB | ||||||
| #define accelerator_forNB( iter1, num1, nsimd, ... ) accelerator_for2dNB( iter1, num1, iter2, 1, nsimd, {__VA_ARGS__} );   | #define accelerator_forNB( iter1, num1, nsimd, ... ) accelerator_for2dNB( iter1, num1, iter2, 1, nsimd, {__VA_ARGS__} );   | ||||||
| #define prof_accelerator_for( iter1, num1, nsimd, ... ) \ |  | ||||||
|   prof_accelerator_for2dNB( iter1, num1, iter2, 1, nsimd, {__VA_ARGS__} );\ |  | ||||||
|   accelerator_barrier(dummy); |  | ||||||
|  |  | ||||||
| #define accelerator_for( iter, num, nsimd, ... )		\ | #define accelerator_for( iter, num, nsimd, ... )		\ | ||||||
|   accelerator_forNB(iter, num, nsimd, { __VA_ARGS__ } );	\ |   accelerator_forNB(iter, num, nsimd, { __VA_ARGS__ } );	\ | ||||||
| @@ -547,15 +481,7 @@ inline void acceleratorCopySynchronise(void) { auto discard=hipStreamSynchronize | |||||||
|  |  | ||||||
| #undef GRID_SIMT | #undef GRID_SIMT | ||||||
|  |  | ||||||
| inline void acceleratorMem(void) |  | ||||||
| { |  | ||||||
|   /* |  | ||||||
|     struct rusage rusage; |  | ||||||
|     getrusage( RUSAGE_SELF, &rusage ); |  | ||||||
|     return (size_t)rusage.ru_maxrss; |  | ||||||
|   */ |  | ||||||
|   std::cout <<" system acceleratorMem not implemented"<<std::endl; |  | ||||||
| } |  | ||||||
|  |  | ||||||
| #define accelerator  | #define accelerator  | ||||||
| #define accelerator_inline strong_inline | #define accelerator_inline strong_inline | ||||||
| @@ -655,18 +581,5 @@ inline void acceleratorCopyDeviceToDevice(void *from,void *to,size_t bytes) | |||||||
|   acceleratorCopySynchronise(); |   acceleratorCopySynchronise(); | ||||||
| } | } | ||||||
|  |  | ||||||
| template<class T> void acceleratorPut(T& dev,T&host) |  | ||||||
| { |  | ||||||
|   acceleratorCopyToDevice(&host,&dev,sizeof(T)); |  | ||||||
| } |  | ||||||
| template<class T> T acceleratorGet(T& dev) |  | ||||||
| { |  | ||||||
|   T host; |  | ||||||
|   acceleratorCopyFromDevice(&dev,&host,sizeof(T)); |  | ||||||
|   return host; |  | ||||||
| } |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
| NAMESPACE_END(Grid); | NAMESPACE_END(Grid); | ||||||
|   | |||||||
| @@ -94,13 +94,6 @@ static constexpr int MaxDims = GRID_MAX_LATTICE_DIMENSION; | |||||||
|  |  | ||||||
| typedef AcceleratorVector<int,MaxDims> Coordinate; | typedef AcceleratorVector<int,MaxDims> Coordinate; | ||||||
|  |  | ||||||
| template<class T,int _ndim> |  | ||||||
| inline bool operator==(const AcceleratorVector<T,_ndim> &v,const AcceleratorVector<T,_ndim> &w) |  | ||||||
| { |  | ||||||
|   if (v.size()!=w.size()) return false; |  | ||||||
|   for(int i=0;i<v.size();i++) if ( v[i]!=w[i] ) return false; |  | ||||||
|   return true; |  | ||||||
| } |  | ||||||
| template<class T,int _ndim> | template<class T,int _ndim> | ||||||
| inline std::ostream & operator<<(std::ostream &os, const AcceleratorVector<T,_ndim> &v) | inline std::ostream & operator<<(std::ostream &os, const AcceleratorVector<T,_ndim> &v) | ||||||
| { | { | ||||||
|   | |||||||
| @@ -1,336 +0,0 @@ | |||||||
| /************************************************************************************* |  | ||||||
|  |  | ||||||
|     Grid physics library, www.github.com/paboyle/Grid |  | ||||||
|  |  | ||||||
|     Source file: ./lib/Init.cc |  | ||||||
|  |  | ||||||
|     Copyright (C) 2015 |  | ||||||
|  |  | ||||||
| Author: Azusa Yamaguchi <ayamaguc@staffmail.ed.ac.uk> |  | ||||||
| Author: Peter Boyle <paboyle@ph.ed.ac.uk> |  | ||||||
| Author: Peter Boyle <peterboyle@MacBook-Pro.local> |  | ||||||
| Author: paboyle <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 */ |  | ||||||
| #include <Grid/Grid.h> |  | ||||||
|  |  | ||||||
| NAMESPACE_BEGIN(Grid); |  | ||||||
| /////////////////////////////////////////////////////// |  | ||||||
| // Grid Norm logging for repro testing |  | ||||||
| /////////////////////////////////////////////////////// |  | ||||||
| int FlightRecorder::PrintEntireLog; |  | ||||||
| int FlightRecorder::ContinueOnFail; |  | ||||||
| int FlightRecorder::LoggingMode; |  | ||||||
| int FlightRecorder::ChecksumComms; |  | ||||||
| int FlightRecorder::ChecksumCommsSend; |  | ||||||
| int32_t  FlightRecorder::XmitLoggingCounter; |  | ||||||
| int32_t  FlightRecorder::RecvLoggingCounter; |  | ||||||
| int32_t  FlightRecorder::CsumLoggingCounter; |  | ||||||
| int32_t  FlightRecorder::NormLoggingCounter; |  | ||||||
| int32_t  FlightRecorder::ReductionLoggingCounter; |  | ||||||
| uint64_t FlightRecorder::ErrorCounter; |  | ||||||
| std::vector<double> FlightRecorder::NormLogVector; |  | ||||||
| std::vector<double> FlightRecorder::ReductionLogVector; |  | ||||||
| std::vector<uint64_t> FlightRecorder::CsumLogVector; |  | ||||||
| std::vector<uint64_t> FlightRecorder::XmitLogVector; |  | ||||||
| std::vector<uint64_t> FlightRecorder::RecvLogVector; |  | ||||||
|  |  | ||||||
| void FlightRecorder::ResetCounters(void) |  | ||||||
| { |  | ||||||
|   XmitLoggingCounter=0; |  | ||||||
|   RecvLoggingCounter=0; |  | ||||||
|   CsumLoggingCounter=0; |  | ||||||
|   NormLoggingCounter=0; |  | ||||||
|   ReductionLoggingCounter=0; |  | ||||||
| } |  | ||||||
| void FlightRecorder::Truncate(void) |  | ||||||
| { |  | ||||||
|   ResetCounters(); |  | ||||||
|   XmitLogVector.resize(0); |  | ||||||
|   RecvLogVector.resize(0); |  | ||||||
|   NormLogVector.resize(0); |  | ||||||
|   CsumLogVector.resize(0); |  | ||||||
|   ReductionLogVector.resize(0); |  | ||||||
| } |  | ||||||
| void FlightRecorder::SetLoggingMode(FlightRecorder::LoggingMode_t mode) |  | ||||||
| { |  | ||||||
|   switch ( mode ) { |  | ||||||
|   case LoggingModePrint: |  | ||||||
|     SetLoggingModePrint(); |  | ||||||
|     break; |  | ||||||
|   case LoggingModeRecord: |  | ||||||
|     SetLoggingModeRecord(); |  | ||||||
|     break; |  | ||||||
|   case LoggingModeVerify: |  | ||||||
|     SetLoggingModeVerify(); |  | ||||||
|     break; |  | ||||||
|   case LoggingModeNone: |  | ||||||
|     LoggingMode = mode; |  | ||||||
|     Truncate(); |  | ||||||
|     break; |  | ||||||
|   default: |  | ||||||
|     assert(0); |  | ||||||
|   } |  | ||||||
| } |  | ||||||
|  |  | ||||||
| void FlightRecorder::SetLoggingModePrint(void) |  | ||||||
| { |  | ||||||
|   std::cout << " FlightRecorder: set to print output " <<std::endl; |  | ||||||
|   Truncate(); |  | ||||||
|   LoggingMode = LoggingModePrint; |  | ||||||
| } |  | ||||||
| void FlightRecorder::SetLoggingModeRecord(void) |  | ||||||
| { |  | ||||||
|   std::cout << " FlightRecorder: set to RECORD " <<std::endl; |  | ||||||
|   Truncate(); |  | ||||||
|   LoggingMode = LoggingModeRecord; |  | ||||||
| } |  | ||||||
| void FlightRecorder::SetLoggingModeVerify(void) |  | ||||||
| { |  | ||||||
|   std::cout << " FlightRecorder: set to VERIFY " << NormLogVector.size()<< " log entries "<<std::endl; |  | ||||||
|   ResetCounters(); |  | ||||||
|   LoggingMode = LoggingModeVerify; |  | ||||||
| } |  | ||||||
| uint64_t FlightRecorder::ErrorCount(void) |  | ||||||
| { |  | ||||||
|   return ErrorCounter; |  | ||||||
| } |  | ||||||
| void FlightRecorder::NormLog(double value) |  | ||||||
| { |  | ||||||
|   uint64_t hex = * ( (uint64_t *)&value ); |  | ||||||
|   if(LoggingMode == LoggingModePrint) { |  | ||||||
|     std::cerr<<"FlightRecorder::NormLog : "<< NormLoggingCounter <<" "<<std::hex<< hex<<std::dec <<std::endl; |  | ||||||
|     NormLoggingCounter++; |  | ||||||
|   } |  | ||||||
|   if(LoggingMode == LoggingModeRecord) { |  | ||||||
|     std::cerr<<"FlightRecorder::NormLog RECORDING : "<< NormLoggingCounter <<" "<<std::hex<< hex<<std::dec <<std::endl; |  | ||||||
|     NormLogVector.push_back(value); |  | ||||||
|     NormLoggingCounter++; |  | ||||||
|   } |  | ||||||
|   if(LoggingMode == LoggingModeVerify) { |  | ||||||
|  |  | ||||||
|     if(NormLoggingCounter < NormLogVector.size()){ |  | ||||||
|       uint64_t hexref  = * ( (uint64_t *)&NormLogVector[NormLoggingCounter] ); |  | ||||||
|  |  | ||||||
|       if ( (value != NormLogVector[NormLoggingCounter]) || std::isnan(value) ) { |  | ||||||
|  |  | ||||||
| 	std::cerr<<"FlightRecorder::NormLog Oops, I did it again "<< NormLoggingCounter |  | ||||||
| 		 <<std::hex<<" "<<hex<<" "<<hexref<<std::dec<<" " |  | ||||||
| 		 <<std::hexfloat<<value<<" "<< NormLogVector[NormLoggingCounter]<<std::endl; |  | ||||||
|  |  | ||||||
| 	std::cerr << " Oops got norm "<< std::hexfloat<<value<<" expect "<<NormLogVector[NormLoggingCounter] <<std::endl; |  | ||||||
|  |  | ||||||
| 	fprintf(stderr,"%s:%d Oops, I did it again! Reproduce failure for norm %d/%zu %.16e expect %.16e\n", |  | ||||||
| 		GridHostname(), |  | ||||||
| 		GlobalSharedMemory::WorldShmRank, |  | ||||||
| 		NormLoggingCounter,NormLogVector.size(), |  | ||||||
| 		value, NormLogVector[NormLoggingCounter]); fflush(stderr); |  | ||||||
|  |  | ||||||
| 	if(!ContinueOnFail)assert(0); // Force takedown of job |  | ||||||
| 	   |  | ||||||
| 	ErrorCounter++; |  | ||||||
|       } else { |  | ||||||
| 	if ( PrintEntireLog ) {  |  | ||||||
| 	  std::cerr<<"FlightRecorder::NormLog VALID "<< NormLoggingCounter << std::hex |  | ||||||
| 		   <<" "<<hex<<" "<<hexref |  | ||||||
| 		   <<" "<<std::hexfloat<<value<<" "<< NormLogVector[NormLoggingCounter]<<std::dec<<std::endl; |  | ||||||
| 	} |  | ||||||
|       } |  | ||||||
|         |  | ||||||
|     } |  | ||||||
|     if ( NormLogVector.size()==NormLoggingCounter ) { |  | ||||||
|       std::cout << "FlightRecorder:: Verified entire sequence of "<<NormLoggingCounter<<" norms "<<std::endl; |  | ||||||
|     } |  | ||||||
|     NormLoggingCounter++; |  | ||||||
|   } |  | ||||||
| } |  | ||||||
| void FlightRecorder::CsumLog(uint64_t hex) |  | ||||||
| { |  | ||||||
|   if(LoggingMode == LoggingModePrint) { |  | ||||||
|     std::cerr<<"FlightRecorder::CsumLog : "<< CsumLoggingCounter <<" "<<std::hex<< hex<<std::dec <<std::endl; |  | ||||||
|     CsumLoggingCounter++; |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|   if(LoggingMode == LoggingModeRecord) { |  | ||||||
|     std::cerr<<"FlightRecorder::CsumLog RECORDING : "<< NormLoggingCounter <<" "<<std::hex<< hex<<std::dec <<std::endl; |  | ||||||
|     CsumLogVector.push_back(hex); |  | ||||||
|     CsumLoggingCounter++; |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|   if(LoggingMode == LoggingModeVerify) { |  | ||||||
|      |  | ||||||
|     if(CsumLoggingCounter < CsumLogVector.size()) { |  | ||||||
|  |  | ||||||
|       uint64_t hexref  = CsumLogVector[CsumLoggingCounter] ; |  | ||||||
|  |  | ||||||
|       if ( hex != hexref ) { |  | ||||||
|  |  | ||||||
|         std::cerr<<"FlightRecorder::CsumLog Oops, I did it again "<< CsumLoggingCounter |  | ||||||
| 		 <<std::hex<<" "<<hex<<" "<<hexref<<std::dec<<std::endl; |  | ||||||
|  |  | ||||||
| 	fprintf(stderr,"%s:%d Oops, I did it again! Reproduce failure for csum %d %lx expect %lx\n", |  | ||||||
| 		GridHostname(), |  | ||||||
| 		GlobalSharedMemory::WorldShmRank, |  | ||||||
| 		CsumLoggingCounter,hex, hexref); |  | ||||||
| 	fflush(stderr); |  | ||||||
|  |  | ||||||
| 	if(!ContinueOnFail) assert(0); // Force takedown of job |  | ||||||
| 	   |  | ||||||
| 	ErrorCounter++; |  | ||||||
|  |  | ||||||
|       } else { |  | ||||||
|  |  | ||||||
| 	if ( PrintEntireLog ) {  |  | ||||||
| 	  std::cerr<<"FlightRecorder::CsumLog VALID "<< CsumLoggingCounter << std::hex |  | ||||||
| 		   <<" "<<hex<<" "<<hexref<<std::dec<<std::endl; |  | ||||||
| 	} |  | ||||||
|       } |  | ||||||
|     }   |  | ||||||
|     if ( CsumLogVector.size()==CsumLoggingCounter ) { |  | ||||||
|       std::cout << "FlightRecorder:: Verified entire sequence of "<<CsumLoggingCounter<<" checksums "<<std::endl; |  | ||||||
|     } |  | ||||||
|     CsumLoggingCounter++; |  | ||||||
|   } |  | ||||||
| } |  | ||||||
| void FlightRecorder::ReductionLog(double local,double global) |  | ||||||
| { |  | ||||||
|   uint64_t hex_l = * ( (uint64_t *)&local ); |  | ||||||
|   uint64_t hex_g = * ( (uint64_t *)&global ); |  | ||||||
|   if(LoggingMode == LoggingModePrint) { |  | ||||||
|     std::cerr<<"FlightRecorder::ReductionLog : "<< ReductionLoggingCounter <<" "<< std::hex << hex_l << " -> " <<hex_g<<std::dec <<std::endl; |  | ||||||
|     ReductionLoggingCounter++; |  | ||||||
|   } |  | ||||||
|   if(LoggingMode == LoggingModeRecord) { |  | ||||||
|     std::cerr<<"FlightRecorder::ReductionLog RECORDING : "<< ReductionLoggingCounter <<" "<< std::hex << hex_l << " -> " <<hex_g<<std::dec <<std::endl; |  | ||||||
|     ReductionLogVector.push_back(global); |  | ||||||
|     ReductionLoggingCounter++; |  | ||||||
|   } |  | ||||||
|   if(LoggingMode == LoggingModeVerify) { |  | ||||||
|     if(ReductionLoggingCounter < ReductionLogVector.size()){ |  | ||||||
|       if ( global != ReductionLogVector[ReductionLoggingCounter] ) { |  | ||||||
| 	fprintf(stderr,"%s:%d Oops, MPI_Allreduce did it again! Reproduce failure for norm %d/%zu glb %.16e lcl %.16e expect glb %.16e\n", |  | ||||||
| 		GridHostname(), |  | ||||||
| 		GlobalSharedMemory::WorldShmRank, |  | ||||||
| 		ReductionLoggingCounter,ReductionLogVector.size(), |  | ||||||
| 		global, local, ReductionLogVector[ReductionLoggingCounter]); fflush(stderr); |  | ||||||
| 	 |  | ||||||
| 	if ( !ContinueOnFail ) assert(0); |  | ||||||
|  |  | ||||||
| 	ErrorCounter++; |  | ||||||
|       } else { |  | ||||||
| 	if ( PrintEntireLog ) {  |  | ||||||
| 	  std::cerr<<"FlightRecorder::ReductionLog : VALID "<< ReductionLoggingCounter <<" "<< std::hexfloat << local << "-> "<< global <<std::endl; |  | ||||||
| 	} |  | ||||||
|       } |  | ||||||
|     } |  | ||||||
|     if ( ReductionLogVector.size()==ReductionLoggingCounter ) { |  | ||||||
|       std::cout << "FlightRecorder::ReductionLog : Verified entire sequence of "<<ReductionLoggingCounter<<" norms "<<std::endl; |  | ||||||
|     } |  | ||||||
|     ReductionLoggingCounter++; |  | ||||||
|   } |  | ||||||
| } |  | ||||||
| void FlightRecorder::xmitLog(void *buf,uint64_t bytes) |  | ||||||
| { |  | ||||||
|   if(LoggingMode == LoggingModeNone) return; |  | ||||||
|  |  | ||||||
|   if ( ChecksumCommsSend ){ |  | ||||||
|   uint64_t *ubuf = (uint64_t *)buf; |  | ||||||
|   if(LoggingMode == LoggingModeNone) return; |  | ||||||
|    |  | ||||||
| #ifdef GRID_SYCL |  | ||||||
|   uint64_t _xor = svm_xor(ubuf,bytes/sizeof(uint64_t)); |  | ||||||
|   if(LoggingMode == LoggingModePrint) { |  | ||||||
|     std::cerr<<"FlightRecorder::xmitLog : "<< XmitLoggingCounter <<" "<< std::hex << _xor <<std::dec <<std::endl; |  | ||||||
|     XmitLoggingCounter++; |  | ||||||
|   } |  | ||||||
|   if(LoggingMode == LoggingModeRecord) { |  | ||||||
|     std::cerr<<"FlightRecorder::xmitLog RECORD : "<< XmitLoggingCounter <<" "<< std::hex << _xor <<std::dec <<std::endl; |  | ||||||
|     XmitLogVector.push_back(_xor); |  | ||||||
|     XmitLoggingCounter++; |  | ||||||
|   } |  | ||||||
|   if(LoggingMode == LoggingModeVerify) { |  | ||||||
|     if(XmitLoggingCounter < XmitLogVector.size()){ |  | ||||||
|       if ( _xor != XmitLogVector[XmitLoggingCounter] ) { |  | ||||||
| 	fprintf(stderr,"%s:%d Oops, send buf difference! Reproduce failure for xmit %d/%zu  %lx expect glb %lx\n", |  | ||||||
| 		GridHostname(), |  | ||||||
| 		GlobalSharedMemory::WorldShmRank, |  | ||||||
| 		XmitLoggingCounter,XmitLogVector.size(), |  | ||||||
| 		_xor, XmitLogVector[XmitLoggingCounter]); fflush(stderr); |  | ||||||
| 	 |  | ||||||
| 	if ( !ContinueOnFail ) assert(0); |  | ||||||
|  |  | ||||||
| 	ErrorCounter++; |  | ||||||
|       } else { |  | ||||||
| 	if ( PrintEntireLog ) {  |  | ||||||
| 	  std::cerr<<"FlightRecorder::XmitLog : VALID "<< XmitLoggingCounter <<" "<< std::hexfloat << _xor << " "<<  XmitLogVector[XmitLoggingCounter] <<std::endl; |  | ||||||
| 	} |  | ||||||
|       } |  | ||||||
|     } |  | ||||||
|     if ( XmitLogVector.size()==XmitLoggingCounter ) { |  | ||||||
|       std::cout << "FlightRecorder::ReductionLog : Verified entire sequence of "<<XmitLoggingCounter<<" sends "<<std::endl; |  | ||||||
|     } |  | ||||||
|     XmitLoggingCounter++; |  | ||||||
|   } |  | ||||||
| #endif |  | ||||||
|   } |  | ||||||
| } |  | ||||||
| void FlightRecorder::recvLog(void *buf,uint64_t bytes,int rank) |  | ||||||
| { |  | ||||||
|   if ( ChecksumComms ){ |  | ||||||
|   uint64_t *ubuf = (uint64_t *)buf; |  | ||||||
|   if(LoggingMode == LoggingModeNone) return; |  | ||||||
| #ifdef GRID_SYCL |  | ||||||
|   uint64_t _xor = svm_xor(ubuf,bytes/sizeof(uint64_t)); |  | ||||||
|   if(LoggingMode == LoggingModePrint) { |  | ||||||
|     std::cerr<<"FlightRecorder::recvLog : "<< RecvLoggingCounter <<" "<< std::hex << _xor <<std::dec <<std::endl; |  | ||||||
|     RecvLoggingCounter++; |  | ||||||
|   } |  | ||||||
|   if(LoggingMode == LoggingModeRecord) { |  | ||||||
|     std::cerr<<"FlightRecorder::recvLog RECORD : "<< RecvLoggingCounter <<" "<< std::hex << _xor <<std::dec <<std::endl; |  | ||||||
|     RecvLogVector.push_back(_xor); |  | ||||||
|     RecvLoggingCounter++; |  | ||||||
|   } |  | ||||||
|   if(LoggingMode == LoggingModeVerify) { |  | ||||||
|     if(RecvLoggingCounter < RecvLogVector.size()){ |  | ||||||
|       if ( _xor != RecvLogVector[RecvLoggingCounter] ) { |  | ||||||
| 	fprintf(stderr,"%s:%d Oops, recv buf difference! Reproduce failure for recv %d/%zu  %lx expect glb %lx from MPI rank %d\n", |  | ||||||
| 		GridHostname(), |  | ||||||
| 		GlobalSharedMemory::WorldShmRank, |  | ||||||
| 		RecvLoggingCounter,RecvLogVector.size(), |  | ||||||
| 		_xor, RecvLogVector[RecvLoggingCounter],rank); fflush(stderr); |  | ||||||
| 	 |  | ||||||
| 	if ( !ContinueOnFail ) assert(0); |  | ||||||
|  |  | ||||||
| 	ErrorCounter++; |  | ||||||
|       } else { |  | ||||||
| 	if ( PrintEntireLog ) {  |  | ||||||
| 	  std::cerr<<"FlightRecorder::RecvLog : VALID "<< RecvLoggingCounter <<" "<< std::hexfloat << _xor << " "<<  RecvLogVector[RecvLoggingCounter] <<std::endl; |  | ||||||
| 	} |  | ||||||
|       } |  | ||||||
|     } |  | ||||||
|     if ( RecvLogVector.size()==RecvLoggingCounter ) { |  | ||||||
|       std::cout << "FlightRecorder::ReductionLog : Verified entire sequence of "<<RecvLoggingCounter<<" sends "<<std::endl; |  | ||||||
|     } |  | ||||||
|     RecvLoggingCounter++; |  | ||||||
|   } |  | ||||||
| #endif |  | ||||||
|   } |  | ||||||
| } |  | ||||||
|  |  | ||||||
| NAMESPACE_END(Grid); |  | ||||||
| @@ -1,43 +0,0 @@ | |||||||
| #pragma once |  | ||||||
|  |  | ||||||
| NAMESPACE_BEGIN(Grid); |  | ||||||
| class FlightRecorder { |  | ||||||
|  public: |  | ||||||
|   enum LoggingMode_t { |  | ||||||
|     LoggingModeNone, |  | ||||||
|     LoggingModePrint, |  | ||||||
|     LoggingModeRecord, |  | ||||||
|     LoggingModeVerify |  | ||||||
|   }; |  | ||||||
|    |  | ||||||
|   static int                   LoggingMode; |  | ||||||
|   static uint64_t              ErrorCounter; |  | ||||||
|   static int32_t               XmitLoggingCounter; |  | ||||||
|   static int32_t               RecvLoggingCounter; |  | ||||||
|   static int32_t               CsumLoggingCounter; |  | ||||||
|   static int32_t               NormLoggingCounter; |  | ||||||
|   static int32_t               ReductionLoggingCounter; |  | ||||||
|   static std::vector<uint64_t> XmitLogVector; |  | ||||||
|   static std::vector<uint64_t> RecvLogVector; |  | ||||||
|   static std::vector<uint64_t> CsumLogVector; |  | ||||||
|   static std::vector<double>   NormLogVector; |  | ||||||
|   static std::vector<double>   ReductionLogVector; |  | ||||||
|   static int ContinueOnFail; |  | ||||||
|   static int PrintEntireLog; |  | ||||||
|   static int ChecksumComms; |  | ||||||
|   static int ChecksumCommsSend; |  | ||||||
|   static void SetLoggingModePrint(void); |  | ||||||
|   static void SetLoggingModeRecord(void); |  | ||||||
|   static void SetLoggingModeVerify(void); |  | ||||||
|   static void SetLoggingMode(LoggingMode_t mode); |  | ||||||
|   static void NormLog(double value); |  | ||||||
|   static void CsumLog(uint64_t csum); |  | ||||||
|   static void ReductionLog(double lcl, double glbl); |  | ||||||
|   static void Truncate(void); |  | ||||||
|   static void ResetCounters(void); |  | ||||||
|   static uint64_t ErrorCount(void); |  | ||||||
|   static void xmitLog(void *,uint64_t bytes); |  | ||||||
|   static void recvLog(void *,uint64_t bytes,int rank); |  | ||||||
| }; |  | ||||||
| NAMESPACE_END(Grid); |  | ||||||
|  |  | ||||||
| @@ -77,10 +77,6 @@ feenableexcept (unsigned int excepts) | |||||||
| } | } | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
| #ifndef HOST_NAME_MAX |  | ||||||
| #define HOST_NAME_MAX _POSIX_HOST_NAME_MAX |  | ||||||
| #endif |  | ||||||
|  |  | ||||||
| NAMESPACE_BEGIN(Grid); | NAMESPACE_BEGIN(Grid); | ||||||
|  |  | ||||||
| ////////////////////////////////////////////////////// | ////////////////////////////////////////////////////// | ||||||
| @@ -94,12 +90,7 @@ int GridThread::_threads =1; | |||||||
| int GridThread::_hyperthreads=1; | int GridThread::_hyperthreads=1; | ||||||
| int GridThread::_cores=1; | int GridThread::_cores=1; | ||||||
|  |  | ||||||
| char hostname[HOST_NAME_MAX+1]; |  | ||||||
|  |  | ||||||
| char *GridHostname(void) |  | ||||||
| { |  | ||||||
|   return hostname; |  | ||||||
| } |  | ||||||
| const Coordinate &GridDefaultLatt(void)     {return Grid_default_latt;}; | const Coordinate &GridDefaultLatt(void)     {return Grid_default_latt;}; | ||||||
| const Coordinate &GridDefaultMpi(void)      {return Grid_default_mpi;}; | const Coordinate &GridDefaultMpi(void)      {return Grid_default_mpi;}; | ||||||
| const Coordinate GridDefaultSimd(int dims,int nsimd) | const Coordinate GridDefaultSimd(int dims,int nsimd) | ||||||
| @@ -292,7 +283,6 @@ void GridBanner(void) | |||||||
|     std::cout << "Build " << GRID_BUILD_STR(GRID_BUILD_REF) << std::endl; |     std::cout << "Build " << GRID_BUILD_STR(GRID_BUILD_REF) << std::endl; | ||||||
| #endif | #endif | ||||||
|     std::cout << std::endl; |     std::cout << std::endl; | ||||||
|     std::cout << std::setprecision(9); |  | ||||||
| } | } | ||||||
|  |  | ||||||
| void Grid_init(int *argc,char ***argv) | void Grid_init(int *argc,char ***argv) | ||||||
| @@ -403,8 +393,6 @@ void Grid_init(int *argc,char ***argv) | |||||||
|   std::cout << GridLogMessage << "MPI is initialised and logging filters activated "<<std::endl; |   std::cout << GridLogMessage << "MPI is initialised and logging filters activated "<<std::endl; | ||||||
|   std::cout << GridLogMessage << "================================================ "<<std::endl; |   std::cout << GridLogMessage << "================================================ "<<std::endl; | ||||||
|  |  | ||||||
|   gethostname(hostname, HOST_NAME_MAX+1); |  | ||||||
|   std::cout << GridLogMessage << "This rank is running on host "<< hostname<<std::endl; |  | ||||||
|  |  | ||||||
|   ///////////////////////////////////////////////////////// |   ///////////////////////////////////////////////////////// | ||||||
|   // Reporting |   // Reporting | ||||||
| @@ -425,7 +413,7 @@ void Grid_init(int *argc,char ***argv) | |||||||
|   // Logging |   // Logging | ||||||
|   //////////////////////////////////// |   //////////////////////////////////// | ||||||
|   std::vector<std::string> logstreams; |   std::vector<std::string> logstreams; | ||||||
|   std::string defaultLog("Error,Warning,Message"); |   std::string defaultLog("Error,Warning,Message,Performance"); | ||||||
|   GridCmdOptionCSL(defaultLog,logstreams); |   GridCmdOptionCSL(defaultLog,logstreams); | ||||||
|   GridLogConfigure(logstreams); |   GridLogConfigure(logstreams); | ||||||
|  |  | ||||||
| @@ -549,10 +537,6 @@ void Grid_init(int *argc,char ***argv) | |||||||
|  |  | ||||||
| void Grid_finalize(void) | void Grid_finalize(void) | ||||||
| { | { | ||||||
|   std::cout<<GridLogMessage<<"*******************************************"<<std::endl; |  | ||||||
|   std::cout<<GridLogMessage<<"******* Grid Finalize                ******"<<std::endl; |  | ||||||
|   std::cout<<GridLogMessage<<"*******************************************"<<std::endl; |  | ||||||
|  |  | ||||||
| #if defined (GRID_COMMS_MPI) || defined (GRID_COMMS_MPI3) || defined (GRID_COMMS_MPIT) | #if defined (GRID_COMMS_MPI) || defined (GRID_COMMS_MPI3) || defined (GRID_COMMS_MPIT) | ||||||
|   MPI_Barrier(MPI_COMM_WORLD); |   MPI_Barrier(MPI_COMM_WORLD); | ||||||
|   MPI_Finalize(); |   MPI_Finalize(); | ||||||
|   | |||||||
| @@ -34,8 +34,6 @@ NAMESPACE_BEGIN(Grid); | |||||||
| void Grid_init(int *argc,char ***argv); | void Grid_init(int *argc,char ***argv); | ||||||
| void Grid_finalize(void); | void Grid_finalize(void); | ||||||
|  |  | ||||||
| char * GridHostname(void); |  | ||||||
|  |  | ||||||
| // internal, controled with --handle | // internal, controled with --handle | ||||||
| void Grid_sa_signal_handler(int sig,siginfo_t *si,void * ptr); | void Grid_sa_signal_handler(int sig,siginfo_t *si,void * ptr); | ||||||
| void Grid_debug_handler_init(void); | void Grid_debug_handler_init(void); | ||||||
| @@ -70,6 +68,5 @@ void GridParseLayout(char **argv,int argc, | |||||||
| void printHash(void); | void printHash(void); | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
| NAMESPACE_END(Grid); | NAMESPACE_END(Grid); | ||||||
|  |  | ||||||
|   | |||||||
| @@ -8,7 +8,7 @@ namespace Grid{ | |||||||
|   public: |   public: | ||||||
|  |  | ||||||
|     template<class coor_t> |     template<class coor_t> | ||||||
|     static accelerator_inline void CoorFromIndex (coor_t& coor,int64_t index,const coor_t &dims){ |     static accelerator_inline void CoorFromIndex (coor_t& coor,int index,const coor_t &dims){ | ||||||
|       int nd= dims.size(); |       int nd= dims.size(); | ||||||
|       coor.resize(nd); |       coor.resize(nd); | ||||||
|       for(int d=0;d<nd;d++){ |       for(int d=0;d<nd;d++){ | ||||||
| @@ -18,45 +18,28 @@ namespace Grid{ | |||||||
|     } |     } | ||||||
|  |  | ||||||
|     template<class coor_t> |     template<class coor_t> | ||||||
|     static accelerator_inline void IndexFromCoor (const coor_t& coor,int64_t &index,const coor_t &dims){ |     static accelerator_inline void IndexFromCoor (const coor_t& coor,int &index,const coor_t &dims){ | ||||||
|       int nd=dims.size(); |       int nd=dims.size(); | ||||||
|       int stride=1; |       int stride=1; | ||||||
|       index=0; |       index=0; | ||||||
|       for(int d=0;d<nd;d++){ |       for(int d=0;d<nd;d++){ | ||||||
| 	index = index+(int64_t)stride*coor[d]; | 	index = index+stride*coor[d]; | ||||||
| 	stride=stride*dims[d]; | 	stride=stride*dims[d]; | ||||||
|       } |       } | ||||||
|     } |     } | ||||||
|     template<class coor_t> |  | ||||||
|     static accelerator_inline void IndexFromCoor (const coor_t& coor,int &index,const coor_t &dims){ |  | ||||||
|       int64_t index64; |  | ||||||
|       IndexFromCoor(coor,index64,dims); |  | ||||||
|       assert(index64<2*1024*1024*1024LL); |  | ||||||
|       index = (int) index64; |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     template<class coor_t> |     template<class coor_t> | ||||||
|     static inline void IndexFromCoorReversed (const coor_t& coor,int64_t &index,const coor_t &dims){ |     static inline void IndexFromCoorReversed (const coor_t& coor,int &index,const coor_t &dims){ | ||||||
|       int nd=dims.size(); |       int nd=dims.size(); | ||||||
|       int stride=1; |       int stride=1; | ||||||
|       index=0; |       index=0; | ||||||
|       for(int d=nd-1;d>=0;d--){ |       for(int d=nd-1;d>=0;d--){ | ||||||
| 	index = index+(int64_t)stride*coor[d]; | 	index = index+stride*coor[d]; | ||||||
| 	stride=stride*dims[d]; | 	stride=stride*dims[d]; | ||||||
|       } |       } | ||||||
|     } |     } | ||||||
|     template<class coor_t> |     template<class coor_t> | ||||||
|     static inline void IndexFromCoorReversed (const coor_t& coor,int &index,const coor_t &dims){ |     static inline void CoorFromIndexReversed (coor_t& coor,int index,const coor_t &dims){ | ||||||
|       int64_t index64; |  | ||||||
|       IndexFromCoorReversed(coor,index64,dims); |  | ||||||
|       if ( index64>=2*1024*1024*1024LL ){ |  | ||||||
| 	std::cout << " IndexFromCoorReversed " << coor<<" index " << index64<< " dims "<<dims<<std::endl; |  | ||||||
|       } |  | ||||||
|       assert(index64<2*1024*1024*1024LL); |  | ||||||
|       index = (int) index64; |  | ||||||
|     } |  | ||||||
|     template<class coor_t> |  | ||||||
|     static inline void CoorFromIndexReversed (coor_t& coor,int64_t index,const coor_t &dims){ |  | ||||||
|       int nd= dims.size(); |       int nd= dims.size(); | ||||||
|       coor.resize(nd); |       coor.resize(nd); | ||||||
|       for(int d=nd-1;d>=0;d--){ |       for(int d=nd-1;d>=0;d--){ | ||||||
|   | |||||||
| @@ -1,6 +1,6 @@ | |||||||
| #pragma once | #ifndef GRID_UTIL_H | ||||||
|  | #define GRID_UTIL_H | ||||||
| #include <Grid/util/Coordinate.h> | #include <Grid/util/Coordinate.h> | ||||||
| #include <Grid/util/Lexicographic.h> | #include <Grid/util/Lexicographic.h> | ||||||
| #include <Grid/util/Init.h> | #include <Grid/util/Init.h> | ||||||
| #include <Grid/util/FlightRecorder.h> | #endif | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,238 +0,0 @@ | |||||||
| /************************************************************************************* |  | ||||||
|  |  | ||||||
| Grid physics library, www.github.com/paboyle/Grid |  | ||||||
|  |  | ||||||
| Source file: HMC/ComputeWilsonFlow.cc |  | ||||||
|  |  | ||||||
| Copyright (C) 2017 |  | ||||||
|  |  | ||||||
| Author: Guido Cossu <guido.cossu@ed.ac.uk> |  | ||||||
| Author: Shuhei Yamamoto <syamamoto@bnl.gov> |  | ||||||
|  |  | ||||||
| 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 */ |  | ||||||
| #include <Grid/Grid.h> |  | ||||||
| #include <string> |  | ||||||
|  |  | ||||||
| namespace Grid{ |  | ||||||
|   struct WFParameters: Serializable { |  | ||||||
|     GRID_SERIALIZABLE_CLASS_MEMBERS(WFParameters, |  | ||||||
|             int, steps, |  | ||||||
|             double, step_size, |  | ||||||
|             int, meas_interval, |  | ||||||
| 	    double, maxTau, // for the adaptive algorithm |  | ||||||
| 	    int, meas_interval_density, |  | ||||||
| 	    std::string, path);  |  | ||||||
|         |  | ||||||
|  |  | ||||||
|     template <class ReaderClass > |  | ||||||
|     WFParameters(Reader<ReaderClass>& Reader){ |  | ||||||
|       read(Reader, "WilsonFlow", *this); |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|   }; |  | ||||||
|  |  | ||||||
|   struct ConfParameters: Serializable { |  | ||||||
|     GRID_SERIALIZABLE_CLASS_MEMBERS(ConfParameters, |  | ||||||
| 	   std::string, conf_path, |  | ||||||
|            std::string, conf_prefix, |  | ||||||
| 	   std::string, conf_smr_prefix, |  | ||||||
|            std::string, rng_prefix, |  | ||||||
| 	   int, StartConfiguration, |  | ||||||
| 	   int, EndConfiguration, |  | ||||||
|            int, Skip); |  | ||||||
|    |  | ||||||
|     template <class ReaderClass > |  | ||||||
|     ConfParameters(Reader<ReaderClass>& Reader){ |  | ||||||
|       read(Reader, "Configurations", *this); |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|   }; |  | ||||||
| } |  | ||||||
|  |  | ||||||
| template <class T> void writeFile(T& in, std::string const fname){   |  | ||||||
| #ifdef HAVE_LIME |  | ||||||
|   // Ref: https://github.com/paboyle/Grid/blob/feature/scidac-wp1/tests/debug/Test_general_coarse_hdcg_phys48.cc#L111 |  | ||||||
|   std::cout << Grid::GridLogMessage << "Writes to: " << fname << std::endl; |  | ||||||
|   Grid::emptyUserRecord record; |  | ||||||
|   Grid::ScidacWriter WR(in.Grid()->IsBoss()); |  | ||||||
|   WR.open(fname); |  | ||||||
|   WR.writeScidacFieldRecord(in,record,0); |  | ||||||
|   WR.close(); |  | ||||||
| #endif |  | ||||||
|   // What is the appropriate way to throw error? |  | ||||||
| } |  | ||||||
|  |  | ||||||
|  |  | ||||||
| int main(int argc, char **argv) { |  | ||||||
|   using namespace Grid; |  | ||||||
|    |  | ||||||
|   Grid_init(&argc, &argv); |  | ||||||
|   GridLogLayout(); |  | ||||||
|  |  | ||||||
|   auto latt_size   = GridDefaultLatt(); |  | ||||||
|   auto simd_layout = GridDefaultSimd(Nd, vComplex::Nsimd()); |  | ||||||
|   auto mpi_layout  = GridDefaultMpi(); |  | ||||||
|   GridCartesian               Grid(latt_size, simd_layout, mpi_layout); |  | ||||||
|    |  | ||||||
|   std::vector<int> seeds({1, 2, 3, 4, 5}); |  | ||||||
|   GridSerialRNG sRNG; |  | ||||||
|   GridParallelRNG pRNG(&Grid); |  | ||||||
|   pRNG.SeedFixedIntegers(seeds); |  | ||||||
|  |  | ||||||
|   LatticeGaugeField Umu(&Grid), Uflow(&Grid); |  | ||||||
|    |  | ||||||
|   typedef Grid::XmlReader       Serialiser; |  | ||||||
|   Serialiser Reader("input.xml", false, "root"); |  | ||||||
|   WFParameters WFPar(Reader); |  | ||||||
|   ConfParameters CPar(Reader); |  | ||||||
|   CheckpointerParameters CPPar(CPar.conf_path+CPar.conf_prefix, CPar.conf_path+CPar.conf_smr_prefix, CPar.conf_path+CPar.rng_prefix); |  | ||||||
|   NerscHmcCheckpointer<PeriodicGimplR> CPNersc(CPPar); |  | ||||||
|  |  | ||||||
|   for (int conf = CPar.StartConfiguration; conf <= CPar.EndConfiguration; conf+= CPar.Skip){ |  | ||||||
|  |  | ||||||
|   CPNersc.CheckpointRestore(conf, Umu, sRNG, pRNG); |  | ||||||
|  |  | ||||||
|   std::cout << std::setprecision(15); |  | ||||||
|   std::cout << GridLogMessage << "Initial plaquette: "<< WilsonLoops<PeriodicGimplR>::avgPlaquette(Umu) << std::endl; |  | ||||||
|    |  | ||||||
|   std::string file_pre  = WFPar.path; |  | ||||||
|   std::string file_post = CPar.conf_prefix + "." + std::to_string(conf); |  | ||||||
|  |  | ||||||
|   WilsonFlow<PeriodicGimplR> WF(WFPar.step_size,WFPar.steps,WFPar.meas_interval); |  | ||||||
|   WF.addMeasurement(WFPar.meas_interval_density, [&file_pre,&file_post,&conf](int step, RealD t, const typename PeriodicGimplR::GaugeField &U){ |  | ||||||
|      |  | ||||||
|     typedef typename PeriodicGimplR::GaugeLinkField GaugeMat; |  | ||||||
|     typedef typename PeriodicGimplR::ComplexField ComplexField; |  | ||||||
|      |  | ||||||
|     assert(Nd == 4); |  | ||||||
|  |  | ||||||
|     // NOTE: |  | ||||||
|     // Ideally, turn the folloing into methods of the appropriate class |  | ||||||
|     /////////////   Compute Energy Density via Clover Leaf    ///////////////////////////////////////////////// |  | ||||||
|     ///// Taken from qcd/smearing/WilsonFlow.h |  | ||||||
|     //         For plq, use static sitePlaquette from class WilsonLoops in Grid/qcd/utils/WilsonLoops.h and divide it by #faces=(1.0 * Nd * (Nd - 1)) / 2.0, ncol=3 |  | ||||||
|     //E = 1/2 tr( F_munu F_munu ) |  | ||||||
|     //However as  F_numu = -F_munu, only need to sum the trace of the squares of the following 6 field strengths: |  | ||||||
|     //F_01 F_02 F_03   F_12 F_13  F_23 |  | ||||||
|     GaugeMat F(U.Grid()); |  | ||||||
|     //LatticeComplexD R(U.Grid()); |  | ||||||
|     ComplexField R(U.Grid()); |  | ||||||
|     R = Zero(); |  | ||||||
|    |  | ||||||
|     for(int mu=0;mu<3;mu++){ |  | ||||||
|       for(int nu=mu+1;nu<4;nu++){ |  | ||||||
| 	WilsonLoops<PeriodicGimplR>::FieldStrength(F, U, mu, nu); |  | ||||||
| 	R = R + trace(F*F); |  | ||||||
|       } |  | ||||||
|     } |  | ||||||
|     R = (-1.0) * R; |  | ||||||
|      |  | ||||||
|     //// Taken from qcd/utils/WilsonLoops.h |  | ||||||
|      |  | ||||||
|     // Bx = -iF(y,z), By = -iF(z,y), Bz = -iF(x,y) |  | ||||||
|     GaugeMat Bx(U.Grid()), By(U.Grid()), Bz(U.Grid()); |  | ||||||
|     WilsonLoops<PeriodicGimplR>::FieldStrength(Bx, U, Ydir, Zdir); |  | ||||||
|     WilsonLoops<PeriodicGimplR>::FieldStrength(By, U, Zdir, Xdir); |  | ||||||
|     WilsonLoops<PeriodicGimplR>::FieldStrength(Bz, U, Xdir, Ydir); |  | ||||||
|  |  | ||||||
|     // Ex = -iF(t,x), Ey = -iF(t,y), Ez = -iF(t,z) |  | ||||||
|     GaugeMat Ex(U.Grid()), Ey(U.Grid()), Ez(U.Grid()); |  | ||||||
|     WilsonLoops<PeriodicGimplR>::FieldStrength(Ex, U, Tdir, Xdir); |  | ||||||
|     WilsonLoops<PeriodicGimplR>::FieldStrength(Ey, U, Tdir, Ydir); |  | ||||||
|     WilsonLoops<PeriodicGimplR>::FieldStrength(Ez, U, Tdir, Zdir); |  | ||||||
|  |  | ||||||
|     double coeff = 8.0/(32.0*M_PI*M_PI); |  | ||||||
|     ComplexField qfield = coeff*trace(Bx*Ex + By*Ey + Bz*Ez); |  | ||||||
|     //ComplexField qfield Plq(U.Grid()); |  | ||||||
|     //WilsonLoops<PeriodicGimplR>::sitePlaquette(Plq, U); |  | ||||||
|     //double coeff = 2.0 / (1.0 * Nd * (Nd - 1)) / 3.0; |  | ||||||
|     //Plq = coeff * Plq; |  | ||||||
|  |  | ||||||
|     int tau = std::round(t); |  | ||||||
|     std::string efile = file_pre + "E_dnsty_" + std::to_string(tau) + "_" + file_post; |  | ||||||
|     writeFile(R,efile); |  | ||||||
|     std::string tfile = file_pre + "Top_dnsty_" + std::to_string(tau) + "_" + file_post; |  | ||||||
|     writeFile(qfield,tfile); |  | ||||||
|  |  | ||||||
|     RealD E = real(sum(R))/ RealD(U.Grid()->gSites()); |  | ||||||
|     RealD T = real( sum(qfield) ); |  | ||||||
|     Coordinate scoor; for (int mu=0; mu < Nd; mu++) scoor[mu] = 0; |  | ||||||
|     RealD E0 = real(peekSite(R,scoor)); |  | ||||||
|     RealD T0 = real(peekSite(qfield,scoor)); |  | ||||||
|     std::cout << GridLogMessage << "[WilsonFlow] Saved energy density (clover) & topo. charge density: "  << conf << " " << step << "  " << tau << "  " |  | ||||||
| 	      << "(E_avg,T_sum) " << E << " " << T << " (E, T at origin) " << E0 << " " << T0 << std::endl; |  | ||||||
|      |  | ||||||
|   }); |  | ||||||
|    |  | ||||||
|   int t=WFPar.maxTau; |  | ||||||
|   WF.smear(Uflow, Umu); |  | ||||||
|  |  | ||||||
|   RealD WFlow_plaq = WilsonLoops<PeriodicGimplR>::avgPlaquette(Uflow); |  | ||||||
|   RealD WFlow_TC   = WilsonLoops<PeriodicGimplR>::TopologicalCharge(Uflow); |  | ||||||
|   RealD WFlow_T0   = WF.energyDensityPlaquette(t,Uflow); // t |  | ||||||
|   RealD WFlow_EC   = WF.energyDensityCloverleaf(t,Uflow); |  | ||||||
|   std::cout << GridLogMessage << "Plaquette          "<< conf << "   " << WFlow_plaq << std::endl; |  | ||||||
|   std::cout << GridLogMessage << "T0                 "<< conf << "   " << WFlow_T0 << std::endl; |  | ||||||
|   std::cout << GridLogMessage << "TC0                 "<< conf << "   " << WFlow_EC << std::endl; |  | ||||||
|   std::cout << GridLogMessage << "TopologicalCharge  "<< conf << "   " << WFlow_TC   << std::endl; |  | ||||||
|  |  | ||||||
|   std::cout<< GridLogMessage << " Admissibility check:\n"; |  | ||||||
|   const double sp_adm = 0.067;                // admissible threshold |  | ||||||
|   const double pl_adm = 1.0-sp_adm/Nc; |  | ||||||
|   std::cout << GridLogMessage << "   (pl_adm =" << pl_adm << ")\n"; |  | ||||||
|  |  | ||||||
|   // Need min and reduce min for this function |  | ||||||
|   //double sp_max = NC_*(1.0-stpl.plaq_min(U,pl_adm)); |  | ||||||
|   double sp_ave = Nc*(1.0-WFlow_plaq); |  | ||||||
|  |  | ||||||
|   //std::cout<< GridLogMessage << "   sp_max = "        << sp_max <<"\n"; |  | ||||||
|   std::cout<< GridLogMessage << "   sp_ave = "        << sp_ave <<"\n"; |  | ||||||
|   std::cout<< GridLogMessage << "   (sp_admissible = "<< sp_adm <<")\n"; |  | ||||||
|   //std::cout<< GridLogMessage << "   sp_admissible - sp_max = "<<sp_adm-sp_max <<"\n"; |  | ||||||
|   std::cout<< GridLogMessage << "   sp_admissible - sp_ave = "<<sp_adm-sp_ave <<"\n"; |  | ||||||
|   } |  | ||||||
|   Grid_finalize(); |  | ||||||
| }  // main |  | ||||||
|  |  | ||||||
|  |  | ||||||
| /* |  | ||||||
| Input file example |  | ||||||
|  |  | ||||||
|  |  | ||||||
| JSON |  | ||||||
|  |  | ||||||
| { |  | ||||||
|     "WilsonFlow":{ |  | ||||||
| 	"steps": 200, |  | ||||||
| 	"step_size": 0.01, |  | ||||||
| 	"meas_interval": 50, |  | ||||||
|   "maxTau": 2.0 |  | ||||||
|     }, |  | ||||||
|     "Configurations":{ |  | ||||||
| 	"conf_prefix": "ckpoint_lat", |  | ||||||
| 	"rng_prefix": "ckpoint_rng", |  | ||||||
| 	"StartConfiguration": 3000, |  | ||||||
| 	"EndConfiguration": 3000, |  | ||||||
| 	"Skip": 5 |  | ||||||
|     } |  | ||||||
| } |  | ||||||
|  |  | ||||||
|  |  | ||||||
| */ |  | ||||||
| @@ -58,7 +58,7 @@ int main(int argc, char **argv) { | |||||||
|   HMCparameters HMCparams; |   HMCparameters HMCparams; | ||||||
|   HMCparams.StartTrajectory  = 0; |   HMCparams.StartTrajectory  = 0; | ||||||
|   HMCparams.Trajectories     = 200; |   HMCparams.Trajectories     = 200; | ||||||
|   HMCparams.NoMetropolisUntil=  0; |   HMCparams.NoMetropolisUntil=  20; | ||||||
|   // "[HotStart, ColdStart, TepidStart, CheckpointStart]\n"; |   // "[HotStart, ColdStart, TepidStart, CheckpointStart]\n"; | ||||||
|   HMCparams.StartingType     =std::string("ColdStart"); |   HMCparams.StartingType     =std::string("ColdStart"); | ||||||
|   HMCparams.MD = MD; |   HMCparams.MD = MD; | ||||||
| @@ -70,7 +70,7 @@ int main(int argc, char **argv) { | |||||||
|   CheckpointerParameters CPparams; |   CheckpointerParameters CPparams; | ||||||
|   CPparams.config_prefix = "ckpoint_EODWF_lat"; |   CPparams.config_prefix = "ckpoint_EODWF_lat"; | ||||||
|   CPparams.rng_prefix    = "ckpoint_EODWF_rng"; |   CPparams.rng_prefix    = "ckpoint_EODWF_rng"; | ||||||
|   CPparams.saveInterval  = 1; |   CPparams.saveInterval  = 10; | ||||||
|   CPparams.format        = "IEEE64BIG"; |   CPparams.format        = "IEEE64BIG"; | ||||||
|   TheHMC.Resources.LoadNerscCheckpointer(CPparams); |   TheHMC.Resources.LoadNerscCheckpointer(CPparams); | ||||||
|  |  | ||||||
| @@ -186,8 +186,6 @@ int main(int argc, char **argv) { | |||||||
|  |  | ||||||
|   ///////////////////////////////////////////////////////////// |   ///////////////////////////////////////////////////////////// | ||||||
|   // HMC parameters are serialisable |   // HMC parameters are serialisable | ||||||
|   TheHMC.ReadCommandLine(argc,argv);  // params on CML or from param file                                                                      |  | ||||||
|   TheHMC.initializeGaugeFieldAndRNGs(U); |  | ||||||
|  |  | ||||||
|   std::cout << GridLogMessage << " Running the HMC "<< std::endl; |   std::cout << GridLogMessage << " Running the HMC "<< std::endl; | ||||||
|   TheHMC.Run();  // no smearing |   TheHMC.Run();  // no smearing | ||||||
|   | |||||||
| @@ -1,92 +0,0 @@ | |||||||
| /************************************************************************************* |  | ||||||
|  |  | ||||||
| Grid physics library, www.github.com/paboyle/Grid |  | ||||||
|  |  | ||||||
| Source file:  |  | ||||||
|  |  | ||||||
| Copyright (C) 2017 |  | ||||||
|  |  | ||||||
| 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 */ |  | ||||||
| #include <Grid/Grid.h> |  | ||||||
| #include <string> |  | ||||||
|  |  | ||||||
| template <class T> void readFile(T& out, std::string const fname){ |  | ||||||
| #ifdef HAVE_LIME |  | ||||||
|   Grid::emptyUserRecord record; |  | ||||||
|   Grid::ScidacReader RD; |  | ||||||
|   RD.open(fname); |  | ||||||
|   RD.readScidacFieldRecord(out,record); |  | ||||||
|   RD.close(); |  | ||||||
| #endif |  | ||||||
| } |  | ||||||
|  |  | ||||||
|  |  | ||||||
| int main(int argc, char **argv) { |  | ||||||
|   using namespace Grid; |  | ||||||
|    |  | ||||||
|   Grid_init(&argc, &argv); |  | ||||||
|   GridLogLayout(); |  | ||||||
|  |  | ||||||
|   auto latt_size   = GridDefaultLatt(); |  | ||||||
|   auto simd_layout = GridDefaultSimd(Nd, vComplex::Nsimd()); |  | ||||||
|   auto mpi_layout  = GridDefaultMpi(); |  | ||||||
|   GridCartesian               Grid(latt_size, simd_layout, mpi_layout); |  | ||||||
|  |  | ||||||
|   LatticeComplexD plaq1(&Grid), plaq2(&Grid); |  | ||||||
|  |  | ||||||
|   FieldMetaData header; |  | ||||||
|  |  | ||||||
|   double vol = plaq1.Grid()->gSites(); |  | ||||||
|    |  | ||||||
|   std::string file1(argv[1]); |  | ||||||
|   std::cout << "Reading "<<file1<<std::endl; |  | ||||||
|   readFile(plaq1,file1); |  | ||||||
|   std::string file2(argv[2]); |  | ||||||
|   std::cout << "Reading "<<file2<<std::endl; |  | ||||||
|   readFile(plaq2,file2); |  | ||||||
|    |  | ||||||
|   auto p1bar = TensorRemove(sum(plaq1)); |  | ||||||
|   auto p2bar = TensorRemove(sum(plaq2)); |  | ||||||
|  |  | ||||||
|   p1bar = p1bar / vol; |  | ||||||
|   p2bar = p2bar / vol; |  | ||||||
|  |  | ||||||
|   std::cout<< GridLogMessage << "p1bar = "<<p1bar<<std::endl; |  | ||||||
|   std::cout<< GridLogMessage << "p2bar = "<<p2bar<<std::endl; |  | ||||||
|  |  | ||||||
|   auto corr_site = plaq1 * plaq2 - p1bar * p2bar; |  | ||||||
|   auto corr_bar  = TensorRemove(sum(corr_site))/vol; |  | ||||||
|  |  | ||||||
|   auto cov1_site = plaq1 * plaq1 - p1bar * p1bar; |  | ||||||
|   auto cov1_bar  = TensorRemove(sum(cov1_site))/vol; |  | ||||||
|  |  | ||||||
|   auto cov2_site = plaq2 * plaq2 - p2bar * p2bar; |  | ||||||
|   auto cov2_bar  = TensorRemove(sum(cov2_site))/vol; |  | ||||||
|  |  | ||||||
|   std::cout<< GridLogMessage << "cov_bar = "<<corr_bar<<std::endl; |  | ||||||
|  |  | ||||||
|   std::cout<< GridLogMessage << "corr_bar = "<<corr_bar/sqrt(cov1_bar*cov2_bar)<<std::endl; |  | ||||||
|    |  | ||||||
|   Grid_finalize(); |  | ||||||
| }  // main |  | ||||||
|  |  | ||||||
|  |  | ||||||
| @@ -1,81 +0,0 @@ | |||||||
| /************************************************************************************* |  | ||||||
|  |  | ||||||
| Grid physics library, www.github.com/paboyle/Grid |  | ||||||
|  |  | ||||||
| Source file:  |  | ||||||
|  |  | ||||||
| Copyright (C) 2017 |  | ||||||
|  |  | ||||||
| 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 */ |  | ||||||
| #include <Grid/Grid.h> |  | ||||||
| #include <string> |  | ||||||
|  |  | ||||||
| NAMESPACE_BEGIN(Grid); |  | ||||||
| template <class T> void writeFile(T& out, std::string const fname){ |  | ||||||
| #ifdef HAVE_LIME |  | ||||||
|   emptyUserRecord record; |  | ||||||
|   ScidacWriter WR(out.Grid()->IsBoss()); |  | ||||||
|   WR.open(fname); |  | ||||||
|   WR.writeScidacFieldRecord(out,record,0,Grid::BinaryIO::BINARYIO_LEXICOGRAPHIC); |  | ||||||
|   WR.close(); |  | ||||||
| #endif |  | ||||||
| } |  | ||||||
| NAMESPACE_END(Grid); |  | ||||||
| int main(int argc, char **argv) { |  | ||||||
|   using namespace Grid; |  | ||||||
|    |  | ||||||
|   Grid_init(&argc, &argv); |  | ||||||
|   GridLogLayout(); |  | ||||||
|  |  | ||||||
|   auto latt_size   = GridDefaultLatt(); |  | ||||||
|   auto simd_layout = GridDefaultSimd(Nd, vComplex::Nsimd()); |  | ||||||
|   auto mpi_layout  = GridDefaultMpi(); |  | ||||||
|   GridCartesian               Grid(latt_size, simd_layout, mpi_layout); |  | ||||||
|  |  | ||||||
|   LatticeGaugeField Umu(&Grid); |  | ||||||
|   std::vector<LatticeColourMatrix> U(4,&Grid); |  | ||||||
|   LatticeComplexD plaq(&Grid); |  | ||||||
|  |  | ||||||
|   FieldMetaData header; |  | ||||||
|  |  | ||||||
|   double vol = Umu.Grid()->gSites(); |  | ||||||
|   double faces = (1.0 * Nd * (Nd - 1)) / 2.0; |  | ||||||
|   double Ncdiv = 1.0/Nc; |  | ||||||
|    |  | ||||||
|   std::string file1(argv[1]); |  | ||||||
|   std::string file2(argv[2]); |  | ||||||
|   std::cout << "Reading "<<file1<<std::endl; |  | ||||||
|   NerscIO::readConfiguration(Umu,header,file1); |  | ||||||
|   for(int mu=0;mu<Nd;mu++){ |  | ||||||
|     U[mu] = PeekIndex<LorentzIndex>(Umu,mu); |  | ||||||
|   } |  | ||||||
|   SU3WilsonLoops::sitePlaquette(plaq,U); |  | ||||||
|  |  | ||||||
|   plaq = plaq *(Ncdiv/faces); |  | ||||||
|    |  | ||||||
|   std::cout << "Writing "<<file2<<std::endl; |  | ||||||
|   writeFile(plaq,file2); |  | ||||||
|    |  | ||||||
|   Grid_finalize(); |  | ||||||
| }  // main |  | ||||||
|  |  | ||||||
|  |  | ||||||
							
								
								
									
										49
									
								
								TODO
									
									
									
									
									
								
							
							
						
						
									
										49
									
								
								TODO
									
									
									
									
									
								
							| @@ -1,50 +1,6 @@ | |||||||
| i)    Refine subspace with HDCG & recompute | - - Slice sum optimisation & A2A - atomic addition | ||||||
| ii)   Block Lanczos in coarse space |  | ||||||
| iii)  Batched block project in the operator computation |  | ||||||
|  |  | ||||||
| ------- |  | ||||||
|  |  | ||||||
| i) Clean up CoarsenedMatrix, GeneralCoarsenedMatrix, GeneralCoarsenedMatrixMultiRHS |  | ||||||
|  |  | ||||||
|  -- Ideally want a SINGLE implementation that does MultiRHS **AND** works with one RHS. |  | ||||||
|  |  | ||||||
|  -- -- Getting there. One RHS is hard due to vectorisation & hardwired coarse5d layout |  | ||||||
|  -- Compromise: Wrap it in a copy in/out for a slice. |  | ||||||
|   |  | ||||||
|  -- Bad for Lanczos: need to do a BLOCK Lanczos instead. Longer term. |  | ||||||
|  |  | ||||||
|  -- **** Make the test do ONLY the single RHS. **** |  | ||||||
|  -- I/O for the matrix elements required. |  | ||||||
|  -- Make the Adef2 build an eigenvector deflater and a block projector |  | ||||||
|  --  |  | ||||||
|   |  | ||||||
|  -- Work with Regensburg on tests. |  | ||||||
|  -- Plan interface preserving the coarsened matrix interface (??) |  | ||||||
|  |  | ||||||
| -- Move functionality from GeneralCoarsenedMatrix INTO GeneralCoarsenedMatrixMultiRHS -- DONE |  | ||||||
|    -- Don't immediately delete original |  | ||||||
|    -- Instead make the new one self contained, then delete. |  | ||||||
|    -- New DWF inverter test. |  | ||||||
|  |  | ||||||
|   // void PopulateAdag(void) |  | ||||||
|   void CoarsenOperator(LinearOperatorBase<Lattice<Fobj> > &linop, Aggregation<Fobj,CComplex,nbasis> & Subspace) -- DONE |  | ||||||
|   ExchangeCoarseLinks(); |  | ||||||
|  |  | ||||||
| iii) Aurora -- christoph's problem -- DONE |  | ||||||
|      Aurora -- Carleton's problem staggered. |  | ||||||
|  |  | ||||||
| iv) Dennis merge and test Aurora -- DONE (save test) |  | ||||||
|  |  | ||||||
| v) Merge Ed Bennet's request --DONE  |  | ||||||
|  |  | ||||||
| vi) Repro CG  -- get down to the level of single node testing via split grid test  |  | ||||||
|  |  | ||||||
|  |  | ||||||
| ========================= |  | ||||||
|  |  | ||||||
| =============== |  | ||||||
| - - Slice sum optimisation & A2A - atomic addition -- Dennis |  | ||||||
| - - Also faster non-atomic reduction | - - Also faster non-atomic reduction | ||||||
|  | - - Remaining PRs | ||||||
| - - DDHMC | - - DDHMC | ||||||
|   - - MixedPrec is the action eval, high precision |   - - MixedPrec is the action eval, high precision | ||||||
|   - - MixedPrecCleanup is the force eval, low precision |   - - MixedPrecCleanup is the force eval, low precision | ||||||
| @@ -61,6 +17,7 @@ DDHMC | |||||||
| -- Multishift Mixed Precision - DONE | -- Multishift Mixed Precision - DONE | ||||||
| -- Pole dependent residual  - DONE | -- Pole dependent residual  - DONE | ||||||
|  |  | ||||||
|  |  | ||||||
| ======= | ======= | ||||||
| -- comms threads issue?? | -- comms threads issue?? | ||||||
| -- Part done: Staggered kernel performance on GPU | -- Part done: Staggered kernel performance on GPU | ||||||
|   | |||||||
| @@ -1,975 +0,0 @@ | |||||||
| /************************************************************************************* |  | ||||||
|  |  | ||||||
|     Grid physics library, www.github.com/paboyle/Grid  |  | ||||||
|  |  | ||||||
|     Source file: ./benchmarks/Benchmark_usqcd.cc |  | ||||||
|  |  | ||||||
|     Copyright (C) 2015 |  | ||||||
|  |  | ||||||
| Author: Peter Boyle <paboyle@ph.ed.ac.uk> |  | ||||||
| Author: paboyle <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 */ |  | ||||||
| #include <Grid/Grid.h> |  | ||||||
| #include <Grid/algorithms/blas/BatchedBlas.h> |  | ||||||
|  |  | ||||||
| using namespace Grid; |  | ||||||
|  |  | ||||||
| std::vector<int> L_list; |  | ||||||
| std::vector<int> Ls_list; |  | ||||||
| std::vector<double> mflop_list; |  | ||||||
|  |  | ||||||
| double mflop_ref; |  | ||||||
| double mflop_ref_err; |  | ||||||
|  |  | ||||||
| int NN_global; |  | ||||||
|  |  | ||||||
| FILE * FP; |  | ||||||
|  |  | ||||||
| struct time_statistics{ |  | ||||||
|   double mean; |  | ||||||
|   double err; |  | ||||||
|   double min; |  | ||||||
|   double max; |  | ||||||
|  |  | ||||||
|   void statistics(std::vector<double> v){ |  | ||||||
|       double sum = std::accumulate(v.begin(), v.end(), 0.0); |  | ||||||
|       mean = sum / v.size(); |  | ||||||
|  |  | ||||||
|       std::vector<double> diff(v.size()); |  | ||||||
|       std::transform(v.begin(), v.end(), diff.begin(), [=](double x) { return x - mean; }); |  | ||||||
|       double sq_sum = std::inner_product(diff.begin(), diff.end(), diff.begin(), 0.0); |  | ||||||
|       err = std::sqrt(sq_sum / (v.size()*(v.size() - 1))); |  | ||||||
|  |  | ||||||
|       auto result = std::minmax_element(v.begin(), v.end()); |  | ||||||
|       min = *result.first; |  | ||||||
|       max = *result.second; |  | ||||||
| } |  | ||||||
| }; |  | ||||||
|  |  | ||||||
| void comms_header(){ |  | ||||||
|   std::cout <<GridLogMessage << " L  "<<"\t"<<" Ls  "<<"\t" |  | ||||||
|             <<"bytes\t MB/s uni  \t\t MB/s bidi "<<std::endl; |  | ||||||
| }; |  | ||||||
|  |  | ||||||
| struct controls { |  | ||||||
|   int Opt; |  | ||||||
|   int CommsOverlap; |  | ||||||
|   Grid::CartesianCommunicator::CommunicatorPolicy_t CommsAsynch; |  | ||||||
| }; |  | ||||||
|  |  | ||||||
| class Benchmark { |  | ||||||
| public: |  | ||||||
|   static void Decomposition (void ) { |  | ||||||
|  |  | ||||||
|     int threads = GridThread::GetThreads(); |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "= Grid is setup to use "<<threads<<" threads"<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage<<"Grid Default Decomposition patterns\n"; |  | ||||||
|     std::cout<<GridLogMessage<<"\tOpenMP threads : "<<GridThread::GetThreads()<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage<<"\tMPI tasks      : "<<GridCmdVectorIntToString(GridDefaultMpi())<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage<<"\tvReal          : "<<sizeof(vReal )*8    <<"bits ; " <<GridCmdVectorIntToString(GridDefaultSimd(4,vReal::Nsimd()))<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage<<"\tvRealF         : "<<sizeof(vRealF)*8    <<"bits ; " <<GridCmdVectorIntToString(GridDefaultSimd(4,vRealF::Nsimd()))<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage<<"\tvRealD         : "<<sizeof(vRealD)*8    <<"bits ; " <<GridCmdVectorIntToString(GridDefaultSimd(4,vRealD::Nsimd()))<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage<<"\tvComplex       : "<<sizeof(vComplex )*8 <<"bits ; " <<GridCmdVectorIntToString(GridDefaultSimd(4,vComplex::Nsimd()))<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage<<"\tvComplexF      : "<<sizeof(vComplexF)*8 <<"bits ; " <<GridCmdVectorIntToString(GridDefaultSimd(4,vComplexF::Nsimd()))<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage<<"\tvComplexD      : "<<sizeof(vComplexD)*8 <<"bits ; " <<GridCmdVectorIntToString(GridDefaultSimd(4,vComplexD::Nsimd()))<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|  |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|   static void Comms(void) |  | ||||||
|   { |  | ||||||
|     int Nloop=200; |  | ||||||
|     int nmu=0; |  | ||||||
|     int maxlat=32; |  | ||||||
|  |  | ||||||
|     Coordinate simd_layout = GridDefaultSimd(Nd,vComplexD::Nsimd()); |  | ||||||
|     Coordinate mpi_layout  = GridDefaultMpi(); |  | ||||||
|  |  | ||||||
|     for(int mu=0;mu<Nd;mu++) if (mpi_layout[mu]>1) nmu++; |  | ||||||
|  |  | ||||||
|     std::vector<double> t_time(Nloop); |  | ||||||
|     time_statistics timestat; |  | ||||||
|  |  | ||||||
|     std::cout<<GridLogMessage << "===================================================================================================="<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "= Benchmarking threaded STENCIL halo exchange in "<<nmu<<" dimensions"<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "===================================================================================================="<<std::endl; |  | ||||||
|     comms_header(); |  | ||||||
|  |  | ||||||
|     fprintf(FP,"Communications\n\n"); |  | ||||||
|     fprintf(FP,"Packet bytes, direction, GB/s per node\n"); |  | ||||||
|     for(int lat=16;lat<=maxlat;lat+=8){ |  | ||||||
|       //      for(int Ls=8;Ls<=8;Ls*=2){ |  | ||||||
|       { int Ls=12; |  | ||||||
|  |  | ||||||
| 	Coordinate latt_size  ({lat*mpi_layout[0], |  | ||||||
| 	      lat*mpi_layout[1], |  | ||||||
| 	      lat*mpi_layout[2], |  | ||||||
| 	      lat*mpi_layout[3]}); |  | ||||||
|  |  | ||||||
| 	GridCartesian     Grid(latt_size,simd_layout,mpi_layout); |  | ||||||
| 	RealD Nrank = Grid._Nprocessors; |  | ||||||
| 	RealD Nnode = Grid.NodeCount(); |  | ||||||
| 	RealD ppn = Nrank/Nnode; |  | ||||||
|  |  | ||||||
| 	std::vector<HalfSpinColourVectorD *> xbuf(8); |  | ||||||
| 	std::vector<HalfSpinColourVectorD *> rbuf(8); |  | ||||||
| 	//Grid.ShmBufferFreeAll(); |  | ||||||
| 	uint64_t bytes=lat*lat*lat*Ls*sizeof(HalfSpinColourVectorD); |  | ||||||
| 	for(int d=0;d<8;d++){ |  | ||||||
| 	  xbuf[d] = (HalfSpinColourVectorD *)acceleratorAllocDevice(bytes); |  | ||||||
| 	  rbuf[d] = (HalfSpinColourVectorD *)acceleratorAllocDevice(bytes); |  | ||||||
| 	  //	  bzero((void *)xbuf[d],lat*lat*lat*Ls*sizeof(HalfSpinColourVectorD)); |  | ||||||
| 	  //	  bzero((void *)rbuf[d],lat*lat*lat*Ls*sizeof(HalfSpinColourVectorD)); |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	//	int ncomm; |  | ||||||
| 	double dbytes; |  | ||||||
|  |  | ||||||
|         for(int dir=0;dir<8;dir++) { |  | ||||||
| 	  int mu =dir % 4; |  | ||||||
| 	  if (mpi_layout[mu]>1 ) { |  | ||||||
|  |  | ||||||
| 	    std::vector<double> times(Nloop); |  | ||||||
| 	    for(int i=0;i<Nloop;i++){ |  | ||||||
|  |  | ||||||
| 	      dbytes=0;	         |  | ||||||
| 	      double start=usecond(); |  | ||||||
| 	      int xmit_to_rank; |  | ||||||
| 	      int recv_from_rank; |  | ||||||
|  |  | ||||||
| 	      if ( dir == mu ) {  |  | ||||||
| 		int comm_proc=1; |  | ||||||
| 		Grid.ShiftedRanks(mu,comm_proc,xmit_to_rank,recv_from_rank); |  | ||||||
| 	      } else {  |  | ||||||
| 		int comm_proc = mpi_layout[mu]-1; |  | ||||||
| 		Grid.ShiftedRanks(mu,comm_proc,xmit_to_rank,recv_from_rank); |  | ||||||
| 	      } |  | ||||||
| 	      Grid.SendToRecvFrom((void *)&xbuf[dir][0], xmit_to_rank, |  | ||||||
| 				  (void *)&rbuf[dir][0], recv_from_rank, |  | ||||||
| 				  bytes); |  | ||||||
| 	      dbytes+=bytes; |  | ||||||
| 	      |  | ||||||
| 	      double stop=usecond(); |  | ||||||
| 	      t_time[i] = stop-start; // microseconds |  | ||||||
|  |  | ||||||
| 	    } |  | ||||||
| 	    timestat.statistics(t_time); |  | ||||||
| 	   |  | ||||||
| 	    dbytes=dbytes*ppn; |  | ||||||
| 	    double xbytes    = dbytes*0.5; |  | ||||||
| 	    double bidibytes = dbytes; |  | ||||||
| 	   |  | ||||||
| 	    std::cout<<GridLogMessage << lat<<"\t"<<Ls<<"\t " |  | ||||||
| 		     << bytes << " \t " |  | ||||||
| 		     <<xbytes/timestat.mean |  | ||||||
| 		     << "\t\t" |  | ||||||
| 		     << bidibytes/timestat.mean<< std::endl; |  | ||||||
| 	    fprintf(FP,"%ld, %d, %f\n",(long)bytes,dir,bidibytes/timestat.mean/1000.); |  | ||||||
| 	  } |  | ||||||
| 	} |  | ||||||
| 	for(int d=0;d<8;d++){ |  | ||||||
| 	  acceleratorFreeDevice(xbuf[d]); |  | ||||||
| 	  acceleratorFreeDevice(rbuf[d]); |  | ||||||
| 	} |  | ||||||
|       } |  | ||||||
|     } |  | ||||||
|     fprintf(FP,"\n\n"); |  | ||||||
|      |  | ||||||
|     return; |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|    |  | ||||||
|   static void Memory(void) |  | ||||||
|   { |  | ||||||
|     const int Nvec=8; |  | ||||||
|     typedef Lattice< iVector< vReal,Nvec> > LatticeVec; |  | ||||||
|     typedef iVector<vReal,Nvec> Vec; |  | ||||||
|  |  | ||||||
|     Coordinate simd_layout = GridDefaultSimd(Nd,vReal::Nsimd()); |  | ||||||
|     Coordinate mpi_layout  = GridDefaultMpi(); |  | ||||||
|  |  | ||||||
|     fprintf(FP,"Memory Bandwidth\n\n"); |  | ||||||
|     fprintf(FP,"Bytes, GB/s per node\n"); |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "= Benchmarking a*x + y bandwidth"<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<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; |  | ||||||
|    |  | ||||||
|     //    uint64_t NP; |  | ||||||
|     uint64_t NN; |  | ||||||
|  |  | ||||||
|  |  | ||||||
|   uint64_t lmax=40; |  | ||||||
| #define NLOOP (1000*lmax*lmax*lmax*lmax/lat/lat/lat/lat) |  | ||||||
|  |  | ||||||
|     GridSerialRNG          sRNG;      sRNG.SeedFixedIntegers(std::vector<int>({45,12,81,9})); |  | ||||||
|     for(int lat=8;lat<=lmax;lat+=8){ |  | ||||||
|  |  | ||||||
|       Coordinate 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); |  | ||||||
|  |  | ||||||
|       //      NP= Grid.RankCount(); |  | ||||||
|       NN =Grid.NodeCount(); |  | ||||||
|  |  | ||||||
|       Vec rn ; random(sRNG,rn); |  | ||||||
|  |  | ||||||
|       LatticeVec z(&Grid); z=Zero(); |  | ||||||
|       LatticeVec x(&Grid); x=Zero(); |  | ||||||
|       LatticeVec y(&Grid); y=Zero(); |  | ||||||
|       double a=2.0; |  | ||||||
|  |  | ||||||
|       uint64_t Nloop=NLOOP; |  | ||||||
|  |  | ||||||
|       double start=usecond(); |  | ||||||
|       for(int i=0;i<Nloop;i++){ |  | ||||||
| 	z=a*x-y; |  | ||||||
|       } |  | ||||||
|       double stop=usecond(); |  | ||||||
|       double time = (stop-start)/Nloop*1000; |  | ||||||
|       |  | ||||||
|       double flops=vol*Nvec*2;// mul,add |  | ||||||
|       double bytes=3.0*vol*Nvec*sizeof(Real); |  | ||||||
|       std::cout<<GridLogMessage<<std::setprecision(3)  |  | ||||||
| 	       << lat<<"\t\t"<<bytes<<"   \t\t"<<bytes/time<<"\t\t"<<flops/time<<"\t\t"<<(stop-start)/1000./1000. |  | ||||||
| 	       << "\t\t"<< bytes/time/NN <<std::endl; |  | ||||||
|  |  | ||||||
|       fprintf(FP,"%ld, %f\n",(long)bytes,bytes/time/NN); |  | ||||||
|  |  | ||||||
|     } |  | ||||||
|     fprintf(FP,"\n\n"); |  | ||||||
|   }; |  | ||||||
|  |  | ||||||
|   template<class CComplex> |  | ||||||
|   static void BLAS(void) |  | ||||||
|   { |  | ||||||
|     //int nbasis, int nrhs, int coarseVol |  | ||||||
|     int  basis[] = { 16,32,64 }; |  | ||||||
|     int  rhs[]   = { 8,12,16 }; |  | ||||||
|     int  vol  = 8*8*8*8; |  | ||||||
|     int  blk  = 4*4*4*4; |  | ||||||
|  |  | ||||||
|     GridBLAS blas; |  | ||||||
|  |  | ||||||
|     int fpbits = sizeof(CComplex)*4; |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "= batched GEMM fp"<<fpbits<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "  M  "<<"\t\t"<<"N"<<"\t\t\t"<<"K"<<"\t\t"<<"Gflop/s / rank (coarse mrhs)"<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "----------------------------------------------------------"<<std::endl; |  | ||||||
|    |  | ||||||
|     fprintf(FP,"GEMM\n\n M, N, K, BATCH, GF/s per rank fp%d\n",fpbits); |  | ||||||
|  |  | ||||||
|     for(int b=0;b<3;b++){ |  | ||||||
|     for(int r=0;r<3;r++){ |  | ||||||
|       int M=basis[b]; |  | ||||||
|       int N=rhs[r]; |  | ||||||
|       int K=basis[b]; |  | ||||||
|       int BATCH=vol; |  | ||||||
|       double p=blas.benchmark<CComplex>(M,N,K,BATCH); |  | ||||||
|  |  | ||||||
|       fprintf(FP,"%d, %d, %d, %d, %f\n", M, N, K, BATCH, p); |  | ||||||
|        |  | ||||||
|       std::cout<<GridLogMessage<<std::setprecision(3)  |  | ||||||
| 	       << M<<"\t\t"<<N<<"\t\t"<<K<<"\t\t"<<BATCH<<"\t\t"<<p<<std::endl; |  | ||||||
|     }} |  | ||||||
|     std::cout<<GridLogMessage << "----------------------------------------------------------"<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "  M  "<<"\t\t"<<"N"<<"\t\t\t"<<"K"<<"\t\t"<<"Gflop/s / rank (block project)"<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "----------------------------------------------------------"<<std::endl; |  | ||||||
|     for(int b=0;b<3;b++){ |  | ||||||
|     for(int r=0;r<3;r++){ |  | ||||||
|       int M=basis[b]; |  | ||||||
|       int N=rhs[r]; |  | ||||||
|       int K=blk; |  | ||||||
|       int BATCH=vol; |  | ||||||
|       double p=blas.benchmark<CComplex>(M,N,K,BATCH); |  | ||||||
|  |  | ||||||
|       fprintf(FP,"%d, %d, %d, %d, %f\n", M, N, K, BATCH, p); |  | ||||||
|       std::cout<<GridLogMessage<<std::setprecision(3)  |  | ||||||
| 	       << M<<"\t\t"<<N<<"\t\t"<<K<<"\t\t"<<BATCH<<"\t\t"<<p<<std::endl; |  | ||||||
|     }} |  | ||||||
|     std::cout<<GridLogMessage << "----------------------------------------------------------"<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "  M  "<<"\t\t"<<"N"<<"\t\t\t"<<"K"<<"\t\t"<<"Gflop/s / rank (block promote)"<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "----------------------------------------------------------"<<std::endl; |  | ||||||
|     for(int b=0;b<3;b++){ |  | ||||||
|     for(int r=0;r<3;r++){ |  | ||||||
|       int M=rhs[r]; |  | ||||||
|       int N=blk; |  | ||||||
|       int K=basis[b]; |  | ||||||
|       int BATCH=vol; |  | ||||||
|       double p=blas.benchmark<CComplex>(M,N,K,BATCH); |  | ||||||
|  |  | ||||||
|       fprintf(FP,"%d, %d, %d, %d, %f\n", M, N, K, BATCH, p); |  | ||||||
|       std::cout<<GridLogMessage<<std::setprecision(3)  |  | ||||||
| 	       << M<<"\t\t"<<N<<"\t\t"<<K<<"\t\t"<<BATCH<<"\t\t"<<p<<std::endl; |  | ||||||
|     }} |  | ||||||
|     fprintf(FP,"\n\n\n"); |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|   }; |  | ||||||
|    |  | ||||||
|  |  | ||||||
|   static void SU4(void) |  | ||||||
|   { |  | ||||||
|     const int Nc4=4; |  | ||||||
|     typedef Lattice< iMatrix< vComplexF,Nc4> > LatticeSU4; |  | ||||||
|  |  | ||||||
|     Coordinate simd_layout = GridDefaultSimd(Nd,vComplexF::Nsimd()); |  | ||||||
|     Coordinate mpi_layout  = GridDefaultMpi(); |  | ||||||
|      |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "= Benchmarking z = y*x SU(4) bandwidth"<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<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; |  | ||||||
|    |  | ||||||
|     uint64_t NN; |  | ||||||
|  |  | ||||||
|  |  | ||||||
|     uint64_t lmax=32; |  | ||||||
|  |  | ||||||
|     GridSerialRNG          sRNG;      sRNG.SeedFixedIntegers(std::vector<int>({45,12,81,9})); |  | ||||||
|     for(int lat=8;lat<=lmax;lat+=8){ |  | ||||||
|  |  | ||||||
|       Coordinate 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); |  | ||||||
|  |  | ||||||
|       NN =Grid.NodeCount(); |  | ||||||
|  |  | ||||||
|  |  | ||||||
|       LatticeSU4 z(&Grid); z=Zero(); |  | ||||||
|       LatticeSU4 x(&Grid); x=Zero(); |  | ||||||
|       LatticeSU4 y(&Grid); y=Zero(); |  | ||||||
|       //      double a=2.0; |  | ||||||
|  |  | ||||||
|       uint64_t Nloop=NLOOP; |  | ||||||
|  |  | ||||||
|       double start=usecond(); |  | ||||||
|       for(int i=0;i<Nloop;i++){ |  | ||||||
| 	z=x*y; |  | ||||||
|       } |  | ||||||
|       double stop=usecond(); |  | ||||||
|       double time = (stop-start)/Nloop*1000; |  | ||||||
|       |  | ||||||
|       double flops=vol*Nc4*Nc4*(6+(Nc4-1)*8);// mul,add |  | ||||||
|       double bytes=3.0*vol*Nc4*Nc4*2*sizeof(RealF); |  | ||||||
|       std::cout<<GridLogMessage<<std::setprecision(3)  |  | ||||||
| 	       << lat<<"\t\t"<<bytes<<"   \t\t"<<bytes/time<<"\t\t"<<flops/time<<"\t\t"<<(stop-start)/1000./1000. |  | ||||||
| 	       << "\t\t"<< bytes/time/NN <<std::endl; |  | ||||||
|  |  | ||||||
|     } |  | ||||||
|   }; |  | ||||||
|  |  | ||||||
|  |  | ||||||
|   static double DWF(int Ls,int L) |  | ||||||
|   { |  | ||||||
|     RealD mass=0.1; |  | ||||||
|     RealD M5  =1.8; |  | ||||||
|  |  | ||||||
|     double mflops; |  | ||||||
|     double mflops_best = 0; |  | ||||||
|     double mflops_worst= 0; |  | ||||||
|     std::vector<double> mflops_all; |  | ||||||
|  |  | ||||||
|     /////////////////////////////////////////////////////// |  | ||||||
|     // Set/Get the layout & grid size |  | ||||||
|     /////////////////////////////////////////////////////// |  | ||||||
|     int threads = GridThread::GetThreads(); |  | ||||||
|     Coordinate mpi = GridDefaultMpi(); assert(mpi.size()==4); |  | ||||||
|     Coordinate local({L,L,L,L}); |  | ||||||
|     Coordinate latt4({local[0]*mpi[0],local[1]*mpi[1],local[2]*mpi[2],local[3]*mpi[3]}); |  | ||||||
|  |  | ||||||
|     GridCartesian         * TmpGrid   = SpaceTimeGrid::makeFourDimGrid(latt4,  |  | ||||||
| 								       GridDefaultSimd(Nd,vComplex::Nsimd()), |  | ||||||
| 								       GridDefaultMpi()); |  | ||||||
|     uint64_t NP = TmpGrid->RankCount(); |  | ||||||
|     uint64_t NN = TmpGrid->NodeCount(); |  | ||||||
|     NN_global=NN; |  | ||||||
|     uint64_t SHM=NP/NN; |  | ||||||
|  |  | ||||||
|  |  | ||||||
|     ///////// Welcome message //////////// |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "Benchmark DWF on "<<L<<"^4 local volume "<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "* Nc             : "<<Nc<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "* Global volume  : "<<GridCmdVectorIntToString(latt4)<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "* Ls             : "<<Ls<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "* ranks          : "<<NP  <<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "* nodes          : "<<NN  <<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "* ranks/node     : "<<SHM <<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "* ranks geom     : "<<GridCmdVectorIntToString(mpi)<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "* Using "<<threads<<" threads"<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|  |  | ||||||
|     ///////// Lattice Init //////////// |  | ||||||
|     GridCartesian         * UGrid   = SpaceTimeGrid::makeFourDimGrid(latt4, GridDefaultSimd(Nd,vComplexF::Nsimd()),GridDefaultMpi()); |  | ||||||
|     GridRedBlackCartesian * UrbGrid = SpaceTimeGrid::makeFourDimRedBlackGrid(UGrid); |  | ||||||
|     GridCartesian         * FGrid   = SpaceTimeGrid::makeFiveDimGrid(Ls,UGrid); |  | ||||||
|     GridRedBlackCartesian * FrbGrid = SpaceTimeGrid::makeFiveDimRedBlackGrid(Ls,UGrid); |  | ||||||
|  |  | ||||||
|      |  | ||||||
|     ///////// RNG Init //////////// |  | ||||||
|     std::vector<int> seeds4({1,2,3,4}); |  | ||||||
|     std::vector<int> seeds5({5,6,7,8}); |  | ||||||
|     GridParallelRNG          RNG4(UGrid);  RNG4.SeedFixedIntegers(seeds4); |  | ||||||
|     GridParallelRNG          RNG5(FGrid);  RNG5.SeedFixedIntegers(seeds5); |  | ||||||
|     std::cout << GridLogMessage << "Initialised RNGs" << std::endl; |  | ||||||
|  |  | ||||||
|     typedef DomainWallFermionF Action; |  | ||||||
|     typedef typename Action::FermionField Fermion; |  | ||||||
|     typedef LatticeGaugeFieldF Gauge; |  | ||||||
|      |  | ||||||
|     ///////// Source preparation //////////// |  | ||||||
|     Gauge Umu(UGrid);  SU<Nc>::HotConfiguration(RNG4,Umu);  |  | ||||||
|     Fermion src   (FGrid); random(RNG5,src); |  | ||||||
|     Fermion src_e (FrbGrid); |  | ||||||
|     Fermion src_o (FrbGrid); |  | ||||||
|     Fermion r_e   (FrbGrid); |  | ||||||
|     Fermion r_o   (FrbGrid); |  | ||||||
|     Fermion r_eo  (FGrid); |  | ||||||
|     Action Dw(Umu,*FGrid,*FrbGrid,*UGrid,*UrbGrid,mass,M5); |  | ||||||
|  |  | ||||||
|     { |  | ||||||
|  |  | ||||||
|       pickCheckerboard(Even,src_e,src); |  | ||||||
|       pickCheckerboard(Odd,src_o,src); |  | ||||||
|  |  | ||||||
| #ifdef AVX512 |  | ||||||
|       const int num_cases = 3; |  | ||||||
| #else  |  | ||||||
|       const int num_cases = 2; |  | ||||||
| #endif       |  | ||||||
|       std::string fmt("G/S/C ; G/O/C ; G/S/S ; G/O/S "); |  | ||||||
|  |  | ||||||
|       controls Cases [] = { |  | ||||||
| 	{  WilsonKernelsStatic::OptGeneric   ,  WilsonKernelsStatic::CommsAndCompute  ,CartesianCommunicator::CommunicatorPolicyConcurrent }, |  | ||||||
| 	{  WilsonKernelsStatic::OptHandUnroll,  WilsonKernelsStatic::CommsAndCompute  ,CartesianCommunicator::CommunicatorPolicyConcurrent }, |  | ||||||
| 	{  WilsonKernelsStatic::OptInlineAsm ,  WilsonKernelsStatic::CommsAndCompute  ,CartesianCommunicator::CommunicatorPolicyConcurrent } |  | ||||||
|       };  |  | ||||||
|  |  | ||||||
|       for(int c=0;c<num_cases;c++) { |  | ||||||
| 	 |  | ||||||
| 	WilsonKernelsStatic::Comms = Cases[c].CommsOverlap; |  | ||||||
| 	WilsonKernelsStatic::Opt   = Cases[c].Opt; |  | ||||||
| 	CartesianCommunicator::SetCommunicatorPolicy(Cases[c].CommsAsynch); |  | ||||||
|  |  | ||||||
| 	std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
| 	if ( WilsonKernelsStatic::Opt == WilsonKernelsStatic::OptGeneric   ) std::cout << GridLogMessage<< "* Using GENERIC Nc WilsonKernels" <<std::endl; |  | ||||||
| 	if ( WilsonKernelsStatic::Opt == WilsonKernelsStatic::OptInlineAsm ) std::cout << GridLogMessage<< "* Using ASM      WilsonKernels" <<std::endl; |  | ||||||
| 	if ( WilsonKernelsStatic::Opt == WilsonKernelsStatic::OptHandUnroll) std::cout << GridLogMessage<< "* Using UNROLLED WilsonKernels" <<std::endl; |  | ||||||
| 	if ( WilsonKernelsStatic::Comms == WilsonKernelsStatic::CommsAndCompute ) std::cout << GridLogMessage<< "* Using Overlapped Comms/Compute" <<std::endl; |  | ||||||
| 	if ( WilsonKernelsStatic::Comms == WilsonKernelsStatic::CommsThenCompute) std::cout << GridLogMessage<< "* Using sequential Comms/Compute" <<std::endl; |  | ||||||
| 	std::cout << GridLogMessage<< "* SINGLE precision "<<std::endl; |  | ||||||
| 	std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|  |  | ||||||
| 	int nwarm = 10; |  | ||||||
| 	double t0=usecond(); |  | ||||||
| 	FGrid->Barrier(); |  | ||||||
| 	for(int i=0;i<nwarm;i++){ |  | ||||||
| 	  Dw.DhopEO(src_o,r_e,DaggerNo); |  | ||||||
| 	} |  | ||||||
| 	FGrid->Barrier(); |  | ||||||
| 	double t1=usecond(); |  | ||||||
| 	uint64_t ncall = 500; |  | ||||||
|  |  | ||||||
| 	FGrid->Broadcast(0,&ncall,sizeof(ncall)); |  | ||||||
|  |  | ||||||
| 	//	std::cout << GridLogMessage << " Estimate " << ncall << " calls per second"<<std::endl; |  | ||||||
|  |  | ||||||
| 	time_statistics timestat; |  | ||||||
| 	std::vector<double> t_time(ncall); |  | ||||||
| 	for(uint64_t i=0;i<ncall;i++){ |  | ||||||
| 	  t0=usecond(); |  | ||||||
| 	  Dw.DhopEO(src_o,r_e,DaggerNo); |  | ||||||
| 	  t1=usecond(); |  | ||||||
| 	  t_time[i] = t1-t0; |  | ||||||
| 	} |  | ||||||
| 	FGrid->Barrier(); |  | ||||||
| 	 |  | ||||||
| 	double volume=Ls;  for(int mu=0;mu<Nd;mu++) volume=volume*latt4[mu]; |  | ||||||
|  |  | ||||||
| 	// Nc=3 gives |  | ||||||
| 	// 1344= 3*(2*8+6)*2*8 + 8*3*2*2 + 3*4*2*8 |  | ||||||
| 	// 1344 = Nc* (6+(Nc-1)*8)*2*Nd + Nd*Nc*2*2  + Nd*Nc*Ns*2 |  | ||||||
| 	//	double flops=(1344.0*volume)/2; |  | ||||||
| 	double fps = Nc* (6+(Nc-1)*8)*Ns*Nd + 2*Nd*Nc*Ns  + 2*Nd*Nc*Ns*2; |  | ||||||
|  |  | ||||||
| 	double flops=(fps*volume)/2; |  | ||||||
| 	double mf_hi, mf_lo, mf_err; |  | ||||||
|  |  | ||||||
| 	timestat.statistics(t_time); |  | ||||||
| 	mf_hi = flops/timestat.min; |  | ||||||
| 	mf_lo = flops/timestat.max; |  | ||||||
| 	mf_err= flops/timestat.min * timestat.err/timestat.mean; |  | ||||||
|  |  | ||||||
| 	mflops = flops/timestat.mean; |  | ||||||
| 	mflops_all.push_back(mflops); |  | ||||||
| 	if ( mflops_best == 0   ) mflops_best = mflops; |  | ||||||
| 	if ( mflops_worst== 0   ) mflops_worst= mflops; |  | ||||||
| 	if ( mflops>mflops_best ) mflops_best = mflops; |  | ||||||
| 	if ( mflops<mflops_worst) mflops_worst= mflops; |  | ||||||
|  |  | ||||||
| 	std::cout<<GridLogMessage<< "Deo FlopsPerSite is "<<fps<<std::endl; |  | ||||||
| 	std::cout<<GridLogMessage << std::fixed << std::setprecision(1)<<"Deo mflop/s =   "<< mflops << " ("<<mf_err<<") " << mf_lo<<"-"<<mf_hi <<std::endl; |  | ||||||
| 	std::cout<<GridLogMessage << std::fixed << std::setprecision(1)<<"Deo mflop/s per rank   "<< mflops/NP<<std::endl; |  | ||||||
| 	std::cout<<GridLogMessage << std::fixed << std::setprecision(1)<<"Deo mflop/s per node   "<< mflops/NN<<std::endl; |  | ||||||
|  |  | ||||||
|       } |  | ||||||
|  |  | ||||||
|       std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|       std::cout<<GridLogMessage << L<<"^4 x "<<Ls<< " Deo Best  mflop/s        =   "<< mflops_best << " ; " << mflops_best/NN<<" per node " <<std::endl; |  | ||||||
|       std::cout<<GridLogMessage << L<<"^4 x "<<Ls<< " Deo Worst mflop/s        =   "<< mflops_worst<< " ; " << mflops_worst/NN<<" per node " <<std::endl; |  | ||||||
|       std::cout<<GridLogMessage <<fmt << std::endl; |  | ||||||
|       std::cout<<GridLogMessage ; |  | ||||||
|  |  | ||||||
|       for(int i=0;i<mflops_all.size();i++){ |  | ||||||
| 	std::cout<<mflops_all[i]/NN<<" ; " ; |  | ||||||
|       } |  | ||||||
|       std::cout<<std::endl; |  | ||||||
|       std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|  |  | ||||||
|     } |  | ||||||
|     return mflops_best; |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|  |  | ||||||
|   static double Staggered(int L) |  | ||||||
|   { |  | ||||||
|     double mflops; |  | ||||||
|     double mflops_best = 0; |  | ||||||
|     double mflops_worst= 0; |  | ||||||
|     std::vector<double> mflops_all; |  | ||||||
|  |  | ||||||
|     /////////////////////////////////////////////////////// |  | ||||||
|     // Set/Get the layout & grid size |  | ||||||
|     /////////////////////////////////////////////////////// |  | ||||||
|     int threads = GridThread::GetThreads(); |  | ||||||
|     Coordinate mpi = GridDefaultMpi(); assert(mpi.size()==4); |  | ||||||
|     Coordinate local({L,L,L,L}); |  | ||||||
|     Coordinate latt4({local[0]*mpi[0],local[1]*mpi[1],local[2]*mpi[2],local[3]*mpi[3]}); |  | ||||||
|      |  | ||||||
|     GridCartesian         * TmpGrid   = SpaceTimeGrid::makeFourDimGrid(latt4, |  | ||||||
| 								       GridDefaultSimd(Nd,vComplex::Nsimd()), |  | ||||||
| 								       GridDefaultMpi()); |  | ||||||
|     uint64_t NP = TmpGrid->RankCount(); |  | ||||||
|     uint64_t NN = TmpGrid->NodeCount(); |  | ||||||
|     NN_global=NN; |  | ||||||
|     uint64_t SHM=NP/NN; |  | ||||||
|  |  | ||||||
|  |  | ||||||
|     ///////// Welcome message //////////// |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "Benchmark ImprovedStaggered on "<<L<<"^4 local volume "<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "* Global volume  : "<<GridCmdVectorIntToString(latt4)<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "* ranks          : "<<NP  <<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "* nodes          : "<<NN  <<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "* ranks/node     : "<<SHM <<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "* ranks geom     : "<<GridCmdVectorIntToString(mpi)<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "* Using "<<threads<<" threads"<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|  |  | ||||||
|     ///////// Lattice Init //////////// |  | ||||||
|     GridCartesian         * FGrid   = SpaceTimeGrid::makeFourDimGrid(latt4, GridDefaultSimd(Nd,vComplexF::Nsimd()),GridDefaultMpi()); |  | ||||||
|     GridRedBlackCartesian * FrbGrid = SpaceTimeGrid::makeFourDimRedBlackGrid(FGrid); |  | ||||||
|      |  | ||||||
|     ///////// RNG Init //////////// |  | ||||||
|     std::vector<int> seeds4({1,2,3,4}); |  | ||||||
|     GridParallelRNG          RNG4(FGrid);  RNG4.SeedFixedIntegers(seeds4); |  | ||||||
|     std::cout << GridLogMessage << "Initialised RNGs" << std::endl; |  | ||||||
|  |  | ||||||
|     RealD mass=0.1; |  | ||||||
|     RealD c1=9.0/8.0; |  | ||||||
|     RealD c2=-1.0/24.0; |  | ||||||
|     RealD u0=1.0; |  | ||||||
|  |  | ||||||
|     typedef ImprovedStaggeredFermionF Action; |  | ||||||
|     typedef typename Action::FermionField Fermion;  |  | ||||||
|     typedef LatticeGaugeFieldF Gauge; |  | ||||||
|      |  | ||||||
|     Gauge Umu(FGrid);  SU<Nc>::HotConfiguration(RNG4,Umu);  |  | ||||||
|  |  | ||||||
|     typename Action::ImplParams params; |  | ||||||
|     Action Ds(Umu,Umu,*FGrid,*FrbGrid,mass,c1,c2,u0,params); |  | ||||||
|  |  | ||||||
|     ///////// Source preparation //////////// |  | ||||||
|     Fermion src   (FGrid); random(RNG4,src); |  | ||||||
|     Fermion src_e (FrbGrid); |  | ||||||
|     Fermion src_o (FrbGrid); |  | ||||||
|     Fermion r_e   (FrbGrid); |  | ||||||
|     Fermion r_o   (FrbGrid); |  | ||||||
|     Fermion r_eo  (FGrid); |  | ||||||
|    |  | ||||||
|     { |  | ||||||
|  |  | ||||||
|       pickCheckerboard(Even,src_e,src); |  | ||||||
|       pickCheckerboard(Odd,src_o,src); |  | ||||||
|      |  | ||||||
|       const int num_cases = 2; |  | ||||||
|       std::string fmt("G/S/C ; G/O/C ; G/S/S ; G/O/S "); |  | ||||||
|        |  | ||||||
|       controls Cases [] = { |  | ||||||
| 	{  StaggeredKernelsStatic::OptGeneric   ,  StaggeredKernelsStatic::CommsAndCompute  ,CartesianCommunicator::CommunicatorPolicyConcurrent  }, |  | ||||||
| 	{  StaggeredKernelsStatic::OptHandUnroll,  StaggeredKernelsStatic::CommsAndCompute  ,CartesianCommunicator::CommunicatorPolicyConcurrent  }, |  | ||||||
| 	{  StaggeredKernelsStatic::OptInlineAsm ,  StaggeredKernelsStatic::CommsAndCompute  ,CartesianCommunicator::CommunicatorPolicyConcurrent  } |  | ||||||
|       };  |  | ||||||
|  |  | ||||||
|       for(int c=0;c<num_cases;c++) { |  | ||||||
| 	 |  | ||||||
| 	StaggeredKernelsStatic::Comms = Cases[c].CommsOverlap; |  | ||||||
| 	StaggeredKernelsStatic::Opt   = Cases[c].Opt; |  | ||||||
| 	CartesianCommunicator::SetCommunicatorPolicy(Cases[c].CommsAsynch); |  | ||||||
|        |  | ||||||
| 	std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
| 	if ( StaggeredKernelsStatic::Opt == StaggeredKernelsStatic::OptGeneric   ) std::cout << GridLogMessage<< "* Using GENERIC Nc StaggeredKernels" <<std::endl; |  | ||||||
| 	std::cout << GridLogMessage<< "* SINGLE precision "<<std::endl; |  | ||||||
| 	std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
| 	 |  | ||||||
| 	int nwarm = 10; |  | ||||||
| 	double t0=usecond(); |  | ||||||
| 	FGrid->Barrier(); |  | ||||||
| 	for(int i=0;i<nwarm;i++){ |  | ||||||
| 	  Ds.DhopEO(src_o,r_e,DaggerNo); |  | ||||||
| 	} |  | ||||||
| 	FGrid->Barrier(); |  | ||||||
| 	double t1=usecond(); |  | ||||||
| 	uint64_t ncall = 500; |  | ||||||
|  |  | ||||||
| 	FGrid->Broadcast(0,&ncall,sizeof(ncall)); |  | ||||||
|  |  | ||||||
| 	//	std::cout << GridLogMessage << " Estimate " << ncall << " calls per second"<<std::endl; |  | ||||||
|  |  | ||||||
| 	time_statistics timestat; |  | ||||||
| 	std::vector<double> t_time(ncall); |  | ||||||
| 	for(uint64_t i=0;i<ncall;i++){ |  | ||||||
| 	  t0=usecond(); |  | ||||||
| 	  Ds.DhopEO(src_o,r_e,DaggerNo); |  | ||||||
| 	  t1=usecond(); |  | ||||||
| 	  t_time[i] = t1-t0; |  | ||||||
| 	} |  | ||||||
| 	FGrid->Barrier(); |  | ||||||
| 	 |  | ||||||
| 	double volume=1;  for(int mu=0;mu<Nd;mu++) volume=volume*latt4[mu]; |  | ||||||
| 	double flops=(1146.0*volume)/2; |  | ||||||
| 	double mf_hi, mf_lo, mf_err; |  | ||||||
| 	 |  | ||||||
| 	timestat.statistics(t_time); |  | ||||||
| 	mf_hi = flops/timestat.min; |  | ||||||
| 	mf_lo = flops/timestat.max; |  | ||||||
| 	mf_err= flops/timestat.min * timestat.err/timestat.mean; |  | ||||||
|  |  | ||||||
| 	mflops = flops/timestat.mean; |  | ||||||
| 	mflops_all.push_back(mflops); |  | ||||||
| 	if ( mflops_best == 0   ) mflops_best = mflops; |  | ||||||
| 	if ( mflops_worst== 0   ) mflops_worst= mflops; |  | ||||||
| 	if ( mflops>mflops_best ) mflops_best = mflops; |  | ||||||
| 	if ( mflops<mflops_worst) mflops_worst= mflops; |  | ||||||
| 	 |  | ||||||
| 	std::cout<<GridLogMessage << std::fixed << std::setprecision(1)<<"Deo mflop/s =   "<< mflops << " ("<<mf_err<<") " << mf_lo<<"-"<<mf_hi <<std::endl; |  | ||||||
| 	std::cout<<GridLogMessage << std::fixed << std::setprecision(1)<<"Deo mflop/s per rank   "<< mflops/NP<<std::endl; |  | ||||||
| 	std::cout<<GridLogMessage << std::fixed << std::setprecision(1)<<"Deo mflop/s per node   "<< mflops/NN<<std::endl; |  | ||||||
|        |  | ||||||
|       } |  | ||||||
|  |  | ||||||
|       std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|       std::cout<<GridLogMessage << L<<"^4  Deo Best  mflop/s        =   "<< mflops_best << " ; " << mflops_best/NN<<" per node " <<std::endl; |  | ||||||
|       std::cout<<GridLogMessage << L<<"^4  Deo Worst mflop/s        =   "<< mflops_worst<< " ; " << mflops_worst/NN<<" per node " <<std::endl; |  | ||||||
|       std::cout<<GridLogMessage <<fmt << std::endl; |  | ||||||
|       std::cout<<GridLogMessage ; |  | ||||||
|  |  | ||||||
|       for(int i=0;i<mflops_all.size();i++){ |  | ||||||
| 	std::cout<<mflops_all[i]/NN<<" ; " ; |  | ||||||
|       } |  | ||||||
|       std::cout<<std::endl; |  | ||||||
|     } |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|     return mflops_best; |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|   static double Clover(int L) |  | ||||||
|   { |  | ||||||
|     double mflops; |  | ||||||
|     double mflops_best = 0; |  | ||||||
|     double mflops_worst= 0; |  | ||||||
|     std::vector<double> mflops_all; |  | ||||||
|  |  | ||||||
|     /////////////////////////////////////////////////////// |  | ||||||
|     // Set/Get the layout & grid size |  | ||||||
|     /////////////////////////////////////////////////////// |  | ||||||
|     int threads = GridThread::GetThreads(); |  | ||||||
|     Coordinate mpi = GridDefaultMpi(); assert(mpi.size()==4); |  | ||||||
|     Coordinate local({L,L,L,L}); |  | ||||||
|     Coordinate latt4({local[0]*mpi[0],local[1]*mpi[1],local[2]*mpi[2],local[3]*mpi[3]}); |  | ||||||
|      |  | ||||||
|     GridCartesian         * TmpGrid   = SpaceTimeGrid::makeFourDimGrid(latt4, |  | ||||||
| 								       GridDefaultSimd(Nd,vComplex::Nsimd()), |  | ||||||
| 								       GridDefaultMpi()); |  | ||||||
|     uint64_t NP = TmpGrid->RankCount(); |  | ||||||
|     uint64_t NN = TmpGrid->NodeCount(); |  | ||||||
|     NN_global=NN; |  | ||||||
|     uint64_t SHM=NP/NN; |  | ||||||
|  |  | ||||||
|  |  | ||||||
|     ///////// Welcome message //////////// |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "Benchmark Clover on "<<L<<"^4 local volume "<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "* Global volume  : "<<GridCmdVectorIntToString(latt4)<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "* ranks          : "<<NP  <<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "* nodes          : "<<NN  <<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "* ranks/node     : "<<SHM <<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "* ranks geom     : "<<GridCmdVectorIntToString(mpi)<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "* Using "<<threads<<" threads"<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|  |  | ||||||
|     ///////// Lattice Init //////////// |  | ||||||
|     GridCartesian         * FGrid   = SpaceTimeGrid::makeFourDimGrid(latt4, GridDefaultSimd(Nd,vComplexF::Nsimd()),GridDefaultMpi()); |  | ||||||
|     GridRedBlackCartesian * FrbGrid = SpaceTimeGrid::makeFourDimRedBlackGrid(FGrid); |  | ||||||
|      |  | ||||||
|     ///////// RNG Init //////////// |  | ||||||
|     std::vector<int> seeds4({1,2,3,4}); |  | ||||||
|     GridParallelRNG          RNG4(FGrid);  RNG4.SeedFixedIntegers(seeds4); |  | ||||||
|     std::cout << GridLogMessage << "Initialised RNGs" << std::endl; |  | ||||||
|  |  | ||||||
|     RealD mass=0.1; |  | ||||||
|     RealD csw=1.0; |  | ||||||
|  |  | ||||||
|     typedef WilsonCloverFermionF Action; |  | ||||||
|     typedef typename Action::FermionField Fermion;  |  | ||||||
|     typedef LatticeGaugeFieldF Gauge; |  | ||||||
|      |  | ||||||
|     Gauge Umu(FGrid);  SU<Nc>::HotConfiguration(RNG4,Umu);  |  | ||||||
|  |  | ||||||
|     Action Dc(Umu,*FGrid,*FrbGrid,mass,csw,csw); |  | ||||||
|  |  | ||||||
|     ///////// Source preparation //////////// |  | ||||||
|     Fermion src   (FGrid); random(RNG4,src); |  | ||||||
|     Fermion r     (FGrid); |  | ||||||
|    |  | ||||||
|     { |  | ||||||
|  |  | ||||||
|       const int num_cases = 1; |  | ||||||
|       std::string fmt("G/S/C ; G/O/C ; G/S/S ; G/O/S "); |  | ||||||
|        |  | ||||||
|       controls Cases [] = { |  | ||||||
| 	{  WilsonKernelsStatic::OptGeneric   ,  WilsonKernelsStatic::CommsAndCompute  ,CartesianCommunicator::CommunicatorPolicyConcurrent  }, |  | ||||||
|       };  |  | ||||||
|  |  | ||||||
|       for(int c=0;c<num_cases;c++) { |  | ||||||
| 	 |  | ||||||
| 	WilsonKernelsStatic::Comms = Cases[c].CommsOverlap; |  | ||||||
| 	WilsonKernelsStatic::Opt   = Cases[c].Opt; |  | ||||||
| 	CartesianCommunicator::SetCommunicatorPolicy(Cases[c].CommsAsynch); |  | ||||||
|        |  | ||||||
| 	std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
| 	std::cout << GridLogMessage<< "* SINGLE precision "<<std::endl; |  | ||||||
| 	std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
| 	 |  | ||||||
| 	int nwarm = 10; |  | ||||||
| 	double t0=usecond(); |  | ||||||
| 	FGrid->Barrier(); |  | ||||||
| 	for(int i=0;i<nwarm;i++){ |  | ||||||
| 	  Dc.M(src,r); |  | ||||||
| 	} |  | ||||||
| 	FGrid->Barrier(); |  | ||||||
| 	double t1=usecond(); |  | ||||||
| 	uint64_t ncall = 500; |  | ||||||
|  |  | ||||||
| 	FGrid->Broadcast(0,&ncall,sizeof(ncall)); |  | ||||||
|  |  | ||||||
| 	//	std::cout << GridLogMessage << " Estimate " << ncall << " calls per second"<<std::endl; |  | ||||||
|  |  | ||||||
| 	time_statistics timestat; |  | ||||||
| 	std::vector<double> t_time(ncall); |  | ||||||
| 	for(uint64_t i=0;i<ncall;i++){ |  | ||||||
| 	  t0=usecond(); |  | ||||||
| 	  Dc.M(src,r); |  | ||||||
| 	  t1=usecond(); |  | ||||||
| 	  t_time[i] = t1-t0; |  | ||||||
| 	} |  | ||||||
| 	FGrid->Barrier(); |  | ||||||
| 	 |  | ||||||
| 	double volume=1;  for(int mu=0;mu<Nd;mu++) volume=volume*latt4[mu]; |  | ||||||
| 	double flops=(1344+ 24+6*6*8*2)*volume; |  | ||||||
| 	double mf_hi, mf_lo, mf_err; |  | ||||||
| 	 |  | ||||||
| 	timestat.statistics(t_time); |  | ||||||
| 	mf_hi = flops/timestat.min; |  | ||||||
| 	mf_lo = flops/timestat.max; |  | ||||||
| 	mf_err= flops/timestat.min * timestat.err/timestat.mean; |  | ||||||
|  |  | ||||||
| 	mflops = flops/timestat.mean; |  | ||||||
| 	mflops_all.push_back(mflops); |  | ||||||
| 	if ( mflops_best == 0   ) mflops_best = mflops; |  | ||||||
| 	if ( mflops_worst== 0   ) mflops_worst= mflops; |  | ||||||
| 	if ( mflops>mflops_best ) mflops_best = mflops; |  | ||||||
| 	if ( mflops<mflops_worst) mflops_worst= mflops; |  | ||||||
| 	 |  | ||||||
| 	std::cout<<GridLogMessage << std::fixed << std::setprecision(1)<<"Dclov mflop/s =   "<< mflops << " ("<<mf_err<<") " << mf_lo<<"-"<<mf_hi <<std::endl; |  | ||||||
| 	std::cout<<GridLogMessage << std::fixed << std::setprecision(1)<<"Dclov mflop/s per rank   "<< mflops/NP<<std::endl; |  | ||||||
| 	std::cout<<GridLogMessage << std::fixed << std::setprecision(1)<<"Dclov mflop/s per node   "<< mflops/NN<<std::endl; |  | ||||||
|        |  | ||||||
|       } |  | ||||||
|  |  | ||||||
|       std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|       std::cout<<GridLogMessage << L<<"^4  Deo Best  mflop/s        =   "<< mflops_best << " ; " << mflops_best/NN<<" per node " <<std::endl; |  | ||||||
|       std::cout<<GridLogMessage << L<<"^4  Deo Worst mflop/s        =   "<< mflops_worst<< " ; " << mflops_worst/NN<<" per node " <<std::endl; |  | ||||||
|       std::cout<<GridLogMessage <<fmt << std::endl; |  | ||||||
|       std::cout<<GridLogMessage ; |  | ||||||
|  |  | ||||||
|       for(int i=0;i<mflops_all.size();i++){ |  | ||||||
| 	std::cout<<mflops_all[i]/NN<<" ; " ; |  | ||||||
|       } |  | ||||||
|       std::cout<<std::endl; |  | ||||||
|     } |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|     return mflops_best; |  | ||||||
|   } |  | ||||||
| }; |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
| int main (int argc, char ** argv) |  | ||||||
| { |  | ||||||
|   Grid_init(&argc,&argv); |  | ||||||
|  |  | ||||||
|   if (GlobalSharedMemory::WorldRank==0) {  |  | ||||||
|     FP = fopen("Benchmark_usqcd.csv","w"); |  | ||||||
|   } else { |  | ||||||
|     FP = fopen("/dev/null","w"); |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|   CartesianCommunicator::SetCommunicatorPolicy(CartesianCommunicator::CommunicatorPolicySequential); |  | ||||||
|   LebesgueOrder::Block = std::vector<int>({2,2,2,2}); |  | ||||||
|  |  | ||||||
|   Benchmark::Decomposition(); |  | ||||||
|  |  | ||||||
|   int do_su4=0; |  | ||||||
|   int do_memory=1; |  | ||||||
|   int do_comms =1; |  | ||||||
|   int do_blas  =1; |  | ||||||
|   int do_dslash=1; |  | ||||||
|  |  | ||||||
|   int sel=4; |  | ||||||
|   std::vector<int> L_list({8,12,16,24,32}); |  | ||||||
|   int selm1=sel-1; |  | ||||||
|  |  | ||||||
|   std::vector<double> clover; |  | ||||||
|   std::vector<double> dwf4; |  | ||||||
|   std::vector<double> staggered; |  | ||||||
|  |  | ||||||
|   int Ls=1; |  | ||||||
|   if (do_dslash){ |  | ||||||
|   std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|   std::cout<<GridLogMessage << " Clover dslash 4D vectorised (temporarily Wilson)" <<std::endl; |  | ||||||
|   std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|   for(int l=0;l<L_list.size();l++){ |  | ||||||
|     clover.push_back(Benchmark::DWF(1,L_list[l])); |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|   Ls=12; |  | ||||||
|   std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|   std::cout<<GridLogMessage << " Domain wall dslash 4D vectorised" <<std::endl; |  | ||||||
|   std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|   for(int l=0;l<L_list.size();l++){ |  | ||||||
|     double result = Benchmark::DWF(Ls,L_list[l]) ; |  | ||||||
|     dwf4.push_back(result); |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|   std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|   std::cout<<GridLogMessage << " Improved Staggered dslash 4D vectorised" <<std::endl; |  | ||||||
|   std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|   for(int l=0;l<L_list.size();l++){ |  | ||||||
|     double result = Benchmark::Staggered(L_list[l]) ; |  | ||||||
|     staggered.push_back(result); |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|  |  | ||||||
|   std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|   std::cout<<GridLogMessage << " Summary table Ls="<<Ls <<std::endl; |  | ||||||
|   std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|   std::cout<<GridLogMessage << "L \t\t Clover \t\t DWF4 \t\t Staggered" <<std::endl; |  | ||||||
|   for(int l=0;l<L_list.size();l++){ |  | ||||||
|     std::cout<<GridLogMessage << L_list[l] <<" \t\t "<< clover[l]<<" \t\t "<<dwf4[l] << " \t\t "<< staggered[l]<<std::endl; |  | ||||||
|   } |  | ||||||
|   std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|   int NN=NN_global; |  | ||||||
|   if(do_dslash){ |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << " Per Node Summary table Ls="<<Ls <<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << " L \t\t Clover\t\t DWF4\t\t Staggered (GF/s per node)" <<std::endl; |  | ||||||
|     fprintf(FP,"Per node summary table\n"); |  | ||||||
|     fprintf(FP,"\n"); |  | ||||||
|     fprintf(FP,"L , Wilson, DWF4, Staggered, GF/s per node\n"); |  | ||||||
|     fprintf(FP,"\n"); |  | ||||||
|     for(int l=0;l<L_list.size();l++){ |  | ||||||
|       std::cout<<GridLogMessage << L_list[l] <<" \t\t "<< clover[l]/NN<<" \t "<<dwf4[l]/NN<< " \t "<<staggered[l]/NN<<std::endl; |  | ||||||
|       fprintf(FP,"%d , %.0f, %.0f, %.0f\n",L_list[l],clover[l]/NN/1000.,dwf4[l]/NN/1000.,staggered[l]/NN/1000.); |  | ||||||
|     } |  | ||||||
|     fprintf(FP,"\n"); |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|  |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << " Comparison point     result: "  << 0.5*(dwf4[sel]+dwf4[selm1])/NN << " Mflop/s per node"<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << " Comparison point is 0.5*("<<dwf4[sel]/NN<<"+"<<dwf4[selm1]/NN << ") "<<std::endl; |  | ||||||
|     std::cout<<std::setprecision(3); |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|    |  | ||||||
|   if ( do_memory ) { |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << " Memory benchmark " <<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|     Benchmark::Memory(); |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|   if ( do_su4 ) { |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << " SU(4) benchmark " <<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|     Benchmark::SU4(); |  | ||||||
|   } |  | ||||||
|    |  | ||||||
|   if ( do_comms ) { |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << " Communications benchmark " <<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|     Benchmark::Comms(); |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|   if ( do_blas ) { |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << " Batched BLAS benchmark " <<std::endl; |  | ||||||
|     std::cout<<GridLogMessage << "=================================================================================="<<std::endl; |  | ||||||
|     Benchmark::BLAS<ComplexD>(); |  | ||||||
|     Benchmark::BLAS<ComplexF>(); |  | ||||||
|   } |  | ||||||
|    |  | ||||||
|   Grid_finalize(); |  | ||||||
|   fclose(FP); |  | ||||||
| } |  | ||||||
							
								
								
									
										15
									
								
								bootstrap.sh
									
									
									
									
									
								
							
							
						
						
									
										15
									
								
								bootstrap.sh
									
									
									
									
									
								
							| @@ -1,12 +1,12 @@ | |||||||
| #!/usr/bin/env bash | #!/usr/bin/env bash | ||||||
| set -e | set -e | ||||||
|  |  | ||||||
| EIGEN_URL='https://gitlab.com/libeigen/eigen/-/archive/3.4.0/eigen-3.4.0.tar.bz2' | EIGEN_URL='https://gitlab.com/libeigen/eigen/-/archive/3.3.7/eigen-3.3.7.tar.bz2' | ||||||
| EIGEN_SHA256SUM='b4c198460eba6f28d34894e3a5710998818515104d6e74e5cc331ce31e46e626' | EIGEN_SHA256SUM='685adf14bd8e9c015b78097c1dc22f2f01343756f196acdc76a678e1ae352e11' | ||||||
|  |  | ||||||
|  |  | ||||||
| echo "-- deploying Eigen source..." | echo "-- deploying Eigen source..." | ||||||
| ARC=$(basename ${EIGEN_URL}) | ARC=`basename ${EIGEN_URL}` | ||||||
| wget ${EIGEN_URL} --no-check-certificate | wget ${EIGEN_URL} --no-check-certificate | ||||||
| if command -v sha256sum; then | if command -v sha256sum; then | ||||||
|    echo "$EIGEN_SHA256SUM  $(basename "$EIGEN_URL")" \ |    echo "$EIGEN_SHA256SUM  $(basename "$EIGEN_URL")" \ | ||||||
| @@ -14,8 +14,13 @@ if command -v sha256sum; then | |||||||
| else | else | ||||||
|    echo "WARNING: could not verify checksum, please install sha256sum" >&2 |    echo "WARNING: could not verify checksum, please install sha256sum" >&2 | ||||||
| fi | fi | ||||||
| ./scripts/update_eigen.sh "${ARC}" | ./scripts/update_eigen.sh ${ARC} | ||||||
| rm "${ARC}" | rm ${ARC} | ||||||
|  | # patch for non-portable includes in Eigen 3.3.5 | ||||||
|  | # apparently already fixed in Eigen HEAD so it should not be  | ||||||
|  | # a problem in the future (A.P.) | ||||||
|  | patch Eigen/unsupported/Eigen/CXX11/Tensor scripts/eigen-3.3.5.Tensor.patch | ||||||
|  |  | ||||||
| echo '-- generating Make.inc files...' | echo '-- generating Make.inc files...' | ||||||
| ./scripts/filelist | ./scripts/filelist | ||||||
| echo '-- generating configure script...' | echo '-- generating configure script...' | ||||||
|   | |||||||
							
								
								
									
										21
									
								
								configure.ac
									
									
									
									
									
								
							
							
						
						
									
										21
									
								
								configure.ac
									
									
									
									
									
								
							| @@ -226,14 +226,23 @@ case ${ac_SFW_FP16} in | |||||||
| esac | esac | ||||||
|  |  | ||||||
| ############### Default to accelerator cshift, but revert to host if UCX is buggy or other reasons | ############### Default to accelerator cshift, but revert to host if UCX is buggy or other reasons | ||||||
| AC_ARG_ENABLE([accelerator-aware-mpi], | AC_ARG_ENABLE([accelerator-cshift], | ||||||
|     [AS_HELP_STRING([--enable-accelerator-aware-mpi=yes|no],[run mpi transfers from device])], |     [AS_HELP_STRING([--enable-accelerator-cshift=yes|no],[run cshift on the device])], | ||||||
|     [ac_ACCELERATOR_AWARE_MPI=${enable_accelerator_aware_mpi}], [ac_ACCELERATOR_AWARE_MPI=yes]) |     [ac_ACC_CSHIFT=${enable_accelerator_cshift}], [ac_ACC_CSHIFT=yes]) | ||||||
|  |  | ||||||
| case ${ac_ACCELERATOR_AWARE_MPI} in | AC_ARG_ENABLE([ucx-buggy], | ||||||
|  |     [AS_HELP_STRING([--enable-ucx-buggy=yes|no],[enable workaround for UCX device buffer bugs])], | ||||||
|  |     [ac_UCXBUGGY=${enable_ucx_buggy}], [ac_UCXBUGGY=no]) | ||||||
|  |  | ||||||
|  | case ${ac_UCXBUGGY} in | ||||||
|     yes) |     yes) | ||||||
|       AC_DEFINE([ACCELERATOR_CSHIFT],[1],[ Cshift runs on host]) |     ac_ACC_CSHIFT=no;; | ||||||
|       AC_DEFINE([ACCELERATOR_AWARE_MPI],[1],[ Stencil can use device pointers]);; |     *);; | ||||||
|  | esac | ||||||
|  |  | ||||||
|  | case ${ac_ACC_CSHIFT} in | ||||||
|  |     yes) | ||||||
|  |       AC_DEFINE([ACCELERATOR_CSHIFT],[1],[ UCX device buffer bugs are not present]);; | ||||||
|     *);; |     *);; | ||||||
| esac | esac | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,183 +0,0 @@ | |||||||
| /*  |  | ||||||
|  * Example_plaquette.cc                                                                |  | ||||||
|  *  |  | ||||||
|  * D. Clarke  |  | ||||||
|  *  |  | ||||||
|  * Here I just want to create an incredibly simple main to get started with GRID and get used |  | ||||||
|  * to its syntax. If the reader is like me, they vaguely understand something about lattice coding, |  | ||||||
|  * they don't know a ton of C++, don't know much of the fine details, and certainly know nothing about GRID. |  | ||||||
|  * |  | ||||||
|  * Once you've made a new executable, like this one, you can bootstrap.sh again. At this point, |  | ||||||
|  * the code should be able to find your new executable. You can tell that bootstrap.sh worked by |  | ||||||
|  * having a look at Make.inc. You should see your executable inside there. |  | ||||||
|  * |  | ||||||
|  * Warning: This code illustrative only, not well tested, and not meant for production use. The best |  | ||||||
|  * way to read this code is to start at the main. |  | ||||||
|  *  |  | ||||||
|  */ |  | ||||||
|  |  | ||||||
|  |  | ||||||
| // All your mains should have this |  | ||||||
| #include <Grid/Grid.h> |  | ||||||
| using namespace Grid; |  | ||||||
|  |  | ||||||
|  |  | ||||||
| // This copies what already exists in WilsonLoops.h. The point here is to be pedagogical and explain in |  | ||||||
| // detail what everything does so we can see how GRID works. |  | ||||||
| template <class Gimpl> class WLoops : public Gimpl { |  | ||||||
| public: |  | ||||||
|     // Gimpl seems to be an arbitrary class. Within this class, it is expected that certain types are |  | ||||||
|     // already defined, things like Scalar and Field. This macro includes a bunch of #typedefs that |  | ||||||
|     // implement this equivalence at compile time. |  | ||||||
|     INHERIT_GIMPL_TYPES(Gimpl); |  | ||||||
|  |  | ||||||
|     // Some example Gimpls can be found in GaugeImplementations.h, at the bottom. These are in turn built |  | ||||||
|     // out of GaugeImplTypes, which can be found in GaugeImplTypes.h. The GaugeImplTypes contain the base |  | ||||||
|     // field/vector/link/whatever types. These inherit from iScalar, iVector, and iMatrix objects, which |  | ||||||
|     // are sort of the building blocks for gerenal math objects. The "i" at the beginning of these names |  | ||||||
|     // indicates that they should be for internal use only. It seems like these base types have the |  | ||||||
|     // acceleration, e.g. SIMD or GPU or what-have-you, abstracted away. How you accelerate these things |  | ||||||
|     // appears to be controlled through a template parameter called vtype. |  | ||||||
|  |  | ||||||
|     // The general math/physics objects, such as a color matrix, are built up by nesting these objects. |  | ||||||
|     // For instance a general color matrix has two color indices, so it's built up like |  | ||||||
|     //     iScalar<iScalar<iMatrix<vtype ... |  | ||||||
|     // where the levels going from the inside out are color, spin, then Lorentz indices. Scalars have |  | ||||||
|     // no indices, so it's what we use when such an index isn't needed. Lattice objects are made by one |  | ||||||
|     // higher level of indexing using iVector. |  | ||||||
|  |  | ||||||
|     // These types will be used for U and U_mu objects, respectively. |  | ||||||
|     typedef typename Gimpl::GaugeLinkField GaugeMat; |  | ||||||
|     typedef typename Gimpl::GaugeField GaugeLorentz; |  | ||||||
|  |  | ||||||
|     // U_mu_nu(x) |  | ||||||
|     static void dirPlaquette(GaugeMat &plaq, const std::vector<GaugeMat> &U, const int mu, const int nu) { |  | ||||||
|         // Calls like CovShiftForward and CovShiftBackward have 3 arguments, and they multiply together |  | ||||||
|         // the first and last argument. (Second arg gives the shift direction.) The CovShiftIdentityBackward |  | ||||||
|         // has meanwhile only two arguments; it just returns the shifted (adjoint since backward) link.  |  | ||||||
|         plaq = Gimpl::CovShiftForward(U[mu],mu, |  | ||||||
|                    // Means Link*Cshift(field,mu,1), arguments are Link, mu, field in that order. |  | ||||||
|                    Gimpl::CovShiftForward(U[nu],nu, |  | ||||||
|                        Gimpl::CovShiftBackward(U[mu],mu, |  | ||||||
|                            // This means Cshift(adj(Link), mu, -1) |  | ||||||
|                            Gimpl::CovShiftIdentityBackward(U[nu], nu)))); |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     // tr U_mu_nu(x) |  | ||||||
|     static void traceDirPlaquette(ComplexField &plaq, const std::vector<GaugeMat> &U, const int mu, const int nu) { |  | ||||||
|         // This .Grid() syntax seems to get the pointer to the GridBase. Apparently this is needed as argument |  | ||||||
|         // to instantiate a Lattice object. |  | ||||||
|         GaugeMat sp(U[0].Grid()); |  | ||||||
|         dirPlaquette(sp, U, mu, nu); |  | ||||||
|         plaq = trace(sp); |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     // sum_mu_nu tr U_mu_nu(x) |  | ||||||
|     static void sitePlaquette(ComplexField &Plaq, const std::vector<GaugeMat> &U) { |  | ||||||
|         ComplexField sitePlaq(U[0].Grid()); |  | ||||||
|         Plaq = Zero(); |  | ||||||
|         // Nd=4 and Nc=3 are set as global constants in QCD.h |  | ||||||
|         for (int mu = 1; mu < Nd; mu++) { |  | ||||||
|             for (int nu = 0; nu < mu; nu++) { |  | ||||||
|                 traceDirPlaquette(sitePlaq, U, mu, nu); |  | ||||||
|                 Plaq = Plaq + sitePlaq; |  | ||||||
|             } |  | ||||||
|         } |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     // sum_mu_nu_x Re tr U_mu_nu(x) |  | ||||||
|     static RealD sumPlaquette(const GaugeLorentz &Umu) { |  | ||||||
|         std::vector<GaugeMat> U(Nd, Umu.Grid()); |  | ||||||
|         for (int mu = 0; mu < Nd; mu++) { |  | ||||||
|             // Umu is a GaugeLorentz object, and as such has a non-trivial Lorentz index. We can |  | ||||||
|             // access the element in the mu Lorentz index with this PeekIndex syntax. |  | ||||||
|             U[mu] = PeekIndex<LorentzIndex>(Umu, mu); |  | ||||||
|         } |  | ||||||
|         ComplexField Plaq(Umu.Grid()); |  | ||||||
|         sitePlaquette(Plaq, U); |  | ||||||
|         // I guess this should be the line that sums over all space-time sites. |  | ||||||
|         auto Tp = sum(Plaq); |  | ||||||
|         // Until now, we have been working with objects inside the tensor nest. This TensorRemove gets |  | ||||||
|         // rid of the tensor nest to return whatever is inside. |  | ||||||
|         auto p  = TensorRemove(Tp); |  | ||||||
|         return p.real(); |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     // < Re tr U_mu_nu(x) > |  | ||||||
|     static RealD avgPlaquette(const GaugeLorentz &Umu) { |  | ||||||
|         // Real double type |  | ||||||
|         RealD sumplaq = sumPlaquette(Umu); |  | ||||||
|         // gSites() is the number of global sites. there is also lSites() for local sites. |  | ||||||
|         double vol = Umu.Grid()->gSites(); |  | ||||||
|         // The number of orientations. 4*3/2=6 for Nd=4, as known. |  | ||||||
|         double faces = (1.0 * Nd * (Nd - 1)) / 2.0; |  | ||||||
|         return sumplaq / vol / faces / Nc; |  | ||||||
|     } |  | ||||||
| }; |  | ||||||
|  |  | ||||||
|  |  | ||||||
| // Next we show an example of how to construct an input parameter class. We first inherit |  | ||||||
| // from Serializable. Then all class data members have to be defined using the |  | ||||||
| // GRID_SERIALIZABLE_CLASS_MEMBERS macro. This variadic macro allows for arbitrarily many |  | ||||||
| // class data members. In the below case, we make a parameter file holding the configuration |  | ||||||
| // name. Here, it expects the name to be labeled with "conf_name" in the configuration file.  |  | ||||||
| struct ConfParameters: Serializable { |  | ||||||
|     GRID_SERIALIZABLE_CLASS_MEMBERS( |  | ||||||
|         ConfParameters, |  | ||||||
|         std::string, conf_name); |  | ||||||
|  |  | ||||||
|     template <class ReaderClass> |  | ||||||
|     ConfParameters(Reader<ReaderClass>& Reader){ |  | ||||||
|         // If we are reading an XML file, it should be structured like: |  | ||||||
|         // <grid> |  | ||||||
|         //   <parameters> |  | ||||||
|         //     <conf_name>l20t20b06498a_nersc.302500</conf_name> |  | ||||||
|         //   </parameters> |  | ||||||
|         // </grid> |  | ||||||
|         read(Reader, "parameters", *this); |  | ||||||
|     } |  | ||||||
| }; |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
| // This syntax lets you pass command line arguments to main. An asterisk means that what follows is |  | ||||||
| // a pointer. Two asterisks means what follows is a pointer to an array.  |  | ||||||
| int main (int argc, char **argv) |  | ||||||
| { |  | ||||||
|     // This initializes Grid. Some command line options include |  | ||||||
|     //   --mpi n.n.n.n |  | ||||||
|     //   --threads n |  | ||||||
|     //   --grid n.n.n.n |  | ||||||
|     Grid_init(&argc, &argv); |  | ||||||
|  |  | ||||||
|     // This is where you would specify a custom lattice size, if not from the command line. Here |  | ||||||
|     // Nd is a global quantity that is currently set to 4. |  | ||||||
|     Coordinate simd_layout = GridDefaultSimd(Nd,vComplex::Nsimd()); |  | ||||||
|     Coordinate mpi_layout  = GridDefaultMpi(); |  | ||||||
|     Coordinate latt_size   = GridDefaultLatt(); |  | ||||||
|  |  | ||||||
|     // Instantiate the spacetime Grid on which everything will be built. |  | ||||||
|     GridCartesian GRID(latt_size,simd_layout,mpi_layout); |  | ||||||
|  |  | ||||||
|     // The PeriodicGimplD type is what you want for gauge matrices. There is also a LatticeGaugeFieldD |  | ||||||
|     // type that you can use, which will work perfectly with what follows.  |  | ||||||
|     PeriodicGimplD::Field U(&GRID); |  | ||||||
|  |  | ||||||
|     // Here we read in the parameter file params.json to get conf_name. The last argument is what the |  | ||||||
|     // top organizational level is called in the param file.  |  | ||||||
|     XmlReader Reader("Example_plaquette.xml",false, "grid"); |  | ||||||
|     ConfParameters param(Reader);   |  | ||||||
|  |  | ||||||
|     // Load a lattice from SIMULATeQCD into U. SIMULATeQCD finds plaquette = 0.6381995717 |  | ||||||
|     FieldMetaData header; |  | ||||||
|     NerscIO::readConfiguration(U, header, param.conf_name); |  | ||||||
|  |  | ||||||
|     // Let's see what we find. |  | ||||||
|     RealD plaq = WLoops<PeriodicGimplD>::avgPlaquette(U); |  | ||||||
|  |  | ||||||
|     // This is how you make log messages. |  | ||||||
|     std::cout << GridLogMessage << std::setprecision(std::numeric_limits<Real>::digits10 + 1) << "Plaquette = " << plaq << std::endl; |  | ||||||
|  |  | ||||||
|     // To wrap things up. |  | ||||||
|     Grid_finalize(); |  | ||||||
| } |  | ||||||
							
								
								
									
										19
									
								
								scripts/eigen-3.3.5.Tensor.patch
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								scripts/eigen-3.3.5.Tensor.patch
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,19 @@ | |||||||
|  | --- ./Eigen/unsupported/Eigen/CXX11/Tensor	2018-07-23 10:33:42.000000000 +0100 | ||||||
|  | +++ Tensor	2018-08-28 16:15:56.000000000 +0100 | ||||||
|  | @@ -25,7 +25,7 @@ | ||||||
|  |  #include <utility> | ||||||
|  |  #endif | ||||||
|  |   | ||||||
|  | -#include <Eigen/src/Core/util/DisableStupidWarnings.h> | ||||||
|  | +#include "../../../Eigen/src/Core/util/DisableStupidWarnings.h" | ||||||
|  |   | ||||||
|  |  #include "../SpecialFunctions" | ||||||
|  |  #include "src/util/CXX11Meta.h" | ||||||
|  | @@ -147,6 +147,6 @@ | ||||||
|  |   | ||||||
|  |  #include "src/Tensor/TensorIO.h" | ||||||
|  |   | ||||||
|  | -#include <Eigen/src/Core/util/ReenableStupidWarnings.h> | ||||||
|  | +#include "../../../Eigen/src/Core/util/ReenableStupidWarnings.h" | ||||||
|  |   | ||||||
|  |  //#endif // EIGEN_CXX11_TENSOR_MODULE | ||||||
| @@ -1,44 +0,0 @@ | |||||||
| #!/bin/bash |  | ||||||
|  |  | ||||||
| if [ $1 = "install" ] |  | ||||||
| then |  | ||||||
|     dir=`pwd` |  | ||||||
|     cd $HOME |  | ||||||
|     git clone -c feature.manyFiles=true https://github.com/spack/spack.git |  | ||||||
|     source $HOME/spack/share/spack/setup-env.sh |  | ||||||
|  |  | ||||||
|     spack install autoconf |  | ||||||
|     spack install automake |  | ||||||
|     spack install c-lime cppflags=-fPIE |  | ||||||
|     spack install fftw |  | ||||||
|     spack install llvm |  | ||||||
|     spack install gmp |  | ||||||
|     spack install mpfr |  | ||||||
|     spack install cuda@11.8 |  | ||||||
|     spack install openmpi |  | ||||||
|     spack install openssl |  | ||||||
|     spack install hdf5 |  | ||||||
| else |  | ||||||
|     source $HOME/spack/share/spack/setup-env.sh |  | ||||||
| fi |  | ||||||
|  |  | ||||||
| spack load autoconf |  | ||||||
| spack load automake |  | ||||||
| spack load c-lime |  | ||||||
| spack load fftw |  | ||||||
| spack load llvm |  | ||||||
| spack load gmp |  | ||||||
| spack load mpfr |  | ||||||
| spack load cuda@11.8 |  | ||||||
| spack load openmpi |  | ||||||
| spack load openssl |  | ||||||
| spack load hdf5 |  | ||||||
|  |  | ||||||
| export FFTW=`spack find --paths fftw    | grep ^fftw   | awk '{print $2}' ` |  | ||||||
| export HDF5=`spack find --paths hdf5    | grep ^hdf5   | awk '{print $2}' ` |  | ||||||
| export CLIME=`spack find --paths c-lime | grep ^c-lime | awk '{print $2}' ` |  | ||||||
| export MPFR=`spack find --paths mpfr    | grep ^mpfr  | awk '{print $2}' ` |  | ||||||
| export GMP=`spack find --paths gmp      | grep ^gmp | awk '{print $2}' ` |  | ||||||
| export NVIDIA=$CUDA_HOME |  | ||||||
| export NVIDIALIB=$NVIDIA/targets/x86_64-linux/lib/ |  | ||||||
| export LD_LIBRARY_PATH=$NVIDIALIB:$FFTW/lib/:$MPFR/lib:$LD_LIBRARY_PATH |  | ||||||
| @@ -1,67 +0,0 @@ | |||||||
| #!/bin/bash |  | ||||||
|  |  | ||||||
| #PBS -q debug |  | ||||||
| #PBS -l select=1 |  | ||||||
| #PBS -l walltime=00:20:00 |  | ||||||
| #PBS -A LatticeQCD_aesp_CNDA |  | ||||||
|  |  | ||||||
| #export OMP_PROC_BIND=spread |  | ||||||
| #unset OMP_PLACES |  | ||||||
|  |  | ||||||
| cd $PBS_O_WORKDIR |  | ||||||
|  |  | ||||||
| source ../sourceme.sh |  | ||||||
| module load pti-gpu |  | ||||||
|  |  | ||||||
| #cat $PBS_NODEFILE |  | ||||||
|  |  | ||||||
| export OMP_NUM_THREADS=4 |  | ||||||
| export MPIR_CVAR_CH4_OFI_ENABLE_GPU_PIPELINE=1 |  | ||||||
|  |  | ||||||
| #unset MPIR_CVAR_CH4_OFI_GPU_PIPELINE_D2H_ENGINE_TYPE |  | ||||||
| #unset MPIR_CVAR_CH4_OFI_GPU_PIPELINE_H2D_ENGINE_TYPE |  | ||||||
| #unset MPIR_CVAR_GPU_USE_IMMEDIATE_COMMAND_LIST |  | ||||||
|  |  | ||||||
| #export MPIR_CVAR_CH4_OFI_GPU_PIPELINE_D2H_ENGINE_TYPE=0 |  | ||||||
| #export MPIR_CVAR_CH4_OFI_GPU_PIPELINE_H2D_ENGINE_TYPE=0 |  | ||||||
| #export MPIR_CVAR_GPU_USE_IMMEDIATE_COMMAND_LIST=1 |  | ||||||
| #export MPIR_CVAR_CH4_OFI_GPU_PIPELINE_BUFFER_SZ=1048576 |  | ||||||
| #export MPIR_CVAR_CH4_OFI_GPU_PIPELINE_THRESHOLD=131072 |  | ||||||
| #export MPIR_CVAR_CH4_OFI_GPU_PIPELINE_NUM_BUFFERS_PER_CHUNK=16 |  | ||||||
| #export MPIR_CVAR_CH4_OFI_GPU_PIPELINE_MAX_NUM_BUFFERS=16 |  | ||||||
| export MPICH_OFI_NIC_POLICY=GPU |  | ||||||
|  |  | ||||||
| # 12 ppn, 2 nodes, 24 ranks |  | ||||||
| # |  | ||||||
| CMD="mpiexec -np 12 -ppn 12  -envall \ |  | ||||||
| 	     ./gpu_tile_compact.sh \ |  | ||||||
| 	     ./Benchmark_comms_host_device --mpi 2.2.1.3 --grid 24.32.32.24 \ |  | ||||||
| 		--shm-mpi 0 --shm 2048 --device-mem 32000 --accelerator-threads 32"  |  | ||||||
| #$CMD | tee 1node.comms |  | ||||||
|  |  | ||||||
|  |  | ||||||
| CMD="mpiexec -np 1 -ppn 1  -envall \ |  | ||||||
| 	     ./gpu_tile_compact.sh \ |  | ||||||
| 	     ./Benchmark_dwf_fp32 --mpi 1.1.1.1 --grid 16.32.32.32 \ |  | ||||||
| 		--shm-mpi 0 --shm 2048 --device-mem 32000 --accelerator-threads 32 " |  | ||||||
| #$CMD | tee 1tile.dwf |  | ||||||
|  |  | ||||||
| CMD="mpiexec -np 12 -ppn 12  -envall \ |  | ||||||
| 	     ./gpu_tile_compact.sh \ |  | ||||||
| 	     ./Benchmark_dwf_fp32 --mpi 2.2.1.3 --grid 32.32.32.48 \ |  | ||||||
| 		--shm-mpi 0 --shm 2048 --device-mem 32000 --accelerator-threads 32 --comms-overlap" |  | ||||||
| $CMD | tee 1node.32.32.32.48.dwf |  | ||||||
|  |  | ||||||
|  |  | ||||||
| CMD="mpiexec -np 12 -ppn 12  -envall \ |  | ||||||
| 	     ./gpu_tile_compact.sh \ |  | ||||||
| 	     ./Benchmark_dwf_fp32 --mpi 2.2.1.3 --grid 64.64.32.96 \ |  | ||||||
| 		--shm-mpi 0 --shm 2048 --device-mem 32000 --accelerator-threads 32 --comms-overlap" |  | ||||||
| #$CMD | tee 1node.64.64.32.96.dwf |  | ||||||
|  |  | ||||||
| CMD="mpiexec -np 12 -ppn 12  -envall \ |  | ||||||
| 	     ./gpu_tile_compact.sh \ |  | ||||||
| 	     ./Benchmark_dwf_fp32 --mpi 2.2.1.3 --grid 64.32.32.48 \ |  | ||||||
| 		--shm-mpi 0 --shm 2048 --device-mem 32000 --accelerator-threads 32 --comms-overlap" |  | ||||||
| #$CMD | tee 1node.64.32.32.48.dwf |  | ||||||
|  |  | ||||||
Some files were not shown because too many files have changed in this diff Show More
		Reference in New Issue
	
	Block a user