mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 07:55:35 +00:00
396 lines
14 KiB
C++
396 lines
14 KiB
C++
/*************************************************************************************
|
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
Source file: Tests/Hadrons/Test_hadrons_distil.cc
|
|
|
|
Copyright (C) 2015-2019
|
|
|
|
Author: Felix Erben <ferben@ed.ac.uk>
|
|
Author: Michael Marshall <Michael.Marshall@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 <Hadrons/Application.hpp>
|
|
#include <Hadrons/Modules.hpp>
|
|
|
|
using namespace Grid;
|
|
using namespace Hadrons;
|
|
|
|
/////////////////////////////////////////////////////////////
|
|
// This is copied from the free propagator test
|
|
// Just used as an example - will be deleted
|
|
/////////////////////////////////////////////////////////////
|
|
|
|
void free_prop(Application &application)
|
|
{
|
|
std::vector<std::string> flavour = {"h"}; //{"l", "s", "c1", "c2", "c3"};
|
|
std::vector<double> mass = {.2}; //{.01, .04, .2 , .25 , .3 };
|
|
std::vector<std::string> lepton_flavour = {"mu"};
|
|
std::vector<double> lepton_mass = {.2};
|
|
|
|
unsigned int nt = GridDefaultLatt()[Tp];
|
|
|
|
// global parameters
|
|
Application::GlobalPar globalPar;
|
|
globalPar.trajCounter.start = 1500;
|
|
globalPar.trajCounter.end = 1520;
|
|
globalPar.trajCounter.step = 20;
|
|
globalPar.runId = "test";
|
|
application.setPar(globalPar);
|
|
// gauge field
|
|
application.createModule<MGauge::Unit>("gauge");
|
|
// unit gauge field for lepton
|
|
application.createModule<MGauge::Unit>("free_gauge");
|
|
// pt source
|
|
MSource::Point::Par ptPar;
|
|
ptPar.position = "0 0 0 0";
|
|
application.createModule<MSource::Point>("pt", ptPar);
|
|
// sink
|
|
MSink::Point::Par sinkPar;
|
|
sinkPar.mom = "0 0 0";
|
|
application.createModule<MSink::ScalarPoint>("sink", sinkPar);
|
|
|
|
// set fermion boundary conditions to be periodic space, antiperiodic time.
|
|
std::string boundary = "1 1 1 -1";
|
|
|
|
|
|
//Propagators from FFT and Feynman rules
|
|
for (unsigned int i = 0; i < lepton_mass.size(); ++i)
|
|
{
|
|
//DWF actions
|
|
MAction::DWF::Par actionPar_lep;
|
|
actionPar_lep.gauge = "free_gauge";
|
|
actionPar_lep.Ls = 8;
|
|
actionPar_lep.M5 = 1.8;
|
|
actionPar_lep.mass = lepton_mass[i];
|
|
actionPar_lep.boundary = boundary;
|
|
application.createModule<MAction::DWF>("free_DWF_" + lepton_flavour[i], actionPar_lep);
|
|
|
|
//DWF free propagators
|
|
MFermion::FreeProp::Par freePar;
|
|
freePar.source = "pt";
|
|
freePar.action = "free_DWF_" + lepton_flavour[i];
|
|
freePar.twist = "0 0 0 0.5";
|
|
freePar.mass = lepton_mass[i];
|
|
application.createModule<MFermion::FreeProp>("Lpt_" + lepton_flavour[i],
|
|
freePar);
|
|
|
|
//Wilson actions
|
|
MAction::Wilson::Par actionPar_lep_W;
|
|
actionPar_lep_W.gauge = "free_gauge";
|
|
actionPar_lep_W.mass = lepton_mass[i];
|
|
actionPar_lep_W.boundary = boundary;
|
|
application.createModule<MAction::Wilson>("free_W_" + lepton_flavour[i], actionPar_lep_W);
|
|
|
|
//Wilson free propagators
|
|
MFermion::FreeProp::Par freePar_W;
|
|
freePar_W.source = "pt";
|
|
freePar_W.action = "free_W_" + lepton_flavour[i];
|
|
freePar_W.twist = "0 0 0 0.5";
|
|
freePar_W.mass = lepton_mass[i];
|
|
application.createModule<MFermion::FreeProp>("W_Lpt_" + lepton_flavour[i],
|
|
freePar_W);
|
|
}
|
|
|
|
//Propagators from inversion
|
|
for (unsigned int i = 0; i < flavour.size(); ++i)
|
|
{
|
|
//DWF actions
|
|
MAction::DWF::Par actionPar;
|
|
actionPar.gauge = "gauge";
|
|
actionPar.Ls = 8;
|
|
actionPar.M5 = 1.8;
|
|
actionPar.mass = mass[i];
|
|
actionPar.boundary = boundary;
|
|
application.createModule<MAction::DWF>("DWF_" + flavour[i], actionPar);
|
|
|
|
// solvers
|
|
MSolver::RBPrecCG::Par solverPar;
|
|
solverPar.action = "DWF_" + flavour[i];
|
|
solverPar.residual = 1.0e-8;
|
|
solverPar.maxIteration = 10000;
|
|
application.createModule<MSolver::RBPrecCG>("CG_" + flavour[i],
|
|
solverPar);
|
|
|
|
//DWF propagators
|
|
MFermion::GaugeProp::Par quarkPar;
|
|
quarkPar.solver = "CG_" + flavour[i];
|
|
quarkPar.source = "pt";
|
|
application.createModule<MFermion::GaugeProp>("Qpt_" + flavour[i],
|
|
quarkPar);
|
|
|
|
//Wilson actions
|
|
MAction::Wilson::Par actionPar_W;
|
|
actionPar_W.gauge = "gauge";
|
|
actionPar_W.mass = mass[i];
|
|
actionPar_W.boundary = boundary;
|
|
application.createModule<MAction::Wilson>("W_" + flavour[i], actionPar_W);
|
|
|
|
// solvers
|
|
MSolver::RBPrecCG::Par solverPar_W;
|
|
solverPar_W.action = "W_" + flavour[i];
|
|
solverPar_W.residual = 1.0e-8;
|
|
solverPar_W.maxIteration = 10000;
|
|
application.createModule<MSolver::RBPrecCG>("W_CG_" + flavour[i],
|
|
solverPar_W);
|
|
|
|
//Wilson propagators
|
|
MFermion::GaugeProp::Par quarkPar_W;
|
|
quarkPar_W.solver = "W_CG_" + flavour[i];
|
|
quarkPar_W.source = "pt";
|
|
application.createModule<MFermion::GaugeProp>("W_Qpt_" + flavour[i],
|
|
quarkPar_W);
|
|
|
|
}
|
|
|
|
|
|
//2pt contraction for Propagators from FFT and Feynman rules
|
|
for (unsigned int i = 0; i < lepton_flavour.size(); ++i)
|
|
for (unsigned int j = i; j < lepton_flavour.size(); ++j)
|
|
{
|
|
//2pt function contraction DWF
|
|
MContraction::Meson::Par freemesPar;
|
|
freemesPar.output = "2pt_free/DWF_L_pt_" + lepton_flavour[i] + lepton_flavour[j];
|
|
freemesPar.q1 = "Lpt_" + lepton_flavour[i];
|
|
freemesPar.q2 = "Lpt_" + lepton_flavour[j];
|
|
freemesPar.gammas = "(Gamma5 Gamma5)";
|
|
freemesPar.sink = "sink";
|
|
application.createModule<MContraction::Meson>("meson_L_pt_"
|
|
+ lepton_flavour[i] + lepton_flavour[j],
|
|
freemesPar);
|
|
|
|
//2pt function contraction Wilson
|
|
MContraction::Meson::Par freemesPar_W;
|
|
freemesPar_W.output = "2pt_free/W_L_pt_" + lepton_flavour[i] + lepton_flavour[j];
|
|
freemesPar_W.q1 = "W_Lpt_" + lepton_flavour[i];
|
|
freemesPar_W.q2 = "W_Lpt_" + lepton_flavour[j];
|
|
freemesPar_W.gammas = "(Gamma5 Gamma5)";
|
|
freemesPar_W.sink = "sink";
|
|
application.createModule<MContraction::Meson>("W_meson_L_pt_"
|
|
+ lepton_flavour[i] + lepton_flavour[j],
|
|
freemesPar_W);
|
|
|
|
}
|
|
|
|
//2pt contraction for Propagators from inverion
|
|
for (unsigned int i = 0; i < flavour.size(); ++i)
|
|
for (unsigned int j = i; j < flavour.size(); ++j)
|
|
{
|
|
//2pt function contraction DWF
|
|
MContraction::Meson::Par mesPar;
|
|
mesPar.output = "2pt_free/DWF_pt_" + flavour[i] + flavour[j];
|
|
mesPar.q1 = "Qpt_" + flavour[i];
|
|
mesPar.q2 = "Qpt_" + flavour[j];
|
|
mesPar.gammas = "(Gamma5 Gamma5)";
|
|
mesPar.sink = "sink";
|
|
application.createModule<MContraction::Meson>("meson_pt_"
|
|
+ flavour[i] + flavour[j],
|
|
mesPar);
|
|
|
|
|
|
//2pt function contraction Wilson
|
|
MContraction::Meson::Par mesPar_W;
|
|
mesPar_W.output = "2pt_free/W_pt_" + flavour[i] + flavour[j];
|
|
mesPar_W.q1 = "W_Qpt_" + flavour[i];
|
|
mesPar_W.q2 = "W_Qpt_" + flavour[j];
|
|
mesPar_W.gammas = "(Gamma5 Gamma5)";
|
|
mesPar_W.sink = "sink";
|
|
application.createModule<MContraction::Meson>("W_meson_pt_"
|
|
+ flavour[i] + flavour[j],
|
|
mesPar_W);
|
|
}
|
|
}
|
|
|
|
/////////////////////////////////////////////////////////////
|
|
// Test creation of laplacian eigenvectors
|
|
/////////////////////////////////////////////////////////////
|
|
|
|
void test_LapEvec(Application &application)
|
|
{
|
|
const unsigned int nt = GridDefaultLatt()[Tp];
|
|
|
|
// global parameters
|
|
Application::GlobalPar globalPar;
|
|
globalPar.trajCounter.start = 1500;
|
|
globalPar.trajCounter.end = 1520;
|
|
globalPar.trajCounter.step = 20;
|
|
globalPar.runId = "test";
|
|
application.setPar(globalPar);
|
|
// gauge field
|
|
application.createModule<MGauge::Unit>("gauge");
|
|
// Now make an instance of the LapEvec object
|
|
MDistil::LapEvecPar par;
|
|
par.Stout.steps = 173;
|
|
par.Stout.parm = -9.87654321;
|
|
application.createModule<MDistil::LapEvec>("LapEvec",par);
|
|
}
|
|
|
|
/////////////////////////////////////////////////////////////
|
|
// Perambulators
|
|
/////////////////////////////////////////////////////////////
|
|
|
|
void test_Perambulators(Application &application)
|
|
{
|
|
const unsigned int nt = GridDefaultLatt()[Tp];
|
|
|
|
// global parameters
|
|
Application::GlobalPar globalPar;
|
|
globalPar.trajCounter.start = 3000;
|
|
globalPar.trajCounter.end = 3040;
|
|
globalPar.trajCounter.step = 40;
|
|
globalPar.runId = "test";
|
|
application.setPar(globalPar);
|
|
// gauge field
|
|
application.createModule<MGauge::Unit>("gauge");
|
|
// Now make an instance of the LapEvec object
|
|
application.createModule<MDistil::PerambLight>("PerambulatorsInstance");
|
|
}
|
|
/////////////////////////////////////////////////////////////
|
|
// DistilVectors
|
|
/////////////////////////////////////////////////////////////
|
|
|
|
void test_DistilVectors(Application &application)
|
|
{
|
|
const unsigned int nt = GridDefaultLatt()[Tp];
|
|
|
|
// global parameters
|
|
Application::GlobalPar globalPar;
|
|
globalPar.trajCounter.start = 1500;
|
|
globalPar.trajCounter.end = 1520;
|
|
globalPar.trajCounter.step = 20;
|
|
globalPar.runId = "test";
|
|
application.setPar(globalPar);
|
|
// Module parameters
|
|
MDistil::DistilVectors::Par DistilPar;
|
|
DistilPar.noise="noise";
|
|
DistilPar.perambulator="perambulator";
|
|
DistilPar.eigenPack="ePack";
|
|
DistilPar.tsrc = 0;
|
|
DistilPar.nnoise = 1;
|
|
DistilPar.LI=6;
|
|
DistilPar.SI=4;
|
|
DistilPar.TI=64;
|
|
DistilPar.nvec=6;
|
|
DistilPar.Ns=4;
|
|
DistilPar.Nt=64;
|
|
DistilPar.Nt_inv=1;
|
|
// gauge field
|
|
application.createModule<MGauge::Unit>("gauge");
|
|
// Now make an instance of the LapEvec object
|
|
application.createModule<MDistil::DistilVectors>("DistilVectorsInstance",DistilPar);
|
|
}
|
|
|
|
bool bNumber( int &ri, const char * & pstr, bool bGobbleWhiteSpace = true )
|
|
{
|
|
if( bGobbleWhiteSpace )
|
|
while( std::isspace(static_cast<unsigned char>(*pstr)) )
|
|
pstr++;
|
|
const char * p = pstr;
|
|
bool bMinus = false;
|
|
char c = * p++;
|
|
if( c == '+' )
|
|
c = * p++;
|
|
else if( c == '-' ) {
|
|
bMinus = true;
|
|
c = * p++;
|
|
}
|
|
int n = c - '0';
|
|
if( n < 0 || n > 9 )
|
|
return false;
|
|
while( * p >= '0' && * p <= '9' ) {
|
|
n = n * 10 + ( * p ) - '0';
|
|
p++;
|
|
}
|
|
if( bMinus )
|
|
n *= -1;
|
|
ri = n;
|
|
pstr = p;
|
|
return true;
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
// Decode command-line parameters. 1st one is which test to run
|
|
int iTestNum = 2;
|
|
|
|
for(int i = 1 ; i < argc ; i++ ) {
|
|
std::cout << "argv[" << i << "]=\"" << argv[i] << "\"" << std::endl;
|
|
const char * p = argv[i];
|
|
if( * p == '/' || * p == '-' ) {
|
|
p++;
|
|
char c = * p++;
|
|
switch(toupper(c)) {
|
|
case 'T':
|
|
if( bNumber( iTestNum, p ) ) {
|
|
std::cout << "Test " << iTestNum << " requested";
|
|
if( * p )
|
|
std::cout << " (ignoring trailer \"" << p << "\")";
|
|
std::cout << std::endl;
|
|
}
|
|
else
|
|
std::cout << "Invalid test \"" << &argv[i][2] << "\"" << std::endl;
|
|
break;
|
|
default:
|
|
std::cout << "Ignoring switch \"" << &argv[i][1] << "\"" << std::endl;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
// initialization //////////////////////////////////////////////////////////
|
|
Grid_init(&argc, &argv);
|
|
HadronsLogError.Active(GridLogError.isActive());
|
|
HadronsLogWarning.Active(GridLogWarning.isActive());
|
|
HadronsLogMessage.Active(GridLogMessage.isActive());
|
|
HadronsLogIterative.Active(GridLogIterative.isActive());
|
|
HadronsLogDebug.Active(GridLogDebug.isActive());
|
|
LOG(Message) << "Grid initialized" << std::endl;
|
|
|
|
// run setup ///////////////////////////////////////////////////////////////
|
|
Application application;
|
|
|
|
// For now perform free propagator test - replace this with distillation test(s)
|
|
LOG(Message) << "====== Creating xml for test " << iTestNum << " ======" << std::endl;
|
|
const unsigned int nt = GridDefaultLatt()[Tp];
|
|
|
|
switch(iTestNum) {
|
|
case 0:
|
|
free_prop( application );
|
|
break;
|
|
case 1:
|
|
test_LapEvec( application );
|
|
break;
|
|
default: // 2
|
|
test_DistilVectors( application );
|
|
break;
|
|
}
|
|
LOG(Message) << "====== XML creation for test " << iTestNum << " complete ======" << std::endl;
|
|
|
|
// execution
|
|
application.saveParameterFile("test_hadrons_distil.xml");
|
|
application.run();
|
|
|
|
// epilogue
|
|
LOG(Message) << "Grid is finalizing now" << std::endl;
|
|
Grid_finalize();
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|