Imported changes from feature/gparity_HMC branch:
Added a bounds-check function for the RHMC with arbitrary power
Added a pseudofermion action for the rational ratio with an arbitrary power and a mixed-precision variant of the same. The existing one-flavor rational ratio class now uses the general class under the hood
To support testing of the two-flavor even-odd ratio pseudofermion, separated the functionality of generating the random field and performing the heatbath step, and added a method to obtain the pseudofermion field
Added a new HMC runner start type: CheckpointStartReseed, which reseeds the RNG from scratch, allowing for the creation of new evolution streams from an existing checkpoint. Added log output of seeds used when the RNG is seeded.
EOFA changes:
To support mixed-precision inversion, generalized the class to maintain a separate solver for the L and R operators in the heatbath (separate solvers are already implemented for the other stages)
To support mixed-precision, the action of setting the operator shift coefficients is now maintained in a virtual function. A derived class for mixed-precision solvers ensures the coefficients are applied to both the double and single-prec operators
The ||^2 of the random source is now stored by the heatbath and compared to the initial action when it is computed. These should be equal but may differ if the rational bounds are not chosen correctly, hence serving as a useful and free test
Fixed calculation of M_eofa (previously incomplete and #if'd out)
Added functionality to compute M_eofa^-1 to complement the calculation of M_eofa (both are equally expensive!)
To support testing, separated the functionality of generating the random field and performing the heatbath step, and added a method to obtain the pseudofermion field
Added a test program which computes the G-parity force using the 1 and 2 flavor implementations and compares the result. Test supports DWF, EOFA and DSDR actions, chosen by a command line option.
The Mobius EOFA force test now also checks the rational approximation used for the heatbath
Added a test program for the mixed precision EOFA compared to the double-prec implementation,
G-parity HMC test now applied GPBC in the y direction and not the t direction (GPBC in t are no longer supported) and checkpoints after every configuration
Added a test program which computes the two-flavor G-parity action (via RHMC) with both the 1 and 2 flavor implementations and checks they agree
Added a test program to check the implementation of M_eofa^{-1}
2022-06-22 15:27:48 +01:00
|
|
|
/*************************************************************************************
|
|
|
|
|
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
|
|
|
Source file: ./tests/solver/Test_eofa_inv.cc
|
|
|
|
|
|
|
|
Copyright (C) 2017
|
|
|
|
|
|
|
|
Author: Christopher Kelly <ckelly@bnl.gov>
|
|
|
|
Author: Peter Boyle <paboyle@ph.ed.ac.uk>
|
|
|
|
Author: David Murphy <dmurphy@phys.columbia.edu>
|
|
|
|
|
|
|
|
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>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace Grid;
|
|
|
|
;
|
|
|
|
|
|
|
|
int main (int argc, char** argv)
|
|
|
|
{
|
|
|
|
Grid_init(&argc, &argv);
|
|
|
|
|
|
|
|
Coordinate latt_size = GridDefaultLatt();
|
|
|
|
Coordinate simd_layout = GridDefaultSimd(Nd,vComplex::Nsimd());
|
|
|
|
Coordinate mpi_layout = GridDefaultMpi();
|
|
|
|
|
|
|
|
const int Ls = 8;
|
|
|
|
|
|
|
|
GridCartesian *UGrid = SpaceTimeGrid::makeFourDimGrid(GridDefaultLatt(), GridDefaultSimd(Nd,vComplex::Nsimd()), GridDefaultMpi());
|
|
|
|
GridRedBlackCartesian *UrbGrid = SpaceTimeGrid::makeFourDimRedBlackGrid(UGrid);
|
|
|
|
GridCartesian *FGrid = SpaceTimeGrid::makeFiveDimGrid(Ls, UGrid);
|
|
|
|
GridRedBlackCartesian *FrbGrid = SpaceTimeGrid::makeFiveDimRedBlackGrid(Ls, UGrid);
|
|
|
|
|
|
|
|
// Want a different conf at every run
|
|
|
|
// First create an instance of an engine.
|
|
|
|
std::random_device rnd_device;
|
|
|
|
// Specify the engine and distribution.
|
|
|
|
std::mt19937 mersenne_engine(rnd_device());
|
|
|
|
std::uniform_int_distribution<int> dist(1, 100);
|
|
|
|
|
|
|
|
auto gen = std::bind(dist, mersenne_engine);
|
|
|
|
std::vector<int> seeds4(4);
|
|
|
|
generate(begin(seeds4), end(seeds4), gen);
|
|
|
|
|
|
|
|
//std::vector<int> seeds4({1,2,3,5});
|
|
|
|
std::vector<int> seeds5({5,6,7,8});
|
|
|
|
GridParallelRNG RNG5(FGrid); RNG5.SeedFixedIntegers(seeds5);
|
|
|
|
GridParallelRNG RNG4(UGrid); RNG4.SeedFixedIntegers(seeds4);
|
|
|
|
|
|
|
|
int threads = GridThread::GetThreads();
|
|
|
|
std::cout << GridLogMessage << "Grid is setup to use " << threads << " threads" << std::endl;
|
|
|
|
|
|
|
|
LatticeFermion phi (FGrid); gaussian(RNG5, phi);
|
|
|
|
LatticeFermion Mphi (FGrid);
|
|
|
|
LatticeFermion MphiPrime (FGrid);
|
|
|
|
|
|
|
|
LatticeGaugeField U(UGrid);
|
|
|
|
SU<Nc>::HotConfiguration(RNG4,U);
|
|
|
|
|
|
|
|
////////////////////////////////////
|
|
|
|
// Unmodified matrix element
|
|
|
|
////////////////////////////////////
|
|
|
|
RealD b = 2.5;
|
|
|
|
RealD c = 1.5;
|
|
|
|
RealD mf = 0.01;
|
|
|
|
RealD mb = 1.0;
|
|
|
|
RealD M5 = 1.8;
|
2022-11-17 01:15:51 +00:00
|
|
|
MobiusEOFAFermionD Lop(U, *FGrid, *FrbGrid, *UGrid, *UrbGrid, mf, mf, mb, 0.0, -1, M5, b, c);
|
|
|
|
MobiusEOFAFermionD Rop(U, *FGrid, *FrbGrid, *UGrid, *UrbGrid, mb, mf, mb, -1.0, 1, M5, b, c);
|
Imported changes from feature/gparity_HMC branch:
Added a bounds-check function for the RHMC with arbitrary power
Added a pseudofermion action for the rational ratio with an arbitrary power and a mixed-precision variant of the same. The existing one-flavor rational ratio class now uses the general class under the hood
To support testing of the two-flavor even-odd ratio pseudofermion, separated the functionality of generating the random field and performing the heatbath step, and added a method to obtain the pseudofermion field
Added a new HMC runner start type: CheckpointStartReseed, which reseeds the RNG from scratch, allowing for the creation of new evolution streams from an existing checkpoint. Added log output of seeds used when the RNG is seeded.
EOFA changes:
To support mixed-precision inversion, generalized the class to maintain a separate solver for the L and R operators in the heatbath (separate solvers are already implemented for the other stages)
To support mixed-precision, the action of setting the operator shift coefficients is now maintained in a virtual function. A derived class for mixed-precision solvers ensures the coefficients are applied to both the double and single-prec operators
The ||^2 of the random source is now stored by the heatbath and compared to the initial action when it is computed. These should be equal but may differ if the rational bounds are not chosen correctly, hence serving as a useful and free test
Fixed calculation of M_eofa (previously incomplete and #if'd out)
Added functionality to compute M_eofa^-1 to complement the calculation of M_eofa (both are equally expensive!)
To support testing, separated the functionality of generating the random field and performing the heatbath step, and added a method to obtain the pseudofermion field
Added a test program which computes the G-parity force using the 1 and 2 flavor implementations and compares the result. Test supports DWF, EOFA and DSDR actions, chosen by a command line option.
The Mobius EOFA force test now also checks the rational approximation used for the heatbath
Added a test program for the mixed precision EOFA compared to the double-prec implementation,
G-parity HMC test now applied GPBC in the y direction and not the t direction (GPBC in t are no longer supported) and checkpoints after every configuration
Added a test program which computes the two-flavor G-parity action (via RHMC) with both the 1 and 2 flavor implementations and checks they agree
Added a test program to check the implementation of M_eofa^{-1}
2022-06-22 15:27:48 +01:00
|
|
|
OneFlavourRationalParams Params(0.95, 100.0, 5000, 1.0e-10, 12);
|
|
|
|
ConjugateGradient<LatticeFermion> CG(1.0e-10, 5000);
|
|
|
|
ExactOneFlavourRatioPseudoFermionAction<WilsonImplR> Meofa(Lop, Rop, CG, CG, CG, CG, CG, Params, false);
|
|
|
|
|
|
|
|
GridSerialRNG sRNG; sRNG.SeedFixedIntegers(seeds4);
|
|
|
|
|
|
|
|
|
|
|
|
//Random field
|
|
|
|
LatticeFermion eta(FGrid);
|
|
|
|
gaussian(RNG5,eta);
|
|
|
|
|
|
|
|
//Check left inverse
|
|
|
|
LatticeFermion Meta(FGrid);
|
|
|
|
Meofa.Meofa(U, eta, Meta);
|
|
|
|
|
|
|
|
LatticeFermion MinvMeta(FGrid);
|
|
|
|
Meofa.MeofaInv(U, Meta, MinvMeta);
|
|
|
|
|
|
|
|
LatticeFermion diff = MinvMeta - eta;
|
|
|
|
|
|
|
|
std::cout << GridLogMessage << "eta: " << norm2(eta) << " M*eta: " << norm2(Meta) << " M^{-1}*M*eta: " << norm2(MinvMeta) << " M^{-1}*M*eta - eta: " << norm2(diff) << " (expect 0)" << std::endl;
|
|
|
|
assert(norm2(diff) < 1e-8);
|
|
|
|
|
|
|
|
//Check right inverse
|
|
|
|
LatticeFermion MinvEta(FGrid);
|
|
|
|
Meofa.MeofaInv(U, eta, MinvEta);
|
|
|
|
|
|
|
|
LatticeFermion MMinvEta(FGrid);
|
|
|
|
Meofa.Meofa(U, MinvEta, MMinvEta);
|
|
|
|
|
|
|
|
diff = MMinvEta - eta;
|
|
|
|
|
|
|
|
std::cout << GridLogMessage << "eta: " << norm2(eta) << " M^{-1}*eta: " << norm2(MinvEta) << " M*M^{-1}*eta: " << norm2(MMinvEta) << " M*M^{-1}*eta - eta: " << norm2(diff) << " (expect 0)" << std::endl;
|
|
|
|
assert(norm2(diff) < 1e-8);
|
|
|
|
|
|
|
|
std::cout << GridLogMessage << "Done" << std::endl;
|
|
|
|
Grid_finalize();
|
|
|
|
}
|