From d868a451200659853b30ba8e1af68af3ecc0ae9e Mon Sep 17 00:00:00 2001 From: fionnoh Date: Mon, 16 Jul 2018 16:19:59 +0100 Subject: [PATCH] Cleaned up some stuff that was erroneously included in a previous "trash" commit. Leaving in the mySliceInnerProdct function for now as it speeds up mesonfield creation quite a lot for 24^3 tests --- .../Modules/MContraction/MesonFieldGamma.hpp | 4 +-- lib/lattice/Lattice_reduction.h | 10 +------ lib/tensors/Tensor_inner.h | 26 ------------------- 3 files changed, 2 insertions(+), 38 deletions(-) diff --git a/extras/Hadrons/Modules/MContraction/MesonFieldGamma.hpp b/extras/Hadrons/Modules/MContraction/MesonFieldGamma.hpp index 0b81f607..3c73967e 100644 --- a/extras/Hadrons/Modules/MContraction/MesonFieldGamma.hpp +++ b/extras/Hadrons/Modules/MContraction/MesonFieldGamma.hpp @@ -39,8 +39,7 @@ class TMesonFieldGamma : public Module public: GRID_SERIALIZABLE_CLASS_MEMBERS(Result, Gamma::Algebra, gamma, - std::vector>>, MesonField, - ComplexD, last); + std::vector>>, MesonField); }; public: @@ -179,7 +178,6 @@ void TMesonFieldGamma::execute(void) LOG(Message) << "MF for i = " << i << " of " << N << std::endl; } } - result[0].last = MesonField_ij[7]; saveResult(par().output, "meson", result); } diff --git a/lib/lattice/Lattice_reduction.h b/lib/lattice/Lattice_reduction.h index 12bfebed..196d6748 100644 --- a/lib/lattice/Lattice_reduction.h +++ b/lib/lattice/Lattice_reduction.h @@ -41,7 +41,6 @@ template inline RealD norm2(const Lattice &arg){ template inline ComplexD innerProduct(const Lattice &left,const Lattice &right) { - std::cout << GridLogMessage << "Start alloc innerProduct" << std::endl; typedef typename vobj::scalar_type scalar_type; typedef typename vobj::vector_typeD vector_type; GridBase *grid = left._grid; @@ -50,8 +49,6 @@ inline ComplexD innerProduct(const Lattice &left,const Lattice &righ ComplexD inner; Vector sumarray(grid->SumArraySize()*pad); - std::cout << GridLogMessage << "End alloc innerProduct" << std::endl; - std::cout << GridLogMessage << "Start parallel for innerProduct" << std::endl; parallel_for(int thr=0;thrSumArraySize();thr++){ int nwork, mywork, myoff; GridThread::GetWork(left._grid->oSites(),thr,mywork,myoff); @@ -65,18 +62,13 @@ inline ComplexD innerProduct(const Lattice &left,const Lattice &righ ComplexD tmp = Reduce(TensorRemove(vinner)) ; vstream(sumarray[thr*pad],tmp); } - std::cout << GridLogMessage << "End parallel for innerProduct" << std::endl; - std::cout << GridLogMessage << "Start inner sum innerProduct" << std::endl; inner=0.0; for(int i=0;iSumArraySize();i++){ inner = inner+sumarray[i*pad]; } right._grid->GlobalSum(inner); return inner; - std::cout << GridLogMessage << "End inner sum innerProduct" << std::endl; - - std::cout << GridLogMessage << "End innerProduct" << std::endl; } ///////////////////////// @@ -339,7 +331,7 @@ static void localSliceInnerProductVector(std::vector &result, const La for(int n=0;n ret; ret=zero; - // std::cout << GridLogMessage << "innerProduct iVector" << std::endl; for(int c1=0;c1 ret; - // std::cout << GridLogMessage << "innerProduct iScalar" << std::endl; - ret._internal = innerProduct(lhs._internal,rhs._internal); return ret; } - template inline - auto myInnerProduct (const iVector& lhs,const iVector& rhs) -> iScalar - { - typedef decltype(innerProduct(lhs._internal[0],rhs._internal[0])) ret_t; - iScalar ret; - ret=zero; - std::cout << GridLogMessage << "myInnerProduct iVector, N = " << N << std::endl; - for(int c1=0;c1 inline - auto myInnerProduct (const iScalar& lhs,const iScalar& rhs) -> iScalar - { - typedef decltype(innerProduct(lhs._internal,rhs._internal)) ret_t; - iScalar ret; - std::cout << GridLogMessage << "myInnerProduct iScalar" << std::endl; - - ret._internal = myInnerProduct(lhs._internal,rhs._internal); - return ret; - } } #endif