mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 15:55:37 +00:00
186 lines
6.0 KiB
C++
186 lines
6.0 KiB
C++
/*************************************************************************************
|
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
Source file: extras/Hadrons/Modules/Quark.hpp
|
|
|
|
Copyright (C) 2015
|
|
Copyright (C) 2016
|
|
|
|
Author: Antonin Portelli <antonin.portelli@me.com>
|
|
|
|
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 */
|
|
|
|
#ifndef Hadrons_Quark_hpp_
|
|
#define Hadrons_Quark_hpp_
|
|
|
|
#include <Grid/Hadrons/Global.hpp>
|
|
#include <Grid/Hadrons/Module.hpp>
|
|
#include <Grid/Hadrons/ModuleFactory.hpp>
|
|
|
|
BEGIN_HADRONS_NAMESPACE
|
|
|
|
/******************************************************************************
|
|
* TQuark *
|
|
******************************************************************************/
|
|
class QuarkPar: Serializable
|
|
{
|
|
public:
|
|
GRID_SERIALIZABLE_CLASS_MEMBERS(QuarkPar,
|
|
std::string, source,
|
|
std::string, solver);
|
|
};
|
|
|
|
template <typename FImpl>
|
|
class TQuark: public Module<QuarkPar>
|
|
{
|
|
public:
|
|
TYPE_ALIASES(FImpl,);
|
|
public:
|
|
// constructor
|
|
TQuark(const std::string name);
|
|
// destructor
|
|
virtual ~TQuark(void) = default;
|
|
// dependencies/products
|
|
virtual std::vector<std::string> getInput(void);
|
|
virtual std::vector<std::string> getOutput(void);
|
|
// setup
|
|
virtual void setup(void);
|
|
// execution
|
|
virtual void execute(void);
|
|
private:
|
|
unsigned int Ls_;
|
|
SolverFn *solver_{nullptr};
|
|
};
|
|
|
|
MODULE_REGISTER(Quark, TQuark<FIMPL>);
|
|
|
|
/******************************************************************************
|
|
* TQuark implementation *
|
|
******************************************************************************/
|
|
// constructor /////////////////////////////////////////////////////////////////
|
|
template <typename FImpl>
|
|
TQuark<FImpl>::TQuark(const std::string name)
|
|
: Module(name)
|
|
{}
|
|
|
|
// dependencies/products ///////////////////////////////////////////////////////
|
|
template <typename FImpl>
|
|
std::vector<std::string> TQuark<FImpl>::getInput(void)
|
|
{
|
|
std::vector<std::string> in = {par().source, par().solver};
|
|
|
|
return in;
|
|
}
|
|
|
|
template <typename FImpl>
|
|
std::vector<std::string> TQuark<FImpl>::getOutput(void)
|
|
{
|
|
std::vector<std::string> out = {getName(), getName() + "_5d"};
|
|
|
|
return out;
|
|
}
|
|
|
|
// setup ///////////////////////////////////////////////////////////////////////
|
|
template <typename FImpl>
|
|
void TQuark<FImpl>::setup(void)
|
|
{
|
|
Ls_ = env().getObjectLs(par().solver);
|
|
env().template registerLattice<PropagatorField>(getName());
|
|
if (Ls_ > 1)
|
|
{
|
|
env().template registerLattice<PropagatorField>(getName() + "_5d", Ls_);
|
|
}
|
|
}
|
|
|
|
// execution ///////////////////////////////////////////////////////////////////
|
|
template <typename FImpl>
|
|
void TQuark<FImpl>::execute(void)
|
|
{
|
|
LOG(Message) << "Computing quark propagator '" << getName() << "'"
|
|
<< std::endl;
|
|
|
|
FermionField source(env().getGrid(Ls_)), sol(env().getGrid(Ls_)),
|
|
tmp(env().getGrid());
|
|
std::string propName = (Ls_ == 1) ? getName() : (getName() + "_5d");
|
|
PropagatorField &prop = *env().template createLattice<PropagatorField>(propName);
|
|
PropagatorField &fullSrc = *env().template getObject<PropagatorField>(par().source);
|
|
SolverFn &solver = *env().template getObject<SolverFn>(par().solver);
|
|
if (Ls_ > 1)
|
|
{
|
|
env().template createLattice<PropagatorField>(getName());
|
|
}
|
|
|
|
LOG(Message) << "Inverting using solver '" << par().solver
|
|
<< "' on source '" << par().source << "'" << std::endl;
|
|
for (unsigned int s = 0; s < Ns; ++s)
|
|
for (unsigned int c = 0; c < Nc; ++c)
|
|
{
|
|
LOG(Message) << "Inversion for spin= " << s << ", color= " << c
|
|
<< std::endl;
|
|
// source conversion for 4D sources
|
|
if (!env().isObject5d(par().source))
|
|
{
|
|
if (Ls_ == 1)
|
|
{
|
|
PropToFerm(source, fullSrc, s, c);
|
|
}
|
|
else
|
|
{
|
|
source = zero;
|
|
PropToFerm(tmp, fullSrc, s, c);
|
|
InsertSlice(tmp, source, 0, 0);
|
|
InsertSlice(tmp, source, Ls_-1, 0);
|
|
axpby_ssp_pplus(source, 0., source, 1., source, 0, 0);
|
|
axpby_ssp_pminus(source, 0., source, 1., source, Ls_-1, Ls_-1);
|
|
}
|
|
}
|
|
// source conversion for 5D sources
|
|
else
|
|
{
|
|
if (Ls_ != env().getObjectLs(par().source))
|
|
{
|
|
HADRON_ERROR("Ls mismatch between quark action and source");
|
|
}
|
|
else
|
|
{
|
|
PropToFerm(source, fullSrc, s, c);
|
|
}
|
|
}
|
|
sol = zero;
|
|
solver(sol, source);
|
|
FermToProp(prop, sol, s, c);
|
|
// create 4D propagators from 5D one if necessary
|
|
if (Ls_ > 1)
|
|
{
|
|
PropagatorField &p4d =
|
|
*env().template getObject<PropagatorField>(getName());
|
|
|
|
axpby_ssp_pminus(sol, 0., sol, 1., sol, 0, 0);
|
|
axpby_ssp_pplus(sol, 1., sol, 1., sol, 0, Ls_-1);
|
|
ExtractSlice(tmp, sol, 0, 0);
|
|
FermToProp(p4d, tmp, s, c);
|
|
}
|
|
}
|
|
}
|
|
|
|
END_HADRONS_NAMESPACE
|
|
|
|
#endif // Hadrons_Quark_hpp_
|