mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-09 21:50:45 +01:00
Hadrons: introduction message 2
This commit is contained in:
parent
2e1c66897f
commit
049cc518f4
@ -41,6 +41,9 @@ using namespace Hadrons;
|
|||||||
* Application implementation *
|
* Application implementation *
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
// constructors ////////////////////////////////////////////////////////////////
|
// constructors ////////////////////////////////////////////////////////////////
|
||||||
|
#define MACOUT(macro) macro << " (" << #macro << ")"
|
||||||
|
#define MACOUTS(macro) HADRONS_STR(macro) << " (" << #macro << ")"
|
||||||
|
|
||||||
Application::Application(void)
|
Application::Application(void)
|
||||||
{
|
{
|
||||||
initLogger();
|
initLogger();
|
||||||
@ -57,21 +60,16 @@ Application::Application(void)
|
|||||||
LOG(Message) << "MPI partition : " << mpi << std::endl;
|
LOG(Message) << "MPI partition : " << mpi << std::endl;
|
||||||
LOG(Message) << "Local lattice : " << loc << std::endl;
|
LOG(Message) << "Local lattice : " << loc << std::endl;
|
||||||
LOG(Message) << std::endl;
|
LOG(Message) << std::endl;
|
||||||
LOG(Message) << "** Default parameters (associated C macro)" << std::endl;
|
LOG(Message) << "** Default parameters (and associated C macro)" << std::endl;
|
||||||
LOG(Message) << "ASCII output precision (DEFAULT_ASCII_PREC) : "
|
LOG(Message) << "ASCII output precision : " << MACOUT(DEFAULT_ASCII_PREC) << std::endl;
|
||||||
<< DEFAULT_ASCII_PREC << std::endl;
|
LOG(Message) << "Fermion implementation : " << MACOUTS(FIMPL) << std::endl;
|
||||||
LOG(Message) << "Fermion implementation (FIMPL) : "
|
LOG(Message) << "z-Fermion implementation: " << MACOUTS(ZFIMPL) << std::endl;
|
||||||
<< HADRONS_STR(FIMPL) << std::endl;
|
LOG(Message) << "Scalar implementation : " << MACOUTS(SIMPL) << std::endl;
|
||||||
LOG(Message) << "Fermion complex implementation (ZFIMPL) : "
|
LOG(Message) << "Gauge implementation : " << MACOUTS(GIMPL) << std::endl;
|
||||||
<< HADRONS_STR(ZFIMPL) << std::endl;
|
LOG(Message) << "Eigenvector base size : "
|
||||||
LOG(Message) << "Scalar implementation (SIMPL) : "
|
<< MACOUT(HADRONS_DEFAULT_LANCZOS_NBASIS) << std::endl;
|
||||||
<< HADRONS_STR(SIMPL) << std::endl;
|
LOG(Message) << "Schur decomposition : " << MACOUTS(HADRONS_DEFAULT_SCHUR) << std::endl;
|
||||||
LOG(Message) << "Gauge implementation (GIMPL) : "
|
LOG(Message) << std::endl;
|
||||||
<< HADRONS_STR(GIMPL) << std::endl;
|
|
||||||
LOG(Message) << "Eigenvector base size (HADRONS_DEFAULT_LANCZOS_NBASIS): "
|
|
||||||
<< HADRONS_DEFAULT_LANCZOS_NBASIS << std::endl;
|
|
||||||
LOG(Message) << "Schur decomposition (HADRONS_DEFAULT_SCHUR) : "
|
|
||||||
<< HADRONS_STR(HADRONS_DEFAULT_SCHUR) << std::endl;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Application::Application(const Application::GlobalPar &par)
|
Application::Application(const Application::GlobalPar &par)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user