From 3b2d805398c0691dcb61e9aa4cbbadb7881aa4b6 Mon Sep 17 00:00:00 2001 From: Daniel Richtmann Date: Sat, 20 Jan 2018 18:48:53 +0100 Subject: [PATCH] WilsonMG: Some first steps towards coarse spin dofs; not compiling yet A failing conversion from the innermost type (Grid::Simd<...>) to a coarse scalar (triple iScalar) in blockPromote prohibits this commit from working. --- lib/algorithms/CoarsenedMatrix.h | 35 +++++++++++++++++++------------- lib/lattice/Lattice_transfer.h | 26 ++++++++++++++---------- 2 files changed, 36 insertions(+), 25 deletions(-) diff --git a/lib/algorithms/CoarsenedMatrix.h b/lib/algorithms/CoarsenedMatrix.h index 8af8d7ac..04ac18ae 100644 --- a/lib/algorithms/CoarsenedMatrix.h +++ b/lib/algorithms/CoarsenedMatrix.h @@ -93,12 +93,16 @@ namespace Grid { template class Aggregation { public: - typedef iVector siteVector; - typedef Lattice CoarseVector; - typedef Lattice > CoarseMatrix; - typedef Lattice< CComplex > CoarseScalar; // used for inner products on fine field - typedef Lattice FineField; + typedef typename GridTypeMapper::vector_type innerType; + typedef iScalar > > siteScalar; // used for inner products on fine field + typedef iScalar, 1 > > siteVector; + typedef iScalar, 1 > > siteMatrix; + typedef Lattice CoarseScalar; // used for inner products on fine field + typedef Lattice CoarseVector; + typedef Lattice CoarseMatrix; + + typedef Lattice FineField; GridBase *CoarseGrid; GridBase *FineGrid; @@ -129,7 +133,7 @@ namespace Grid { blockProject(iProj,subspace[i],subspace); eProj=zero; parallel_for(int ss=0;ssoSites();ss++){ - eProj._odata[ss](i)=CComplex(1.0); + eProj._odata[ss]()(0)(i)=innerType(1.0); } eProj=eProj - iProj; std::cout< - class CoarsenedMatrix : public SparseMatrixBase > > { + class CoarsenedMatrix : public SparseMatrixBase::vector_type, nbasis >, 1 > > > > { public: - typedef iVector siteVector; - typedef Lattice CoarseVector; - typedef Lattice > CoarseMatrix; + typedef typename GridTypeMapper::vector_type innerType; + typedef iScalar > > siteScalar; + typedef iScalar, 1 > > siteVector; + typedef iScalar, 1 > > siteMatrix; + typedef Lattice CoarseScalar; // used for inner products on fine field + typedef Lattice CoarseVector; + typedef Lattice CoarseMatrix; - typedef Lattice< CComplex > CoarseScalar; // used for inner products on fine field - typedef Lattice FineField; + typedef Lattice FineField; //////////////////// // Data members @@ -387,9 +394,9 @@ namespace Grid { parallel_for(int ss=0;ssoSites();ss++){ for(int j=0;j -inline void blockProject(Lattice > &coarseData, +template +inline void blockProject(Lattice &coarseData, const Lattice &fineData, const std::vector > &Basis) { @@ -90,7 +90,8 @@ inline void blockProject(Lattice > &coarseData, int _ndimension = coarse->_ndimension; // checks - assert( nbasis == Basis.size() ); + assert((Basis.size() != 0) && ((Basis.size() & 0x1) == 0)); + auto nbasis = Basis.size(); subdivides(coarse,fine); for(int i=0;i > &coarseData, PARALLEL_CRITICAL for(int i=0;i &ip,std::vector > } } -template -inline void blockPromote(const Lattice > &coarseData, - Lattice &fineData, +template +inline void blockPromote(const Lattice &coarseData, + Lattice &fineData, const std::vector > &Basis) { GridBase * fine = fineData._grid; @@ -295,7 +296,9 @@ inline void blockPromote(const Lattice > &coarseData, int _ndimension = coarse->_ndimension; // checks - assert( nbasis == Basis.size() ); + assert((Basis.size() != 0) && ((Basis.size() & 0x1) == 0)); + auto nbasis = Basis.size(); + subdivides(coarse,fine); for(int i=0;i > &coarseData, for(int d=0;d<_ndimension;d++) coor_c[d]=coor_f[d]/block_r[d]; Lexicographic::IndexFromCoor(coor_c,sc,coarse->_rdimensions); + // TODO: These lines here prevent this commit from working for(int i=0;i