1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 17:25:37 +01:00
Grid/tests/hadrons/Test_hadrons_distil.cc

255 lines
7.6 KiB
C++
Raw Normal View History

2019-01-21 10:39:28 +00:00
/*************************************************************************************
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;
2019-01-22 13:19:39 +00:00
/////////////////////////////////////////////////////////////
2019-01-24 18:50:18 +00:00
// Test creation of laplacian eigenvectors
2019-01-22 13:19:39 +00:00
/////////////////////////////////////////////////////////////
2019-01-21 10:39:28 +00:00
2019-01-24 18:50:18 +00:00
void test_Global(Application &application)
2019-01-21 10:39:28 +00:00
{
// global parameters
Application::GlobalPar globalPar;
globalPar.trajCounter.start = 1500;
globalPar.trajCounter.end = 1520;
globalPar.trajCounter.step = 20;
globalPar.runId = "test";
application.setPar(globalPar);
}
2019-01-22 13:19:39 +00:00
/////////////////////////////////////////////////////////////
// Test creation of laplacian eigenvectors
/////////////////////////////////////////////////////////////
void test_LapEvec(Application &application)
{
const char szGaugeName[] = "gauge";
2019-01-22 13:19:39 +00:00
// gauge field
2019-01-24 13:26:05 +00:00
application.createModule<MGauge::Random>(szGaugeName);
2019-01-22 13:19:39 +00:00
// Now make an instance of the LapEvec object
MDistil::LapEvecPar p;
p.gauge = szGaugeName;
2019-01-24 16:12:19 +00:00
//p.EigenPackName = "ePack";
2019-01-24 18:50:18 +00:00
//p.Distil.TI = 8;
//p.Distil.LI = 3;
//p.Distil.Nnoise = 2;
//p.Distil.tSrc = 0;
p.Stout.steps = 3;
p.Stout.parm = 0.2;
p.Cheby.PolyOrder = 11;
p.Cheby.alpha = 0.3;
p.Cheby.beta = 12.5;
p.Lanczos.Nvec = 5;
p.Lanczos.Nk = 6;
p.Lanczos.Np = 2;
2019-01-24 13:26:05 +00:00
p.Lanczos.MaxIt = 1000;
p.Lanczos.resid = 1e-2;
application.createModule<MDistil::LapEvec>("LapEvec",p);
2019-01-22 13:19:39 +00:00
}
/////////////////////////////////////////////////////////////
2019-01-23 12:49:20 +00:00
// Perambulators
2019-01-22 13:19:39 +00:00
/////////////////////////////////////////////////////////////
2019-01-23 12:49:20 +00:00
void test_Perambulators(Application &application)
2019-01-22 13:19:39 +00:00
{
2019-01-23 13:58:20 +00:00
// PerambLight parameters
MDistil::PerambLight::Par PerambPar;
2019-01-24 18:50:18 +00:00
PerambPar.eigenPack="LapEvec";
2019-01-23 13:58:20 +00:00
PerambPar.tsrc = 0;
PerambPar.nnoise = 1;
2019-01-25 13:44:19 +00:00
PerambPar.LI=5;
2019-01-23 13:58:20 +00:00
PerambPar.SI=4;
PerambPar.TI=64;
2019-01-25 13:44:19 +00:00
PerambPar.nvec=5;
2019-01-23 13:58:20 +00:00
PerambPar.Ns=4;
PerambPar.Nt=64;
PerambPar.Nt_inv=1;
PerambPar.mass=0.005;
PerambPar.M5=1.8;
PerambPar.Ls=16;
PerambPar.CGPrecision=1e-8;
PerambPar.MaxIterations=10000;
2019-01-24 16:12:19 +00:00
application.createModule<MDistil::PerambLight>("Peramb",PerambPar);
2019-01-24 18:50:18 +00:00
}
/////////////////////////////////////////////////////////////
// DistilVectors
/////////////////////////////////////////////////////////////
void test_DistilVectors(Application &application)
{
2019-01-23 13:58:20 +00:00
// DistilVectors parameters
MDistil::DistilVectors::Par DistilVecPar;
2019-01-24 16:12:19 +00:00
DistilVecPar.noise="Peramb_noise";
DistilVecPar.perambulator="Peramb_perambulator_light";
2019-01-25 13:44:19 +00:00
DistilVecPar.eigenPack="LapEvec";
2019-01-23 13:58:20 +00:00
DistilVecPar.tsrc = 0;
DistilVecPar.nnoise = 1;
DistilVecPar.LI=5;
2019-01-23 13:58:20 +00:00
DistilVecPar.SI=4;
DistilVecPar.TI=64;
DistilVecPar.nvec=5;
2019-01-23 13:58:20 +00:00
DistilVecPar.Ns=4;
DistilVecPar.Nt=64;
DistilVecPar.Nt_inv=1;
application.createModule<MDistil::DistilVectors>("DistilVecs",DistilVecPar);
}
/////////////////////////////////////////////////////////////
// MesonFields
/////////////////////////////////////////////////////////////
void test_MesonField(Application &application)
{
// DistilVectors parameters
MContraction::A2AMesonField::Par A2AMesonFieldPar;
A2AMesonFieldPar.left="DistilVecs_phi";
A2AMesonFieldPar.right="DistilVecs_rho";
A2AMesonFieldPar.output="DistilFields";
A2AMesonFieldPar.gammas="all";
A2AMesonFieldPar.mom={"0 0 0"};
2019-01-25 17:26:43 +00:00
A2AMesonFieldPar.cacheBlock=4;
A2AMesonFieldPar.block=16;
application.createModule<MContraction::A2AMesonField>("DistilMesonField",A2AMesonFieldPar);
2019-01-22 13:19:39 +00:00
}
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;
}
2019-01-21 10:39:28 +00:00
int main(int argc, char *argv[])
{
2019-01-22 13:19:39 +00:00
// Decode command-line parameters. 1st one is which test to run
2019-01-25 19:14:22 +00:00
int iTestNum = 4;
2019-01-22 13:19:39 +00:00
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;
}
}
}
2019-01-21 10:39:28 +00:00
// 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)
2019-01-22 13:19:39 +00:00
LOG(Message) << "====== Creating xml for test " << iTestNum << " ======" << std::endl;
2019-01-24 18:50:18 +00:00
//const unsigned int nt = GridDefaultLatt()[Tp];
2019-01-23 12:49:20 +00:00
2019-01-24 18:50:18 +00:00
switch(iTestNum) {
2019-01-22 13:19:39 +00:00
case 1:
2019-01-24 18:50:18 +00:00
test_Global( application );
test_LapEvec( application );
break;
case 2:
test_Global( application );
2019-01-22 13:19:39 +00:00
test_LapEvec( application );
2019-01-24 18:50:18 +00:00
test_Perambulators( application );
2019-01-22 13:19:39 +00:00
break;
case 3: // 3
test_Global( application );
test_LapEvec( application );
test_Perambulators( application );
test_DistilVectors( application );
break;
2019-01-25 19:14:22 +00:00
default: // 4
2019-01-24 18:50:18 +00:00
test_Global( application );
test_LapEvec( application );
test_Perambulators( application );
2019-01-23 12:49:20 +00:00
test_DistilVectors( application );
test_MesonField( application );
2019-01-22 13:19:39 +00:00
break;
}
LOG(Message) << "====== XML creation for test " << iTestNum << " complete ======" << std::endl;
2019-01-21 10:39:28 +00:00
// execution
application.saveParameterFile("test_hadrons_distil.xml");
application.run();
// epilogue
LOG(Message) << "Grid is finalizing now" << std::endl;
Grid_finalize();
return EXIT_SUCCESS;
}