From d2e68c4355880d257b93610aa9cb2a8dd40f76c5 Mon Sep 17 00:00:00 2001 From: Daniel Richtmann Date: Mon, 29 Jan 2018 17:45:48 +0100 Subject: [PATCH] WilsonMG: Perform some minor cleanup --- tests/solver/Test_wilson_ddalphaamg.cc | 89 ++------------------------ 1 file changed, 4 insertions(+), 85 deletions(-) diff --git a/tests/solver/Test_wilson_ddalphaamg.cc b/tests/solver/Test_wilson_ddalphaamg.cc index 3ba933e8..b5bc00fb 100644 --- a/tests/solver/Test_wilson_ddalphaamg.cc +++ b/tests/solver/Test_wilson_ddalphaamg.cc @@ -2,9 +2,9 @@ Grid physics library, www.github.com/paboyle/Grid - Source file: ./tests/Test_dwf_hdcr.cc + Source file: ./tests/solver/Test_wilson_ddalphaamg.cc - Copyright (C) 2015 + Copyright (C) 2017 Author: Daniel Richtmann @@ -28,7 +28,6 @@ #include #include -//#include using namespace std; using namespace Grid; @@ -37,12 +36,10 @@ using namespace Grid::QCD; template class TestVectorAnalyzer { public: void operator()(LinearOperatorBase &Linop, std::vector const &vectors, int nn = nbasis) { - // this function corresponds to testvector_analysis_PRECISION from the - // DD-αAMG codebase auto positiveOnes = 0; - std::vector tmp(4, vectors[0]._grid); // bit hacky? + std::vector tmp(4, vectors[0]._grid); Gamma g5(Gamma::Algebra::Gamma5); std::cout << GridLogMessage << "Test vector analysis:" << std::endl; @@ -51,7 +48,7 @@ public: Linop.Op(vectors[i], tmp[3]); - tmp[0] = g5 * tmp[3]; // is this the same as coarse_gamma5_PRECISION? + tmp[0] = g5 * tmp[3]; auto lambda = innerProduct(vectors[i], tmp[0]) / innerProduct(vectors[i], vectors[i]); @@ -96,11 +93,6 @@ RealD InverseApproximation(RealD x) { template struct CoarseGrids { public: - // typedef Aggregation Subspace; - // typedef CoarsenedMatrix - // CoarseOperator; typedef typename CoarseOperator::CoarseVector - // CoarseVector; - std::vector> LattSizes; std::vector> Seeds; std::vector Grids; @@ -645,17 +637,6 @@ public: } }; -struct MGParams { - std::vector> blockSizes; - const int nbasis; - - MGParams() - : blockSizes({{1, 1, 1, 2}}) - // : blockSizes({{1,1,1,2}, {1,1,1,2}}) - // : blockSizes({{1,1,1,2}, {1,1,1,2}, {1,1,1,2}}) - , nbasis(20) {} -}; - int main(int argc, char **argv) { Grid_init(&argc, &argv); @@ -671,8 +652,6 @@ int main(int argc, char **argv) { params.hi = 70.0; params.steps = 1; - auto mgp = MGParams{}; - std::cout << GridLogMessage << "**************************************************" << std::endl; std::cout << GridLogMessage << "Params: " << std::endl; std::cout << GridLogMessage << "**************************************************" << std::endl; @@ -730,34 +709,9 @@ int main(int argc, char **argv) { const int nbasis = 20; // we fix the number of test vector to the same // number on every level for now - // // some stuff we need for every coarser lattice - // std::vector> cLattSizes({GridDefaultLatt()});; - // std::vector cGrids(params.coarsegrids); - // std::vector> cSeeds({ {5,6,7,8} }); - // std::vector cPRNGs;(params.coarsegrids); - - // assert(cLattSizes.size() == params.coarsegrids); - // assert( cGrids.size() == params.coarsegrids); - // assert( cSeeds.size() == params.coarsegrids); - // assert( cPRNGs.size() == params.coarsegrids); - - // for(int cl=0;cl cGrids(blockSizes); - // assert(0); - std::cout << GridLogMessage << "**************************************************" << std::endl; std::cout << GridLogMessage << "Building the wilson operator on the fine grid" << std::endl; std::cout << GridLogMessage << "**************************************************" << std::endl; @@ -782,43 +736,11 @@ int main(int argc, char **argv) { // CoarseG5PVector; // P = preserving typedef // CoarseOperator::CoarseG5PMatrix CoarseG5PMatrix; -#if 0 - // clang-format off - std::cout << std::endl; - std::cout << "type_name() = " << type_name() << std::endl; - std::cout << "type_name::scalar_type>() = " << type_name::scalar_type>() << std::endl; - std::cout << "type_name::vector_type>() = " << type_name::vector_type>() << std::endl; - std::cout << "type_name::vector_typeD>() = " << type_name::vector_typeD>() << std::endl; - std::cout << "type_name::tensor_reduced>() = " << type_name::tensor_reduced>() << std::endl; - std::cout << "type_name::scalar_object>() = " << type_name::scalar_object>() << std::endl; - std::cout << "type_name::Complexified>() = " << type_name::Complexified>() << std::endl; - std::cout << "type_name::Realified>() = " << type_name::Realified>() << std::endl; - std::cout << "type_name::DoublePrecision>() = " << type_name::DoublePrecision>() << std::endl; - std::cout << std::endl; - - std::cout << std::endl; - std::cout << "type_name() = " << type_name() << std::endl; - std::cout << "type_name::scalar_type>() = " << type_name::scalar_type>() << std::endl; - std::cout << "type_name::vector_type>() = " << type_name::vector_type>() << std::endl; - std::cout << "type_name::vector_typeD>() = " << type_name::vector_typeD>() << std::endl; - std::cout << "type_name::tensor_reduced>() = " << type_name::tensor_reduced>() << std::endl; - std::cout << "type_name::scalar_object>() = " << type_name::scalar_object>() << std::endl; - std::cout << "type_name::Complexified>() = " << type_name::Complexified>() << std::endl; - std::cout << "type_name::Realified>() = " << type_name::Realified>() << std::endl; - std::cout << "type_name::DoublePrecision>() = " << type_name::DoublePrecision>() << std::endl; - std::cout << std::endl; - // clang-format on -#endif std::cout << GridLogMessage << "**************************************************" << std::endl; std::cout << GridLogMessage << "Calling Aggregation class to build subspaces" << std::endl; std::cout << GridLogMessage << "**************************************************" << std::endl; - // • TODO: need some way to run the smoother on the "test vectors" for a few - // times before constructing the subspace from them - // • Maybe an application for an mrhs (true mrhs, no block) smoother? - // • In WMG, the vectors are normalized but not orthogonalized, but here they - // are constructed randomly and then orthogonalized (rather orthonormalized) against each other MdagMLinearOperator HermOp(Dw); Subspace Aggregates(cGrids.Grids[0], FGrid, 0); assert((nbasis & 0x1) == 0); @@ -864,9 +786,6 @@ int main(int argc, char **argv) { gaussian(cGrids.PRNGs[0], c_src); c_res = zero; - std::cout << "type_name() = " << type_name() << std::endl; - - // c_res = g5 * c_src; std::cout << GridLogMessage << "**************************************************" << std::endl; std::cout << GridLogMessage << "Solving posdef-MR on coarse space " << std::endl;